home *** CD-ROM | disk | FTP | other *** search
- /////////////////////////////////////////////////////////////////////////////
- //
- // ppHSGen.h : Interface of the CHSGeneralPage class
- //
- /////////////////////////////////////////////////////////////////////////////
- //
- // (C) Copyright Black Diamond Consulting, Inc 1996. All rights reserved.
- //
- // You have a royalty-free right to use, modify, reproduce and
- // distribute the Sample Files (and/or any modified version) in
- // any way you find useful, provided that you agree that Black
- // Diamond Consulting has no warranty obligations or liability
- // for any Sample Application Files which are modified.
- //
- // Revision History:
- //
- /////////////////////////////////////////////////////////////////////////////
-
- #include "resource.h"
-
- class CSVViewerDoc;
- class CHotspot;
-
- class CHSGeneralPage : public CPropertyPage
- {
-
- private:
- CSVViewerDoc* m_pDocument; // Our Document
- CHotspot* m_pHotspot; // Our Hotspot
-
- public:
- CHSGeneralPage( CSVViewerDoc* pDoc,
- CHotspot* pHotspot );
-
- // Dialog Data
- //{{AFX_DATA(CHSGeneralPage)
- enum { IDD = PP_HSGENERAL };
- //}}AFX_DATA
-
-
- // Overrides
- // ClassWizard generate virtual function overrides
- //{{AFX_VIRTUAL(CHSGeneralPage)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- virtual BOOL OnInitDialog();
- virtual void OnCancel();
- virtual void OnOK();
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
- // void OnColorClicked(UINT nCmdID);
- // Generated message map functions
- //{{AFX_MSG(CHSGeneralPage)
- afx_msg void OnUpdateControls();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-