home *** CD-ROM | disk | FTP | other *** search
- // circ1ppg.cpp : Implementation of the CCirc1PropPage property page class.
- //
- // This is a part of the Microsoft Foundation Classes C++ library.
- // Copyright (C) 1992-1998 Microsoft Corporation
- // All rights reserved.
- //
- // This source code is only intended as a supplement to the
- // Microsoft Foundation Classes Reference and related
- // electronic documentation provided with the library.
- // See these sources for detailed information regarding the
- // Microsoft Foundation Classes product.
-
- #include "stdafx.h"
- #include "circ1.h"
- #include "circ1ppg.h"
-
- #ifdef _DEBUG
- #undef THIS_FILE
- static char BASED_CODE THIS_FILE[] = __FILE__;
- #endif
-
-
- IMPLEMENT_DYNCREATE(CCirc1PropPage, COlePropertyPage)
-
-
- /////////////////////////////////////////////////////////////////////////////
- // Message map
-
- BEGIN_MESSAGE_MAP(CCirc1PropPage, COlePropertyPage)
- //{{AFX_MSG_MAP(CCirc1PropPage)
- // 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(CCirc1PropPage, "CIRC1.Circ1PropPage.1",
- 0x9dbafcc9, 0x592f, 0x101b, 0x85, 0xce, 0x0, 0x60, 0x8c, 0xec, 0x29, 0x7b)
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CCirc1PropPage::CCirc1PropPageFactory::UpdateRegistry -
- // Adds or removes system registry entries for CCirc1PropPage
-
- BOOL CCirc1PropPage::CCirc1PropPageFactory::UpdateRegistry(BOOL bRegister)
- {
- if (bRegister)
- return AfxOleRegisterPropertyPageClass(AfxGetInstanceHandle(),
- m_clsid, IDS_CIRC1_PPG);
- else
- return AfxOleUnregisterClass(m_clsid, NULL);
- }
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CCirc1PropPage::CCirc1PropPage - Constructor
-
- CCirc1PropPage::CCirc1PropPage() :
- COlePropertyPage(IDD, IDS_CIRC1_PPG_CAPTION)
- {
- //{{AFX_DATA_INIT(CCirc1PropPage)
- // NOTE: ClassWizard will add member initialization here
- // DO NOT EDIT what you see in these blocks of generated code !
- //}}AFX_DATA_INIT
- }
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CCirc1PropPage::DoDataExchange - Moves data between page and properties
-
- void CCirc1PropPage::DoDataExchange(CDataExchange* pDX)
- {
- //{{AFX_DATA_MAP(CCirc1PropPage)
- // 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);
- }
-
-
- /////////////////////////////////////////////////////////////////////////////
- // CCirc1PropPage message handlers
-