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

对话框与窗口

开发平台:

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. #pragma once
  23. #include "guicontrolbar.h"
  24. #include "GuiDockContext.h"
  25. class  CGuiDockContextOffice :public CGuiDockContext
  26. {
  27. public:
  28. CGuiDockContextOffice(CControlBar* pBar) : CGuiDockContext(pBar) {}
  29. virtual ~CGuiDockContextOffice();
  30. virtual void StartDrag(CPoint pt);
  31. protected:
  32. virtual void AdjustWindowForFloat(CRect& rect);
  33. };
  34. class GUILIBDLLEXPORT    CGuiOfficeBar :public CGuiControlBar
  35. {
  36. protected:
  37. CGuiControlBarButton  m_ArrButtons[4];
  38. int m_stateBtnBack;
  39. int m_stateBtnClose;
  40. int m_stateBtnFor;
  41. int m_stateBtnMenu;
  42. UINT m_nHits;
  43. int m_StateBtn;
  44. public:
  45. CGuiOfficeBar(void);
  46. virtual ~CGuiOfficeBar(void);
  47. virtual void DrawGripper(CDC* pDC,CRect* rc);
  48. virtual void OnBack();
  49. virtual void OnForWard();
  50. virtual void OnMenu();
  51. void ShowTitle(CString m_Caption);
  52. virtual CSize CalcDynamicLayout(int nLength, DWORD nMode);
  53. DECLARE_MESSAGE_MAP()
  54. afx_msg virtual int OnCreate(LPCREATESTRUCT lpCreateStruct);
  55. afx_msg void OnNcLButtonDown(UINT nHitTest, CPoint point);
  56. afx_msg void OnNcLButtonUp(UINT nHitTest, CPoint point);
  57. afx_msg void OnTimer(UINT nIDEvent);
  58. afx_msg void OnNcMouseMove(UINT nHitTest, CPoint point);
  59. afx_msg UINT OnNcHitTest(CPoint point);
  60. afx_msg void OnNcCalcSize(BOOL, NCCALCSIZE_PARAMS*);
  61. };