GuiOfficeBar.h
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:2k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. //-----------------------------------------------------------------------//
  2. // This is a part of the GuiLib MFC Extention.  //
  3. // Autor  :  Francisco Campos  //
  4. // (C) 2002 Francisco Campos <www.beyondata.com> All rights reserved     //
  5. // This code is provided "as is", with absolutely no warranty expressed  //
  6. // or implied. Any use is at your own risk.  //
  7. // You must obtain the author's consent before you can include this code //
  8. // in a software library.  //
  9. // If the source code in  this file is used in any application  //
  10. // then acknowledgement must be made to the author of this program  //
  11. // fcampos@tutopia.com  //
  12. //-----------------------------------------------------------------------//
  13. #pragma once
  14. #include "guicontrolbar.h"
  15. #include "GuiDockContext.h"
  16. #include "GuiLib.h"
  17. class  CGuiDockContextOffice :public CGuiDockContext
  18. {
  19. public:
  20. CGuiDockContextOffice(CControlBar* pBar) : CGuiDockContext(pBar) {}
  21. virtual ~CGuiDockContextOffice();
  22. virtual void StartDrag(CPoint pt);
  23. protected:
  24. virtual void AdjustWindowForFloat(CRect& rect);
  25. };
  26. class GUILIBDLLEXPORT    CGuiOfficeBar :public CGuiControlBar
  27. {
  28. protected:
  29. CGuiControlBarButton  m_ArrButtons[4];
  30. int m_stateBtnBack;
  31. int m_stateBtnClose;
  32. int m_stateBtnFor;
  33. int m_stateBtnMenu;
  34. UINT m_nHits;
  35. int m_StateBtn;
  36. public:
  37. CGuiOfficeBar(void);
  38. virtual ~CGuiOfficeBar(void);
  39. virtual void DrawGripper(CDC* pDC,CRect* rc);
  40. virtual void OnBack();
  41. virtual void OnForWard();
  42. virtual void OnMenu();
  43. void ShowTitle(CString m_Caption);
  44. DECLARE_MESSAGE_MAP()
  45. afx_msg virtual int OnCreate(LPCREATESTRUCT lpCreateStruct);
  46. afx_msg void OnNcLButtonDown(UINT nHitTest, CPoint point);
  47. afx_msg void OnNcLButtonUp(UINT nHitTest, CPoint point);
  48. afx_msg void OnTimer(UINT nIDEvent);
  49. afx_msg void OnNcMouseMove(UINT nHitTest, CPoint point);
  50. afx_msg UINT OnNcHitTest(CPoint point);
  51. };