Click to return to the Component Development home page    
Web Workshop  |  Component Development

StopLite--StopLitePpg.CPP


Index for Finished Code

// StopLitePpg.cpp : Implementation of the CStopLitePropPage property page class.

#include "stdafx.h"
#include "StopLite.h"
#include "StopLitePpg.h"

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


IMPLEMENT_DYNCREATE(CStopLitePropPage, COlePropertyPage)


/////////////////////////////////////////////////////////////////////////////
// Message map

BEGIN_MESSAGE_MAP(CStopLitePropPage, COlePropertyPage)
//{{AFX_MSG_MAP(CStopLitePropPage)
// NOTE - ClassWizard will add and remove message map entries
//    DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_MSG_MAP
END_MESSAGE_MAP()


/////////////////////////////////////////////////////////////////////////////
// Initialize class factory and guid

IMPLEMENT_OLECREATE_EX(CStopLitePropPage, "STOPLITE.StopLitePropPage.1",
0x20048bb4, 0xdb68, 0x11cf, 0x9c, 0xaf, 0, 0xaa, 0, 0x6c, 0xb4, 0x25)


/////////////////////////////////////////////////////////////////////////////
// CStopLitePropPage::CStopLitePropPageFactory::UpdateRegistry -
// Adds or removes system registry entries for CStopLitePropPage

BOOL CStopLitePropPage::CStopLitePropPageFactory::UpdateRegistry(BOOL bRegister)
{
if (bRegister)
return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
m_clsid, IDS_STOPLITE_PPG);
else
return AfxOleUnregisterClass(m_clsid, NULL);
}


/////////////////////////////////////////////////////////////////////////////
// CStopLitePropPage::CStopLitePropPage - Constructor

CStopLitePropPage::CStopLitePropPage() :
COlePropertyPage(IDD, IDS_STOPLITE_PPG_CAPTION)
{
//{{AFX_DATA_INIT(CStopLitePropPage)
m_color = 0;
// NOTE: ClassWizard will add member initialization here
//    DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_DATA_INIT
}


/////////////////////////////////////////////////////////////////////////////
// CStopLitePropPage::DoDataExchange - Moves data between page and properties

void CStopLitePropPage::DoDataExchange(CDataExchange* pDX)
{
//{{AFX_DATA_MAP(CStopLitePropPage)
DDP_Radio(pDX, IDC_OFF, m_color, _T("Color") );
DDX_Radio(pDX, IDC_OFF, m_color);
// NOTE: ClassWizard will add DDP, DDX, and DDV calls here
//    DO NOT EDIT what you see in these blocks of generated code !
//}}AFX_DATA_MAP
DDP_PostProcessing(pDX);
}


/////////////////////////////////////////////////////////////////////////////
// CStopLitePropPage message handlers



Back to topBack to top

Did you find this material useful? Gripes? Compliments? Suggestions for other articles? Write us!

© 1999 Microsoft Corporation. All rights reserved. Terms of use.