Click here to Skip to main content
15,884,176 members
Articles / Desktop Programming / MFC

WWhizInterface: Enhancements to the Visual C++ Automation Interface

Rate me:
Please Sign up or sign in to vote.
4.50/5 (5 votes)
28 Jul 2001 149.7K   2.6K   47  
A C++ interface with a number of Visual C++ automation enhancements, allowing for more robust add-in programming.
///////////////////////////////////////////////////////////////////////////////
// $Workfile: ExtraFilesDialog.cpp $
// $Archive: /WorkspaceWhiz/Src/WorkspaceWhiz/ExtraFilesDialog.cpp $
// $Date:: 1/03/01 12:13a  $ $Revision:: 22   $ $Author: Jjensen $
///////////////////////////////////////////////////////////////////////////////
// This source file is part of the Workspace Whiz! source distribution and
// is Copyright 1997-2001 by Joshua C. Jensen.  (http://workspacewhiz.com/)
//
// The code presented in this file may be freely used and modified for all
// non-commercial and commercial purposes so long as due credit is given and
// this header is left intact.
///////////////////////////////////////////////////////////////////////////////
#include "stdafx.h"
#include "afxdlgs.h"
#include "WorkspaceWhiz.h"
#include "ExtraFilesDialog.h"
#include <io.h>
#include <sys/stat.h>
#include "AboutDialog.h"
#include "PreferencesDialog.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CExtraFilesDialog dialog


CExtraFilesDialog::CExtraFilesDialog(CWnd* pParent /*=NULL*/)
	: CHtmlHelpDialog(CExtraFilesDialog::IDD, pParent)
{
	//{{AFX_DATA_INIT(CExtraFilesDialog)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void CExtraFilesDialog::DoDataExchange(CDataExchange* pDX)
{
	CHtmlHelpDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CExtraFilesDialog)
	DDX_Control(pDX, IDOK, m_butOK);
	DDX_Control(pDX, IDCANCEL, m_butCancel);
	DDX_Control(pDX, IDC_EP_REMOVE, m_butRemove);
	DDX_Control(pDX, IDC_EP_BROWSE, m_butBrowse);
	DDX_Control(pDX, IDC_EP_ADD, m_butAdd);
	DDX_Control(pDX, IDC_EP_FILENAME, m_filename);
	DDX_Control(pDX, IDC_EP_LIST, m_list);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CExtraFilesDialog, CHtmlHelpDialog)
	//{{AFX_MSG_MAP(CExtraFilesDialog)
	ON_BN_CLICKED(IDC_EP_ADD, OnEpAdd)
	ON_BN_CLICKED(IDC_EP_REMOVE, OnEpRemove)
	ON_BN_CLICKED(IDC_EP_BROWSE, OnEpBrowse)
	ON_LBN_DBLCLK(IDC_EP_LIST, OnDblclkEpList)
	ON_BN_CLICKED(IDC_COM_ABOUT, OnComAbout)
	ON_BN_CLICKED(IDC_COM_PREFERENCES, OnComPreferences)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

BEGIN_DYNAMIC_MAP(CExtraFilesDialog, cdxCDynamicDialog)
	DYNAMIC_MAP_ENTRY(IDC_EP_FILENAME,		mdResize,	mdNone)
	DYNAMIC_MAP_ENTRY(IDC_EP_LIST,			mdResize,	mdResize)
	DYNAMIC_MAP_ENTRY(IDC_EP_BROWSE,		mdRepos,	mdNone)
	DYNAMIC_MAP_ENTRY(IDC_EP_ADD,			mdRepos,	mdNone)
	DYNAMIC_MAP_ENTRY(IDC_EP_REMOVE,		mdRepos,	mdNone)

	DYNAMIC_MAP_ENTRY(IDOK,					mdRepos,	mdNone)
	DYNAMIC_MAP_ENTRY(IDCANCEL,				mdRepos,	mdNone)
	DYNAMIC_MAP_ENTRY(IDHELP,				mdRepos,	mdNone)
	DYNAMIC_MAP_ENTRY(IDC_COM_ABOUT,		mdRepos,	mdNone)
	DYNAMIC_MAP_ENTRY(IDC_COM_PREFERENCES,	mdRepos,	mdNone)
END_DYNAMIC_MAP()
	
/////////////////////////////////////////////////////////////////////////////
// CExtraFilesDialog message handlers

BOOL CExtraFilesDialog::OnInitDialog() 
{
	CHtmlHelpDialog::OnInitDialog();
	
	// Set the icon for this dialog.
	HICON hIcon = AfxGetApp()->LoadIcon(IDI_WWHIZ);
	SetIcon(hIcon, TRUE);			// Set big icon
	SetIcon(hIcon, FALSE);		// Set small icon

	// Check for the file being read-only.
	if (_access(g_wwhizInterface->GetExtraFilename(), 00) == 0  &&
		_access(g_wwhizInterface->GetExtraFilename(), 02) == -1)
	{
		int ret =
			AfxMessageBox("The ExtraFiles.WW file for storing extra projects is read-only.  In order to make"
				" changes, this file must be writable.  Do you want to make it writable?",
				MB_YESNO);
		if (ret == IDNO)
		{
			OnCancel();
			return TRUE;
		}
		else
		{
			_chmod(g_wwhizInterface->GetExtraFilename(), _S_IREAD | _S_IWRITE);
		}
	}

	// Is there an add-on file?
	g_wwhizReg->ReadExtraFiles(false);

	// Add the items from the extra files list to the list box.
	WWhizReg::ExtraFilesList extraFilesList;
	g_wwhizReg->GetExtraFiles(extraFilesList);
	POSITION pos = extraFilesList.GetHeadPosition();
	while (pos)
	{
		const WWhizReg::ExtraFilesInfo& info = extraFilesList.GetNext(pos);
		int index = m_list.AddString(info.m_name);
		m_list.SetCheck(index, info.m_active ? 1 : 0);
	}

	return TRUE;  // return TRUE unless you set the focus to a control
	              // EXCEPTION: OCX Property Pages should return FALSE
}


void CExtraFilesDialog::ResolveFilename(CString& filename)
{
	char* origEnvList = (char*)::GetEnvironmentStrings();
	char* envList = origEnvList;

	// Loop through all of them.
	while (*envList)
	{
		CString env = envList;
		CString origEnv = env;
		int equalPos = env.Find('=');
		CString envName = env.Left(equalPos);
		env = env.Mid(equalPos + 1);
		if (!env.IsEmpty())
		{
			if (env[env.GetLength() - 1] == '\\')
				env = env.Left(env.GetLength() - 1);

			// Only try a match if the environment variable is less than the
			// filename's length.
			if (env.GetLength() < filename.GetLength()  &&
				filename[env.GetLength()] == '\\')
			{
				if (_tcsnicmp((LPCTSTR)env, (LPCTSTR)filename, env.GetLength()) == 0)
				{
					CString newFilename = "$(" + envName + ")" + filename.Mid(env.GetLength());

					// Matched.
					CString msg;
					msg.Format("The environment variable [%s] matches the [%s] portion "
						"of the path in [%s].  Do you want to substitute the current "
						"filename with [%s]?", envName, env, filename, newFilename);
					int ret = AfxMessageBox(msg, MB_YESNOCANCEL);
					if (ret == IDYES)
					{
						filename = newFilename;
						break;
					}
					else if (ret == IDCANCEL)
					{
						break;
					}
				}
			}
		}

		envList += origEnv.GetLength() + 1;
	}

	::FreeEnvironmentStrings(origEnvList);
}


void CExtraFilesDialog::AddFileToList(CString& filename)
{
	ResolveFilename(filename);
	for (int i = 0; i < m_list.GetCount(); i++)
	{
		CString name;
		m_list.GetText(i, name);
		if (name.CompareNoCase(filename) == 0)
			return;
	}
	int index = m_list.AddString(filename);
	m_list.SetCheck(index, 1);
}


void CExtraFilesDialog::OnEpAdd() 
{
	CString filename;
	m_filename.GetWindowText(filename);

	if (filename.GetLength() > 0)
	{
		AddFileToList(filename);
		m_filename.SetWindowText("");
	}
}

void CExtraFilesDialog::OnEpRemove() 
{
	if (m_list.GetCurSel() == LB_ERR)
		return;
	int sel = m_list.GetCurSel();
	m_list.DeleteString(sel);
	if (m_list.SetCurSel(sel) == LB_ERR)
		m_list.SetCurSel(sel - 1);
}


void CExtraFilesDialog::OnEpBrowse() 
{
	CFileDialog fdlg(TRUE, NULL, "*.*", OFN_ALLOWMULTISELECT | OFN_HIDEREADONLY,
		"Workspaces (.dsw,.vcw)|*.dsw;*.vcw|Project Files (.dsp,.vcp,.vcproj)|*.dsp;*.vcp;*.vcproj|All Files (*.*)|*.*||", NULL);
	fdlg.m_ofn.lpstrTitle = "Select Extra Files";
	fdlg.m_ofn.nMaxFile = 10 * 1024;
	AutoBasic<char> fileBuffer(new char[fdlg.m_ofn.nMaxFile]);
	fdlg.m_ofn.lpstrFile = fileBuffer;
	fdlg.m_ofn.lpstrFile[0] = 0;
	if(fdlg.DoModal() == IDCANCEL)  
		return;

	// Parse the current directory.
	char* ptr = fdlg.m_ofn.lpstrFile;
	CString curDir = ptr;
	ptr += curDir.GetLength() + 1;

	if (*ptr == 0)
	{
		AddFileToList(curDir);
	}
	else
	{
		if (curDir[curDir.GetLength() - 1] != '\\')
			curDir += "\\";

		while (*ptr)
		{
			CString filename = ptr;
			ptr += filename.GetLength() + 1;
			AddFileToList(curDir + filename);
		}
	}
	
	m_filename.SetWindowText("");
}

void CExtraFilesDialog::OnOK() 
{
	OnEpAdd();

	// Is there an add-on file?
	WWhizReg::ExtraFilesList extraFilesList;
	extraFilesList.RemoveAll();
	for (int i = 0; i < m_list.GetCount(); i++)
	{
		WWhizReg::ExtraFilesInfo info;
		info.m_active = m_list.GetCheck(i) == 1;
		m_list.GetText(i, info.m_name);
		extraFilesList.AddTail(info);
	}
	g_wwhizReg->SetExtraFiles(extraFilesList);

	// Save the ExtraFiles.WW file.
	g_wwhizReg->WriteExtraFiles();
	
	CHtmlHelpDialog::OnOK();
}

void CExtraFilesDialog::OnDblclkEpList() 
{
	if (m_list.GetCurSel() == LB_ERR)
		return;
	CString str;
	m_list.GetText(m_list.GetCurSel(), str);
	m_filename.SetWindowText(str);
}

void CExtraFilesDialog::OnComAbout() 
{
	CAboutDialog dlg;
	dlg.DoModal();
}

void CExtraFilesDialog::OnComPreferences() 
{
	CPreferencesDialog dlg;
	if (dlg.DoModal() == IDOK)
	{
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
Joshua Jensen is a gamer at heart and as such, creates games for a living. He has the distinct pleasure of creating titles exclusively for the Xbox.

In his spare time, he maintains a Visual C++ add-in called Workspace Whiz! Find it at http://workspacewhiz.com/.

Comments and Discussions