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

界面编程

开发平台:

Visual C++

  1. // docopt.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. // CDocOptPage dialog
  14. class CDocOptPage : public CCSPropertyPage
  15. {
  16. // Construction
  17. public:
  18. CDocOptPage();
  19. CDocOptPage(UINT nIDCaption);
  20. ~CDocOptPage();
  21. // Dialog Data
  22. //{{AFX_DATA(CDocOptPage)
  23. enum { IDD = IDD_OPTIONS_WRAP };
  24. int m_nWordWrap;
  25. BOOL m_bFormatBar;
  26. BOOL m_bRulerBar;
  27. BOOL m_bStatusBar;
  28. BOOL m_bToolBar;
  29. //}}AFX_DATA
  30. // Overrides
  31. static const DWORD m_nHelpIDs[];
  32. virtual const DWORD* GetHelpIDs() {return m_nHelpIDs;}
  33. // ClassWizard generate virtual function overrides
  34. //{{AFX_VIRTUAL(CDocOptPage)
  35. protected:
  36. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37. //}}AFX_VIRTUAL
  38. // Implementation
  39. protected:
  40. // Generated message map functions
  41. //{{AFX_MSG(CDocOptPage)
  42. // NOTE: the ClassWizard will add member functions here
  43. //}}AFX_MSG
  44. DECLARE_MESSAGE_MAP()
  45. };
  46. class CEmbeddedOptPage : public CDocOptPage
  47. {
  48. // Construction
  49. public:
  50. CEmbeddedOptPage();
  51. // Overrides
  52. BOOL OnInitDialog();
  53. };