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