Click here to Skip to main content
15,880,608 members
Articles / Desktop Programming / MFC

The Ultimate Toolbox - Updates and User Contributions

Rate me:
Please Sign up or sign in to vote.
4.79/5 (26 votes)
12 Feb 2013CPOL8 min read 254.4K   23.6K   170  
Updates and User Contributions for the Ultimate Toolbox Libraries
// =============================================================================
// 							Class Implementation : COXContextHelpPropertySheet
// =============================================================================
//
// Source file : 		OXContextHelpPropertySheet.cpp

// Version: 9.3

// This software along with its related components, documentation and files ("The Libraries")
// is � 1994-2007 The Code Project (1612916 Ontario Limited) and use of The Libraries is
// governed by a software license agreement ("Agreement").  Copies of the Agreement are
// available at The Code Project (www.codeproject.com), as part of the package you downloaded
// to obtain this file, or directly from our office.  For a copy of the license governing
// this software, you may contact us at legalaffairs@codeproject.com, or by calling 416-849-8900.

// //////////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "OXContextHelpPropertySheet.h"

#ifdef _DEBUG
#undef THIS_FILE
static char BASED_CODE THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// COXContextHelpPropertySheet

IMPLEMENT_DYNAMIC(COXContextHelpPropertySheet, CPropertySheet);

COXContextHelpPropertySheet::COXContextHelpPropertySheet(UINT nIDCaption, CWnd* pParentWnd, UINT iSelectPage /* = 0 */)
	: CPropertySheet(nIDCaption, pParentWnd, iSelectPage),
	m_bFirstTime(TRUE),
	m_bTooltipActive(TRUE)
	{
	}

COXContextHelpPropertySheet::COXContextHelpPropertySheet(LPCTSTR pszCaption, CWnd* pParentWnd, UINT iSelectPage /* = 0 */)
	: CPropertySheet(pszCaption, pParentWnd, iSelectPage),
	m_bFirstTime(TRUE),
	m_bTooltipActive(TRUE)
	{
	}

BEGIN_MESSAGE_MAP(COXContextHelpPropertySheet, CPropertySheet)
	//{{AFX_MSG_MAP(COXContextHelpPropertySheet)
	ON_WM_SHOWWINDOW()
	//}}AFX_MSG_MAP
	ON_MESSAGE(WM_HELP, OnHelp)
	ON_MESSAGE(WM_CONTEXTMENU, OnHelpContextMenu)
END_MESSAGE_MAP()


#ifdef _DEBUG
void COXContextHelpPropertySheet::AssertValid() const
	{
	CPropertySheet::AssertValid();
	}

void COXContextHelpPropertySheet::Dump(CDumpContext& dc) const
	{
	CPropertySheet::Dump(dc);
	}
#endif //_DEBUG

COXContextHelpPropertySheet::~COXContextHelpPropertySheet()
	{
	}

/////////////////////////////////////////////////////////////////////////////
// COXContextHelpPropertySheet message handlers

BOOL COXContextHelpPropertySheet::PreTranslateMessage(MSG* pMsg) 
	{
	// Is this propertysheet created ?
	ASSERT(m_hWnd != NULL);
	if (m_hWnd != NULL)
		{
		// Is this message meant for this propertysheet or for one of his child controls ?
		if (pMsg->hwnd == m_hWnd || ::IsChild(m_hWnd, pMsg->hwnd))
			{
			// Is this tooltip already created && do we really want tooltips ?
			if (m_Tooltip.m_hWnd != NULL && m_bTooltipActive)
				{
				// PSS ID Number: Q143313 for VC++ 4.0 & 4.1
				// After a modal dilaog has been popped up, MFC disables the tooltips
				// but does not activated them again, so activate explicitely every time
				m_Tooltip.Activate(TRUE);
				m_Tooltip.RelayEvent(pMsg) ;
				}
			}
		}

	return CPropertySheet::PreTranslateMessage(pMsg);
	}

// v9.3 - update 03 - 64-bit - changed these to LRESULT, WPARAM, LPARAM from LONG, UINT, LONG
LRESULT COXContextHelpPropertySheet::OnHelp(WPARAM wParam, LPARAM lParam)
	{
	GetActivePage()->SendMessage(WM_HELP, wParam, lParam);
	return 0;
	}

// v9.3 - update 03 - 64-bit - changed these to LRESULT, WPARAM, LPARAM from LONG, UINT, LONG
LRESULT COXContextHelpPropertySheet::OnHelpContextMenu(WPARAM wParam, LPARAM lParam)
	{
	GetActivePage()->SendMessage(WM_CONTEXTMENU, wParam, lParam);
	return 0;
	}

void COXContextHelpPropertySheet::AddPage(COXContextHelpPropertyPage* pPage)
	{
	CPropertySheet::AddPage((CPropertyPage*)pPage);
	}

BOOL COXContextHelpPropertySheet::SetTooltipActive(BOOL bActive /* = TRUE */)
	{
	m_bTooltipActive = bActive;

	return TRUE;
	}

BOOL COXContextHelpPropertySheet::GetTooltipActive()
	{
	return m_bTooltipActive;
	}

BOOL COXContextHelpPropertySheet::SetupToolTips()
	// --- In  : 
	// --- Out : 
	// --- Returns : Succeeded or not
	// --- Effect : Creates and initializes tooltips for this propertysheet
	{
	// Create/Setup the Tooltip
	BOOL bSuccess = m_Tooltip.Create(this);
	ASSERT(bSuccess);
	if (bSuccess)
		{
		if (m_bTooltipActive)
			m_Tooltip.Activate(TRUE);
		AdjustToolTips();
		}

	return bSuccess;
	}

BOOL COXContextHelpPropertySheet::AdjustToolTips() 
	// --- In  : 
	// --- Out : 
	// --- Returns : Succeeded or not
	// --- Effect : Adjusts the tooltips for this propertysheet
	{
	return TRUE;
	}

void COXContextHelpPropertySheet::OnShowWindow(BOOL bShow, UINT nStatus) 
	{
	if (m_bFirstTime && bShow)
		{
		// Do these initializations only once
		m_bFirstTime = FALSE;
		
		//  Because supplying an extended dialog resource to a proertysheet
		// is not yet supported by propertysheet, MFC ASSERTS.  That's why
		// we had to find some other place to fool MFC and tell him to show
		// a question mark.
		ModifyStyleEx(0, WS_EX_CONTEXTHELP);		

		// Because in a propertysheet DoDatExchange is not called automatically,
		// force it here.  We need the DDX't members in SetupTooltips()
		UpdateData(FALSE);
		SetupToolTips();
		}

	CPropertySheet::OnShowWindow(bShow, nStatus);
	}

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Canada Canada
In January 2005, David Cunningham and Chris Maunder created TheUltimateToolbox.com, a new group dedicated to the continued development, support and growth of Dundas Software’s award winning line of MFC, C++ and ActiveX control products.

Ultimate Grid for MFC, Ultimate Toolbox for MFC, and Ultimate TCP/IP have been stalwarts of C++/MFC development for a decade. Thousands of developers have used these products to speed their time to market, improve the quality of their finished products, and enhance the reliability and flexibility of their software.
This is a Organisation

476 members

Comments and Discussions