Click here to Skip to main content
15,885,909 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.8K   2.6K   47  
A C++ interface with a number of Visual C++ automation enhancements, allowing for more robust add-in programming.
///////////////////////////////////////////////////////////////////////////////
// $Workfile: PrefHeaderFlipPage.cpp $
// $Archive: /WorkspaceWhiz/Src/WorkspaceWhiz/PrefHeaderFlipPage.cpp $
// $Date:: 1/03/01 12:13a  $ $Revision:: 8    $ $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 "workspacewhiz.h"
#include "PrefHeaderFlipPage.h"

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

/////////////////////////////////////////////////////////////////////////////
// CPrefHeaderFlipPage property page

IMPLEMENT_DYNCREATE(CPrefHeaderFlipPage, CPropertyPage)

CPrefHeaderFlipPage::CPrefHeaderFlipPage() : CHtmlHelpPropPage(CPrefHeaderFlipPage::IDD)
{
	//{{AFX_DATA_INIT(CPrefHeaderFlipPage)
	//}}AFX_DATA_INIT
}

CPrefHeaderFlipPage::~CPrefHeaderFlipPage()
{
}

void CPrefHeaderFlipPage::DoDataExchange(CDataExchange* pDX)
{
	CHtmlHelpPropPage::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CPrefHeaderFlipPage)
	DDX_Control(pDX, IDC_PHF_EXTLIST, m_extList);
	DDX_Control(pDX, IDC_PHF_EXTEDIT, m_extEdit);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CPrefHeaderFlipPage, CHtmlHelpPropPage)
	//{{AFX_MSG_MAP(CPrefHeaderFlipPage)
	ON_BN_CLICKED(IDC_PHF_ADD, OnPhfAdd)
	ON_BN_CLICKED(IDC_PHF_REMOVE, OnPhfRemove)
	ON_BN_CLICKED(IDC_PHF_RESET, OnPhfReset)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CPrefHeaderFlipPage message handlers

BOOL CPrefHeaderFlipPage::OnInitDialog() 
{
	CHtmlHelpPropPage::OnInitDialog();
	
	FillInControls();
	
	return TRUE;  // return TRUE unless you set the focus to a control
	              // EXCEPTION: OCX Property Pages should return FALSE
}

void CPrefHeaderFlipPage::FillInControls()
{
	WWhizConfig& config = g_wwhizInterface->GetConfig();

	m_extList.ResetContent();

	int numExts = config.FilesExtGetCount();
	for (int i = 0; i < numExts; i++)
	{
		m_extList.AddString(config.FilesExtGet(i));
	}
}

BOOL CPrefHeaderFlipPage::OnApply() 
{
	// Remove previous extensions.
	WWhizConfig& config = g_wwhizInterface->GetConfig();
	config.FilesExtRemoveAll();

	// Add them to the config.
	int count = m_extList.GetCount();
	for (int i = 0; i < count; i++)
	{
		CString item;
		m_extList.GetText(i, item);

		config.FilesExtAdd(item);
	}

	g_config.SaveRegistry();
	
	return CHtmlHelpPropPage::OnApply();
}

void CPrefHeaderFlipPage::OnPhfAdd() 
{
	CString str;
	m_extEdit.GetWindowText(str);

	if (str.IsEmpty())
		return;

	// Search for a duplicate.
	int count = m_extList.GetCount();
	for (int i = 0; i < count; i++)
	{
		CString item;
		m_extList.GetText(i, item);

		if (item == str)
			return;
	}

	// Okay, add it.
	m_extList.AddString(str);

	SetModified(TRUE);
}

void CPrefHeaderFlipPage::OnPhfRemove() 
{
	int sel = m_extList.GetCurSel();
	if (sel == LB_ERR)
		return;

	m_extList.DeleteString(sel);

	SetModified(TRUE);
}

void CPrefHeaderFlipPage::OnPhfReset() 
{
	WWhizConfig& config = g_wwhizInterface->GetConfig();
	config.FilesExtReset();

	FillInControls();

	SetModified(TRUE);
}

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