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

对话框与窗口

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. // This file is a part of the XTREME TOOLKIT PRO MFC class library.
  4. // (c)1998-2008 Codejock Software, All Rights Reserved.
  5. //
  6. // THIS SOURCE FILE IS THE PROPERTY OF CODEJOCK SOFTWARE AND IS NOT TO BE
  7. // RE-DISTRIBUTED BY ANY MEANS WHATSOEVER WITHOUT THE EXPRESSED WRITTEN
  8. // CONSENT OF CODEJOCK SOFTWARE.
  9. //
  10. // THIS SOURCE CODE CAN ONLY BE USED UNDER THE TERMS AND CONDITIONS OUTLINED
  11. // IN THE XTREME TOOLKIT PRO LICENSE AGREEMENT. CODEJOCK SOFTWARE GRANTS TO
  12. // YOU (ONE SOFTWARE DEVELOPER) THE LIMITED RIGHT TO USE THIS SOFTWARE ON A
  13. // SINGLE COMPUTER.
  14. //
  15. // CONTACT INFORMATION:
  16. // support@codejock.com
  17. // http://www.codejock.com
  18. //
  19. /////////////////////////////////////////////////////////////////////////////
  20. #if !defined(AFX_MAINFRM_H__6EF5FD88_874F_4508_B332_F53B60A56122__INCLUDED_)
  21. #define AFX_MAINFRM_H__6EF5FD88_874F_4508_B332_F53B60A56122__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. #include "OptionsDialogBar.h"
  26. #ifdef _XTP_INCLUDE_RIBBON
  27. #define CMainFrameBase CXTPFrameWnd, CXTPOffice2007FrameHook
  28. #else
  29. #define CMainFrameBase CXTPFrameWnd
  30. #endif
  31. class CDatePickerDialogBar : public CDialogBar
  32. {
  33. public:
  34. CDatePickerDialogBar();   // standard constructor
  35. ~CDatePickerDialogBar(){};
  36. CXTPDatePickerControl m_wndDatePicker;
  37. protected:
  38. afx_msg void OnInitDialog();
  39. afx_msg void OnSize(UINT nType, int cx, int cy);
  40. DECLARE_MESSAGE_MAP()
  41. };
  42. class CMainFrame : public CMainFrameBase
  43. {
  44. protected: // create from serialization only
  45. CMainFrame();
  46. DECLARE_DYNCREATE(CMainFrame)
  47. // Attributes
  48. public:
  49. CDatePickerDialogBar m_dlgDatePicker;
  50. COptionsDialogBar m_dlgOptions;
  51. // Operations
  52. public:
  53. // Overrides
  54. // ClassWizard generated virtual function overrides
  55. //{{AFX_VIRTUAL(CMainFrame)
  56. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  57. //}}AFX_VIRTUAL
  58. // Implementation
  59. public:
  60. virtual ~CMainFrame();
  61. #ifdef _DEBUG
  62. virtual void AssertValid() const;
  63. virtual void Dump(CDumpContext& dc) const;
  64. #endif
  65. //protected:  // control bar embedded members
  66. CXTPStatusBar  m_wndStatusBar;
  67. CToolBar    m_wndToolBar;
  68. // Generated message map functions
  69. protected:
  70. CString _GetTheme2007Style_file(int nTheme2007Style);
  71. //{{AFX_MSG(CMainFrame)
  72. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  73. afx_msg int OnCreateControl(LPCREATECONTROLSTRUCT lpCreateControl);
  74. afx_msg void OnOfficeThemeChanged(NMHDR* pNMHDR, LRESULT* pResult);
  75. //}}AFX_MSG
  76. void SetOfficeTheme(int nTheme);
  77. int m_nOfficeTheme;
  78. DECLARE_MESSAGE_MAP()
  79. };
  80. /////////////////////////////////////////////////////////////////////////////
  81. //{{AFX_INSERT_LOCATION}}
  82. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  83. #endif // !defined(AFX_MAINFRM_H__6EF5FD88_874F_4508_B332_F53B60A56122__INCLUDED_)