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

对话框与窗口

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__784BE6B5_03A9_40F9_8DB7_58DF56AD001D__INCLUDED_)
  5. #define AFX_MAINFRM_H__784BE6B5_03A9_40F9_8DB7_58DF56AD001D__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CMainFrame : public CXTPMDIFrameWnd
  10. {
  11. DECLARE_DYNAMIC(CMainFrame)
  12. public:
  13. CMainFrame();
  14. // Attributes
  15. public:
  16. CSkinPropertySheet m_dlgThemes;
  17. // Operations
  18. public:
  19. void OnSkinChanged();
  20. void RedrawFrame(CWnd* pWnd);
  21. void OnShemaChanged(int nSchema);
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CMainFrame)
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. //}}AFX_VIRTUAL
  27. // Implementation
  28. public:
  29. virtual ~CMainFrame();
  30. #ifdef _DEBUG
  31. virtual void AssertValid() const;
  32. virtual void Dump(CDumpContext& dc) const;
  33. #endif
  34. void SetTheme(int nTheme);
  35. public:  // control bar embedded members
  36. CXTPStatusBar  m_wndStatusBar;
  37. CToolBar m_wndToolBar;
  38. void ShowThemesDialog();
  39. static CString GetStylesPath();
  40. CXTPTabClientWnd m_MTIClientWnd;
  41. CXTPDockingPaneManager m_paneManager;
  42. // Generated message map functions
  43. protected:
  44. //{{AFX_MSG(CMainFrame)
  45. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  46. afx_msg void OnClose(); 
  47. afx_msg void OnViewThemeDialog();
  48. afx_msg void OnViewTheme();
  49. afx_msg void OnUpdateViewTheme(CCmdUI* pCmdUI);
  50. //}}AFX_MSG
  51. afx_msg int CMainFrame::OnCreateControl(LPCREATECONTROLSTRUCT lpCreateControl);
  52. afx_msg void OnCustomize();
  53. afx_msg void OnViewThemePopup(UINT nCommand);
  54. afx_msg LRESULT OnDockingPaneNotify(WPARAM wParam, LPARAM lParam);
  55. DECLARE_MESSAGE_MAP()
  56. void OnSetPreviewMode(BOOL bPreview, CPrintPreviewState* pState);
  57. int m_nTheme;
  58. };
  59. /////////////////////////////////////////////////////////////////////////////
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_MAINFRM_H__784BE6B5_03A9_40F9_8DB7_58DF56AD001D__INCLUDED_)