OPTIONSH.H
上传用户:aakk678
上传日期:2022-07-09
资源大小:406k
文件大小:1k
源码类别:

界面编程

开发平台:

Visual C++

  1. // optionsh.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1997 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. /////////////////////////////////////////////////////////////////////////////
  13. // COptionSheet
  14. class COptionSheet : public CCSPropertySheet
  15. {
  16. // Construction
  17. public:
  18. COptionSheet(UINT nIDCaption, CWnd* pParentWnd = NULL, UINT iSelectPage = 0);
  19. // Attributes
  20. public:
  21. CUnitsPage units;
  22. CDocOptPage pageText;
  23. CDocOptPage pageRTF;
  24. CDocOptPage pageWord;
  25. CDocOptPage pageWrite;
  26. CEmbeddedOptPage pageEmbedded;
  27. // Operations
  28. public:
  29. int DoModal();
  30. void SetPageButtons(CDocOptPage& page, CDockState& ds);
  31. void SetState(CDocOptPage& page, CDockState& ds);
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(COptionSheet)
  35. //}}AFX_VIRTUAL
  36. // Implementation
  37. public:
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(COptionSheet)
  41. //}}AFX_MSG
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. /////////////////////////////////////////////////////////////////////////////