MainFrm.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__C5D27100_EA55_4DC1_9F25_A3913E16E73D__INCLUDED_)
  5. #define AFX_MAINFRM_H__C5D27100_EA55_4DC1_9F25_A3913E16E73D__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CMainFrame : public CXTPFrameWnd
  10. {
  11. protected: // create from serialization only
  12. CMainFrame();
  13. DECLARE_DYNCREATE(CMainFrame)
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CMainFrame)
  21. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  22. //}}AFX_VIRTUAL
  23. // Implementation
  24. public:
  25. virtual ~CMainFrame();
  26. #ifdef _DEBUG
  27. virtual void AssertValid() const;
  28. virtual void Dump(CDumpContext& dc) const;
  29. #endif
  30. protected:  // control bar embedded members
  31. CXTPStatusBar  m_wndStatusBar;
  32. BOOL CreateRibbonBar();
  33. BOOL CreateStatusBar();
  34. // Generated message map functions
  35. protected:
  36. //{{AFX_MSG(CMainFrame)
  37. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  38. // NOTE - the ClassWizard will add and remove member functions here.
  39. //    DO NOT EDIT what you see in these blocks of generated code!
  40. //}}AFX_MSG
  41. afx_msg int OnCreateControl(LPCREATECONTROLSTRUCT lpCreateControl);
  42. afx_msg void OnEnableButton(CCmdUI* pCmdUI);
  43. afx_msg void OnCheckbox(UINT nID);
  44. afx_msg void OnRadioButton(UINT nID);
  45. afx_msg void OnUpdateCheckbox(CCmdUI* pCmdUI);
  46. afx_msg void OnUpdateRadioButton(CCmdUI* pCmdUI);
  47. afx_msg void OnToggleButton();
  48. afx_msg void OnUpdateToggleButton(CCmdUI* pCmdUI);
  49. afx_msg void OnOptionsRighttoleft();
  50. afx_msg void OnUpdateOptionsRighttoleft(CCmdUI* pCmdUI);
  51. afx_msg void OnOptionsStyle(UINT nStyle);
  52. afx_msg void OnUpdateOptionsStyle(CCmdUI* pCmdUI);
  53. UINT m_nRibbonStyle;
  54. CXTPControlGalleryItems* m_pItemsFontFace;
  55. CXTPControlGalleryItems* m_pItemsStyles;
  56. CXTPControlGalleryItems* m_pItemsTable;
  57. CXTPControlGalleryItems* m_pItemsFontTextColor;
  58. CXTPControlGalleryItems* m_pItemsUndo;
  59. void OnUpdateEditUndo(CCmdUI* pCmd);
  60. void OnEditUndo(NMHDR* pNMHDR, LRESULT* pResult);
  61. void OnSelectorText(NMHDR* pNMHDR, LRESULT* pResult);
  62. void OnUpdateSelectorText(CCmdUI* pCmdUI);
  63. BOOL m_bCheckbox[3];
  64. int m_nRadioButton;
  65. COLORREF m_clr;
  66. BOOL m_bToggleButton;
  67. DECLARE_MESSAGE_MAP()
  68. };
  69. /////////////////////////////////////////////////////////////////////////////
  70. //{{AFX_INSERT_LOCATION}}
  71. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  72. #endif // !defined(AFX_MAINFRM_H__C5D27100_EA55_4DC1_9F25_A3913E16E73D__INCLUDED_)