home *** CD-ROM | disk | FTP | other *** search
- /////////////////////////////////////////////////////////////////////////////
- //
- // psHotsp.h : Interface of the CPSHotspot 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:
- //
- /////////////////////////////////////////////////////////////////////////////
-
- #define __PSHOTSP_H__
-
- class CHSGeneralPage;
- class CSVViewerDoc;
- class CHotspot;
-
- class CPSHotspot : public CPropertySheet
- {
- // Construction
- public:
- DECLARE_DYNAMIC( CPSHotspot )
- CPSHotspot( CWnd* pWndParent, CSVViewerDoc* pDoc, CHotspot* pHotspot );
-
- ~CPSHotspot();
-
- private:
- CSVViewerDoc* m_pDocument; // Our Document
- CHotspot* m_pHotspot; // Our Hotspot
- CHSGeneralPage* m_pGeneralPage; // General property page
-
- protected:
- //{{AFX_MSG(CPSHotspot)
- afx_msg void OnApplyNow();
- afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-