MainFrm.h
上传用户:sesekoo
上传日期:2020-07-18
资源大小:21543k
文件大小:4k
源码类别:

界面编程

开发平台:

Visual C++

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAINFRM_H__8AD8EDA0_FE43_4657_B159_597A63DD8A98__INCLUDED_)
  5. #define AFX_MAINFRM_H__8AD8EDA0_FE43_4657_B159_597A63DD8A98__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "ChildView.h"
  10. //class CMyControlBar : public CExtControlBar
  11. //{
  12. //protected:
  13. // virtual LRESULT WindowProc( UINT message, WPARAM wParam, LPARAM lParam ) 
  14. // {
  15. // switch( message )
  16. // {
  17. // case WM_MOUSEMOVE:
  18. // case WM_NCMOUSEMOVE:
  19. // if( IsBarWithGripper() )
  20. // {
  21. // if( ! OnQueryBarHoverProcessingEnabled() )
  22. // return 0;
  23. // CExtPopupMenuTipWnd * pATTW = OnAdvancedPopupMenuTipWndGet();
  24. // if( pATTW == NULL )
  25. // return 0;
  26. // CPoint ptScreen;
  27. // if( ! ::GetCursorPos(&ptScreen) )
  28. // return 0;
  29. // CExtBarNcAreaButton * pBtn = NULL;
  30. // NcButtons_HitTest( ptScreen, &pBtn );
  31. // if( pBtn != NULL )
  32. // break;
  33. // CRect rcArea = _RectGripGet();
  34. // rcArea.DeflateRect( 2, 0 );
  35. // NcButtons_CalcGripperTextLocation( rcArea );
  36. // if( rcArea.left >= rcArea.right )
  37. // return 0;
  38. // CWindowDC dcMeasure( this );
  39. // CExtSafeString sCaption;
  40. // OnGetBarCaptionText( __EBCT_SINGLE_CAPTION_DOCKED, sCaption );
  41. // INT nCaptionTextWidthPX = CExtPaintManager::stat_CalcTextDimension( dcMeasure, PmBridge_GetPM()->m_FontCaption, sCaption ).Width();
  42. // INT nAreaWidthPX = rcArea.Width();
  43. // if( nAreaWidthPX >= nCaptionTextWidthPX )
  44. // return 0;
  45. // CRect rcDefOffsetWnd;
  46. // GetWindowRect( &rcDefOffsetWnd );
  47. // rcArea.OffsetRect( rcDefOffsetWnd.TopLeft() );
  48. // OnAdvancedPopupMenuTipWndDisplay( *pATTW, rcArea, LPCTSTR( sCaption ) );
  49. // return 0;
  50. // }
  51. // break;
  52. // }
  53. // LRESULT lResult = CExtControlBar::WindowProc( message, wParam, lParam );
  54. // return lResult;
  55. // }
  56. //};
  57. class CMainFrame : public CExtNCW < CFrameWnd >
  58. {
  59. public:
  60. CMainFrame();
  61. protected: 
  62. DECLARE_DYNAMIC(CMainFrame)
  63. // Attributes
  64. public:
  65. private:
  66. // window placement persistence
  67. WINDOWPLACEMENT m_dataFrameWP;
  68. // Operations
  69. public:
  70. // Overrides
  71. // ClassWizard generated virtual function overrides
  72. //{{AFX_VIRTUAL(CMainFrame)
  73. public:
  74. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  75. virtual BOOL OnCmdMsg(UINT nID, int nCode, void* pExtra, AFX_CMDHANDLERINFO* pHandlerInfo);
  76. virtual BOOL PreTranslateMessage(MSG* pMsg);
  77. virtual BOOL DestroyWindow();
  78. virtual void ActivateFrame(int nCmdShow = -1);
  79. //}}AFX_VIRTUAL
  80. // Implementation
  81. public:
  82. virtual ~CMainFrame();
  83. virtual void RecalcLayout(BOOL bNotify = TRUE);
  84. #ifdef _DEBUG
  85. virtual void AssertValid() const;
  86. virtual void Dump(CDumpContext& dc) const;
  87. #endif
  88. protected:  // control bar embedded members
  89. CExtStatusControlBar  m_wndStatusBar;
  90. CExtMenuControlBar    m_wndMenuBar;
  91. CExtToolControlBar    m_wndToolBar;
  92. CExtThemeSwitcherToolControlBar m_wndToolBarUiLook;
  93. CExtControlBar        m_wndResizableBar0;
  94. CExtControlBar        m_wndResizableBar1;
  95. CExtControlBar        m_wndResizableBar2;
  96. CExtControlBar        m_wndResizableBar3;
  97. CExtControlBar        m_wndResizableBar4;
  98. CChildView            m_wndView;
  99. CExtNCSB < CExtEdit > m_wndInBarEdit;
  100. CExtNCSB < CExtWFF < CListBox > > m_wndInBarListBox;
  101. CExtWRB < CExtColorCtrl > m_wndInBarColorPicker;
  102. CExtWRB < CExtResizableDialog > m_wndInBarDlg;
  103. // Generated message map functions
  104. protected:
  105. //{{AFX_MSG(CMainFrame)
  106. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  107. afx_msg void OnSetFocus(CWnd *pOldWnd);
  108. //}}AFX_MSG
  109. afx_msg void OnUpdateControlBarMenu(CCmdUI* pCmdUI);
  110. afx_msg BOOL OnBarCheck(UINT nID);
  111. DECLARE_MESSAGE_MAP()
  112. };
  113. /////////////////////////////////////////////////////////////////////////////
  114. //{{AFX_INSERT_LOCATION}}
  115. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  116. #endif // !defined(AFX_MAINFRM_H__8AD8EDA0_FE43_4657_B159_597A63DD8A98__INCLUDED_)