home *** CD-ROM | disk | FTP | other *** search
/ Using Visual Basic 5 (Platinum Edition) / vb5.iso / ACTIVEX / SRDVID / DATA.1 / pshotsp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-10  |  1.3 KB  |  46 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //    psHotsp.h : Interface of the CPSHotspot class
  4. //
  5. /////////////////////////////////////////////////////////////////////////////
  6. //
  7. //  (C) Copyright Black Diamond Consulting, Inc 1996. All rights reserved.
  8. //
  9. //    You have a royalty-free right to use, modify, reproduce and 
  10. //    distribute the Sample Files (and/or any modified version) in 
  11. //    any way you find useful, provided that you agree that Black 
  12. //    Diamond Consulting has no warranty obligations or liability
  13. //    for any Sample Application Files which are modified. 
  14. //
  15. //    Revision History:
  16. //
  17. /////////////////////////////////////////////////////////////////////////////
  18.  
  19. #define __PSHOTSP_H__
  20.  
  21. class CHSGeneralPage;
  22. class CSVViewerDoc;
  23. class CHotspot;
  24.  
  25. class CPSHotspot : public CPropertySheet
  26. {
  27. // Construction
  28. public:
  29.     DECLARE_DYNAMIC( CPSHotspot )
  30.     CPSHotspot( CWnd* pWndParent, CSVViewerDoc* pDoc, CHotspot* pHotspot );
  31.  
  32.     ~CPSHotspot();
  33.  
  34. private:
  35.     CSVViewerDoc*        m_pDocument;        // Our Document
  36.     CHotspot*            m_pHotspot;            // Our Hotspot
  37.     CHSGeneralPage*        m_pGeneralPage;        // General property page
  38.  
  39. protected:
  40.     //{{AFX_MSG(CPSHotspot)
  41.     afx_msg void OnApplyNow();
  42.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.