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

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. //    ppHSGen.h : Interface of the CHSGeneralPage 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. #include "resource.h"
  20.  
  21. class CSVViewerDoc; 
  22. class CHotspot;
  23.  
  24. class CHSGeneralPage : public CPropertyPage
  25. {
  26.  
  27. private:
  28.     CSVViewerDoc*    m_pDocument;    // Our Document
  29.     CHotspot*    m_pHotspot;            // Our Hotspot
  30.  
  31. public:
  32.     CHSGeneralPage( CSVViewerDoc* pDoc, 
  33.                     CHotspot* pHotspot );
  34.  
  35. // Dialog Data
  36.     //{{AFX_DATA(CHSGeneralPage)
  37.     enum { IDD = PP_HSGENERAL };
  38.     //}}AFX_DATA
  39.  
  40.  
  41. // Overrides
  42.     // ClassWizard generate virtual function overrides
  43.     //{{AFX_VIRTUAL(CHSGeneralPage)
  44.     protected:
  45.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  46.     virtual BOOL OnInitDialog();
  47.     virtual void OnCancel();
  48.     virtual void OnOK();
  49.     //}}AFX_VIRTUAL
  50.  
  51. // Implementation
  52. protected:
  53. //    void OnColorClicked(UINT nCmdID);
  54.     // Generated message map functions
  55.     //{{AFX_MSG(CHSGeneralPage)
  56.     afx_msg void OnUpdateControls();
  57.     //}}AFX_MSG
  58.     DECLARE_MESSAGE_MAP()
  59. };
  60.