GuiMDIFrame.h
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:4k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. /****************************************************************************
  2.  * *  
  3.  * GuiToolKit   *
  4.  *  (MFC extension) *  
  5.  * Created by Francisco Campos G. www.beyondata.com fcampos@beyondata.com *
  6.  *--------------------------------------------------------------------------*    
  7.  * *
  8.  * This program is free software;so you are free to use it any of your *
  9.  * applications (Freeware, Shareware, Commercial),but leave this header *
  10.  * intact. *
  11.  * *
  12.  * These files are provided "as is" without warranty of any kind. *
  13.  * *
  14.  *        GuiToolKit is forever FREE CODE !!!!! *
  15.  * *
  16.  *--------------------------------------------------------------------------*
  17.  * Created by: Francisco Campos G. *
  18.  * Bug Fixes and improvements : (Add your name) *
  19.  * -Francisco Campos *
  20.  * *
  21.  ****************************************************************************/
  22. #if !defined(AFX_GUIFRAMEWND_H__B5DCA3BF_291F_4175_98E9_99A1D6E91C44__INCLUDED_)
  23. #define AFX_GUIFRAMEWND_H__B5DCA3BF_291F_4175_98E9_99A1D6E91C44__INCLUDED_
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. // CGuiMDIFrame.h : header file
  28. //
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CGuiFrameWnd frame
  31. #include "GuiDocbarExten.h"
  32. #include "GuiDocbarExtenEx.h"
  33. #include "GuiDocSpecial.h"
  34. #include "GuiControlBar.h"
  35. #include "GuiDockToolbar.h"
  36. #include "GuiMDITabbed.h"
  37. #include "MenuBar.h"
  38. #include "CoolMenu.h"
  39. #include "GuiStatusBar.h"
  40. #include "GuiToolBarWnd.h" 
  41. #include "NewMenu.h"
  42. #include "GuiDockToolBarEx.h"
  43. class GUILIBDLLEXPORT CGuiMDIFrame : public CMDIFrameWnd
  44. {
  45. DECLARE_DYNCREATE(CGuiMDIFrame)
  46. protected:
  47. CGuiMDIFrame();           // protected constructor used by dynamic creation
  48. CString sProfile;
  49. CGuiMDITabbed m_MdiTabbed;
  50. CMenuBar m_wndMenuBar;
  51. CCoolMenuManager m_wndCool;
  52. public:
  53. CGuiStatusBar m_wndStatusBar;
  54. CGuiToolBarWnd    m_wndToolBar;
  55. CNewMenu m_NewMenu;
  56. CSize m_size; 
  57. BOOL  m_InitClass;
  58. // Attributes
  59. public:
  60. void LoadBars();
  61. BOOL VerifyBarState(LPCTSTR lpszProfileName);
  62. // Operations
  63. public:
  64. virtual void EnableDocking(DWORD dwDockStyle);
  65. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  66. virtual BOOL PreCreateWindow(CREATESTRUCT& cs, UINT nIconID);
  67. virtual BOOL DestroyWindow();
  68. virtual BOOL PreTranslateMessage(MSG* pMsg);
  69. DWORD CanDock(CRect rect, DWORD dwDockStyle,
  70. CDockBar** ppDockBar = NULL); // called by CDockContext
  71. BOOL InitMDITabbed();
  72. int InitStatusBar(UINT* indicators,int nSize);
  73. int InitToolBar(UINT uIDMenu);
  74. int InitMenu(UINT uIDMenu);
  75. void DockSpecialBars();
  76. void ShowHideBar(CGuiControlBar* pBar);
  77. void ShowHideBar(CControlBar* pBar);
  78. void LoadPosBar(CString szBars);
  79. void SavePosBar(CString szBars);
  80. void OnFilePrintPreview() ;
  81. CMenuBar* GetMenuBar(){return &m_wndMenuBar;}
  82. virtual void StyleDispl(DWORD dwDsp=GUISTYLE_XP);
  83. DWORD m_StyleDisplay;
  84. protected:
  85. CGuiDocBarExten m_dockbar;
  86. CGuiDockToolBar m_dockToolbarLeft;
  87. CGuiDockToolBar m_dockToolbarTop;
  88. CGuiDockToolBar m_dockToolbarBottom;
  89. CGuiDockToolBar m_dockToolbarRight;
  90. public:
  91. CGuiDocBarExtenEx* m_dockTop;
  92. CGuiDocBarExtenEx* m_dockLeft;
  93. CGuiDocBarExtenEx* m_dockRight;
  94. CGuiDocBarExtenEx* m_dockBottom;
  95. public:
  96. CGuiDockToolBarEx m_dockHideLeft;
  97. CGuiDockToolBarEx m_dockHideTop;
  98. CGuiDockToolBarEx m_dockHideBottom;
  99. CGuiDockToolBarEx m_dockHideRight;
  100. protected:
  101. virtual ~CGuiMDIFrame();
  102. // Generated message map functions
  103. //{{AFX_MSG(CGuiMDIFrame)
  104. // NOTE - the ClassWizard will add and remove member functions here.
  105. //}}AFX_MSG
  106. DECLARE_MESSAGE_MAP()
  107. virtual void OnUpdateFrameTitle(BOOL bAddToTitle);
  108. afx_msg void OnSysColorChange( );
  109. };
  110. /////////////////////////////////////////////////////////////////////////////
  111. //{{AFX_INSERT_LOCATION}}
  112. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  113. #endif // !defined(AFX_GUIFRAMEWND_H__B5DCA3BF_291F_4175_98E9_99A1D6E91C44__INCLUDED_)