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

对话框与窗口

开发平台:

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.  * -Patrick (skydive241)
  21.  * *
  22.  ****************************************************************************/
  23. #pragma once
  24. #include "GuiDocbarExten.h"
  25. #include "GuiDocbarExtenEx.h"
  26. #include "GuiDocSpecial.h"
  27. #include "GuiControlBar.h"
  28. #include "GuiDockToolbar.h"
  29. #include "MenuBar.h"
  30. #include "CoolMenu.h"
  31. #include "GuiStatusBar.h"
  32. #include "GuiToolBarWnd.h"
  33. #include "GuiDockToolBarEx.h"
  34. #include "NewMenu.h"
  35. class GUILIBDLLEXPORT  CGuiFrameWnd : public CFrameWnd
  36. {
  37. DECLARE_DYNCREATE(CGuiFrameWnd)
  38. protected:
  39. CString sProfile;
  40. protected:
  41. CGuiDocBarExten m_dockbar;
  42. CGuiDockToolBar m_dockToolbarLeft;
  43. CGuiDockToolBar m_dockToolbarTop;
  44. CGuiDockToolBar m_dockToolbarBottom;
  45. CGuiDockToolBar m_dockToolbarRight;
  46. public:
  47. CGuiDocBarExtenEx* m_dockTop;
  48. CGuiDocBarExtenEx* m_dockLeft;
  49. CGuiDocBarExtenEx* m_dockRight;
  50. CGuiDocBarExtenEx* m_dockBottom;
  51. public:
  52. CGuiDockToolBarEx m_dockHideLeft;
  53. CGuiDockToolBarEx m_dockHideTop;
  54. CGuiDockToolBarEx m_dockHideBottom;
  55. CGuiDockToolBarEx m_dockHideRight;
  56. protected:
  57. CMenuBar m_wndMenuBar;
  58. CNewMenu m_NewMenu;
  59. CCoolMenuManager m_wndCool;
  60. public:
  61. CGuiStatusBar m_wndStatusBar;
  62. CGuiToolBarWnd    m_wndToolBar;
  63. BOOL m_MdiTabbed;
  64. public:
  65. void LoadBars();
  66. BOOL VerifyBarState(LPCTSTR lpszProfileName);
  67. void DockSpecialBars();
  68. int InitStatusBar(const UINT* lpIDArray,int nSize);
  69. int InitToolBar(UINT uIDMenu);
  70. int InitMenu(UINT uIDMenu);
  71. void ShowHideBar(CGuiControlBar* pBar);
  72. void ShowHideBar(CControlBar* pBar);
  73. void LoadPosBar(CString szBars);
  74. void SavePosBar(CString szBars);
  75. virtual BOOL PreTranslateMessage(MSG* pMsg);
  76. virtual void StyleDispl(DWORD dwDsp);
  77. DWORD m_StyleDisplay;
  78. public:
  79. CGuiFrameWnd(void);
  80. virtual ~CGuiFrameWnd(void);
  81. virtual void EnableDocking(DWORD dwDockStyle);
  82. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  83. virtual BOOL PreCreateWindow(CREATESTRUCT& cs, UINT nIconID);
  84. virtual BOOL LoadFrame(UINT nIDResource, 
  85. DWORD dwDefaultStyle = WS_OVERLAPPEDWINDOW |FWS_ADDTOTITLE, 
  86. CWnd* pParentWnd = NULL,CCreateContext* pContext = NULL); 
  87. virtual BOOL DestroyWindow();
  88. DECLARE_MESSAGE_MAP()
  89. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  90. afx_msg void OnSysColorChange( );
  91. };