GuiDockContext.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. #if !defined(AFX_GUIDOCKCONTEXT_H__B30C848F_0A82_46A1_BAE2_E2C73CE5C2BB__INCLUDED_)
  14. #define AFX_GUIDOCKCONTEXT_H__B30C848F_0A82_46A1_BAE2_E2C73CE5C2BB__INCLUDED_
  15. #if _MSC_VER > 1000
  16. #pragma once
  17. #endif // _MSC_VER > 1000
  18. #include "GuiLib.h"
  19. #include "AfxPriv.h"
  20. //***********************************************************
  21. class GUILIBDLLEXPORT CGuiDockContext: public CDockContext
  22. {
  23. public:
  24. // Construction
  25. CGuiDockContext(CControlBar* pBar);
  26. // Attributes
  27. virtual void StartDrag(CPoint pt);
  28. void Move(CPoint pt);       // called when mouse has moved
  29. void EndDrag();             // drop
  30. void OnKey(int nChar, BOOL bDown);
  31. void AdjustWindowForFloat(CRect& rect);
  32. // Resize Operations
  33. virtual void StartResize(int nHitTest, CPoint pt);
  34. void Stretch(CPoint pt);
  35. void EndResize();
  36. int  VerLeft(int i,int nSize,CDockBar* pDockBar,CControlBar* pBar);
  37. int  VerRight(int i,int nSize,CDockBar* pDockBar,CControlBar* pBar);
  38. // Double Click Operations
  39. virtual void ToggleDocking();
  40. // Operations
  41. void InitLoop();
  42. void CancelLoop();
  43. DWORD CanDock(CRect rect, DWORD dwDockStyle,
  44. CDockBar** ppDockBar = NULL); // called 
  45. // Implementation
  46. public:
  47. ~CGuiDockContext();
  48. BOOL Track();
  49. BOOL bFirstClic;
  50. BOOL bSecondClic;
  51. void DrawFocusRect(BOOL bRemoveRect = FALSE);
  52. // draws the correct outline
  53. void UpdateState(BOOL* pFlag, BOOL bNewValue);
  54. DWORD CanDock();
  55. CDockBar* GetDockBar(DWORD dwOverDockStyle);
  56. };
  57. #endif // !defined(AFX_GUIDOCKCONTEXT_H__B30C848F_0A82_46A1_BAE2_E2C73CE5C2BB__INCLUDED_)