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__370FD79D_FD3D_4788_8A51_8E4A873FEA51__INCLUDED_)
  5. #define AFX_MAINFRM_H__370FD79D_FD3D_4788_8A51_8E4A873FEA51__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. class CShellTreeView;
  10. class CShellListView;
  11. #define CMainFrameBase CXTPFrameWnd
  12. class CAddressComboBox : public CXTComboBoxEx
  13. {
  14. BOOL PreTranslateMessage(MSG* pMsg);
  15. };
  16. class CMainFrame : public CMainFrameBase
  17. {
  18. protected: // create from serialization only
  19. CMainFrame();
  20. DECLARE_DYNCREATE(CMainFrame)
  21. // Attributes
  22. public:
  23. // Operations
  24. public:
  25. // Overrides
  26. // ClassWizard generated virtual function overrides
  27. //{{AFX_VIRTUAL(CMainFrame)
  28. public:
  29. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  30. protected:
  31. virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. public:
  35. virtual ~CMainFrame();
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. protected:  // control bar embedded members
  41. void SetTheme(int iTheme);
  42. CXTPStatusBar   m_wndStatusBar;
  43. CXTSplitterWndEx m_wndSplitter;
  44. CAddressComboBox    m_wndAddressCombo;
  45. CXTWindowPos     m_wndPosition;
  46. CShellTreeView*  m_pTreeView;
  47. CShellListView*  m_pListView;
  48. CXTRegistryManager m_regMgr;
  49. int            m_iTheme;
  50. // Generated message map functions
  51. protected:
  52. //{{AFX_MSG(CMainFrame)
  53. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  54. afx_msg void OnViewThemeOfficeXP();
  55. afx_msg void OnUpdateViewThemeOfficeXP(CCmdUI* pCmdUI);
  56. afx_msg void OnViews();
  57. afx_msg void OnFolders();
  58. afx_msg void OnUpdateFolders(CCmdUI* pCmdUI);
  59. //}}AFX_MSG
  60. afx_msg void OnClose();
  61. afx_msg void OnCustomize();
  62. afx_msg int OnCreateControl(LPCREATECONTROLSTRUCT lpCreateControl); // Called by the XTK to create the controls on the CommandBars
  63. afx_msg void OnViewStyle(UINT nCommandID);
  64. afx_msg void OnUpdateViewStyles(CCmdUI* pCmdUI);
  65. afx_msg void OnAddressBarEnter();
  66. afx_msg void OnSelEndOkAddressBar();
  67. DECLARE_MESSAGE_MAP()
  68. };
  69. /////////////////////////////////////////////////////////////////////////////
  70. //{{AFX_INSERT_LOCATION}}
  71. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  72. #endif // !defined(AFX_MAINFRM_H__370FD79D_FD3D_4788_8A51_8E4A873FEA51__INCLUDED_)