Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.2 KiB

4 years ago
  1. /************************************************************************
  2. * *
  3. * PAGEOPTI.H *
  4. * *
  5. * Copyright (C) Microsoft Corporation 1995 *
  6. * All Rights reserved. *
  7. * *
  8. ************************************************************************/
  9. #ifndef _HPJ_DOC
  10. #include "hpjdoc.h"
  11. #endif
  12. #ifndef __CPROP_H__
  13. #include "prop.h"
  14. #include "optionpg.h"
  15. #endif
  16. class CPageOptions : public COptionsPage
  17. {
  18. public:
  19. CPageOptions(COptions* pcoption);
  20. protected:
  21. virtual void DoDataExchange(CDataExchange* pDX);
  22. virtual BOOL OnInitDialog();
  23. COptions* pcopt;
  24. // The following sections are ClassWizard maintained
  25. public:
  26. //{{AFX_DATA(CPageOptions)
  27. enum { IDD = IDD_PAGE_OPTIONS };
  28. CString m_cstrContents;
  29. CString m_cstrCopyRight;
  30. BOOL m_fNotes;
  31. CString m_cstrTitle;
  32. BOOL m_fVer3Help;
  33. CString m_cstrCitation;
  34. BOOL m_fReport;
  35. //}}AFX_DATA
  36. protected:
  37. // Generated message map functions
  38. //{{AFX_MSG(CPageOptions)
  39. // NOTE: the ClassWizard will add member functions here
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. LRESULT OnContextMenu(WPARAM wParam, LPARAM lParam);
  43. LRESULT OnHelp(WPARAM wParam, LPARAM lParam);
  44. };