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

对话框与窗口

开发平台:

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__65CF0C32_0558_487A_A456_44C2205DB67A__INCLUDED_)
  21. #define AFX_MAINFRM_H__65CF0C32_0558_487A_A456_44C2205DB67A__INCLUDED_
  22. #if _MSC_VER > 1000
  23. #pragma once
  24. #endif // _MSC_VER > 1000
  25. template <class T>
  26. class CToolTipRouter : public T
  27. {
  28. BOOL OnWndMsg(UINT message, WPARAM wParam, LPARAM lParam, LRESULT* pResult)
  29. {
  30. CXTPCommandBar* pCommandBar = DYNAMIC_DOWNCAST(CXTPCommandBar, GetParent());
  31. if (pCommandBar)
  32. {
  33. pCommandBar->FilterToolTipMessage(message, wParam, lParam);
  34. }
  35. if (message == XTP_TTM_WINDOWFROMPOINT)
  36. {
  37. *pResult = 1;
  38. return TRUE;
  39. }
  40. return CWnd::OnWndMsg(message, wParam, lParam, pResult);
  41. }
  42. };
  43. // class CControlStatic is used to create a custom static
  44. // control that displays the number of open child windows
  45. // in the application.
  46. class CControlStatic : public CXTPControl
  47. {
  48. DECLARE_XTP_CONTROL(CControlStatic)
  49. protected:
  50. virtual CSize GetSize(CDC* pDC);
  51. virtual void Draw(CDC* pDC);
  52. };
  53. // class CButtonOptions is used to create the
  54. // radio buttons on the Options toolbar.
  55. class CButtonOptions : public CButton
  56. {
  57. protected:
  58. void OnOptionShow();
  59. protected:
  60. DECLARE_MESSAGE_MAP()
  61. };
  62. class CMainFrame : public CXTPMDIFrameWnd
  63. {
  64. DECLARE_DYNAMIC(CMainFrame)
  65. public:
  66. CMainFrame();
  67. // Attributes
  68. public:
  69. // Operations
  70. public:
  71. // Overrides
  72. // ClassWizard generated virtual function overrides
  73. //{{AFX_VIRTUAL(CMainFrame)
  74. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  75. //}}AFX_VIRTUAL
  76. // Implementation
  77. public:
  78. virtual ~CMainFrame();
  79. #ifdef _DEBUG
  80. virtual void AssertValid() const;
  81. virtual void Dump(CDumpContext& dc) const;
  82. #endif
  83. void OnChangeFileMenu(CMenu* pPopupMenu);
  84. int FindMenuItem(CMenu* pMenu, UINT nID);
  85. protected:  // control bar embedded members
  86. CXTPStatusBar  m_wndStatusBar; // Standard status bar
  87. CToolBar       m_wndToolBar;   // Standard toolbar
  88. CMenu          m_menu;         // Standard menu
  89. CXTDateTimeCtrl m_monthCal;   // Calendar control
  90. CXTDateTimeCtrl m_date;       // Date picker control
  91. CXTDateTimeCtrl m_time;       // Time picker control
  92. CAnimateCtrl  m_wndAnimCtrl; // Animation control
  93. CToolTipRouter<CSliderCtrl>   m_wndSlider;   // Slider control
  94. CButtonOptions m_wndOptions[3]; // Array of CButtonOptions
  95. CFont m_fontIcon;
  96. // Generated message map functions
  97. protected:
  98. //{{AFX_MSG(CMainFrame)
  99. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  100. afx_msg void OnHScroll(UINT nSBCode, UINT nPos, CScrollBar* pScrollBar);
  101. afx_msg void OnClose();
  102. //}}AFX_MSG
  103. afx_msg void OnCustomize();  // This function is called each time a button on the Options toolbar is clicked
  104. afx_msg int OnCreateControl(LPCREATECONTROLSTRUCT lpCreateControl); // Called by the XTK to create the controls on the CommandBars
  105. afx_msg void OnUpdateButtonDoc(CCmdUI* pCmdUI); // Called by the framework to update the buttons on the Options toolbar
  106. DECLARE_MESSAGE_MAP()
  107. };
  108. /////////////////////////////////////////////////////////////////////////////
  109. //{{AFX_INSERT_LOCATION}}
  110. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  111. #endif // !defined(AFX_MAINFRM_H__65CF0C32_0558_487A_A456_44C2205DB67A__INCLUDED_)