Click here to Skip to main content
15,886,518 members
Articles / Web Development / HTML

SurfHelper: A popup window killer and history cleaner

Rate me:
Please Sign up or sign in to vote.
4.77/5 (13 votes)
15 Nov 2001 190.1K   3.7K   46  
A free tool to remove popup windows, clear history, control window properties of IE, and more.
// ConfigSheet.h : interface of the CConfigSheet class
//
/////////////////////////////////////////////////////////////////////////////

#ifndef __ConfigSheet_h__
#define __ConfigSheet_h__

class CConfigSheet : public CPropertySheetImpl<CConfigSheet>
{
public:
	CConfigGeneralPage	m_GeneralPage;
	CConfigFilterPage	m_FilterPage;
	CConfigClearPage	m_ClearPage;

	CString				m_sTitle;

	CConfigSheet()
	{
		m_psh.dwFlags |= PSH_NOAPPLYNOW;

		AddPage(m_GeneralPage);
		AddPage(m_FilterPage);
		AddPage(m_ClearPage);
		SetActivePage(0);

		m_sTitle.LoadString(IDS_CONFIG_SHEET_TITLE);
		SetTitle(m_sTitle);
	}

	BEGIN_MSG_MAP(CConfigSheet)
		MESSAGE_HANDLER(WM_SHOWWINDOW, OnShowWindow)
		CHAIN_MSG_MAP(CPropertySheetImpl<CConfigSheet>)
	END_MSG_MAP()

	LRESULT OnShowWindow(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
	{
		CenterWindow(GetParent());
		return 0;
	}
};


#endif //__ConfigSheet_h__

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
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions