GuiMiniFrame.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.  * *
  21.  ****************************************************************************/
  22. #pragma once
  23. // CGuiMiniFrame frame
  24. #include "GuiMiniFrame.h" 
  25. #include "GuiDrawLayer.h" 
  26. class GUILIBDLLEXPORT CGuiMiniFrame : public CMiniDockFrameWnd
  27. {
  28. DECLARE_DYNCREATE(CGuiMiniFrame)
  29. protected:
  30. BOOL IsGuiControlBar;
  31. CGuiControlBarButton m_btn;
  32. CRect m_rcCloseBtn;
  33. int m_stateBtn;
  34. BOOL IsMenuBar;
  35. BOOL IsToolBar;
  36. public:
  37. // Construction
  38. CGuiMiniFrame();
  39. // Operations
  40. virtual void RecalcLayout(BOOL bNotify = TRUE);
  41. virtual BOOL Create(CWnd* pParent, DWORD dwBarStyle);
  42. void DrawGripper(CDC* pDC,CRect* rc);
  43. void TypeBar();
  44. CWnd* GetChildWnd();
  45. // Implementation
  46. public:
  47. //{{AFX_MSG(CMiniFrameWnd)
  48. afx_msg void OnClose();
  49. afx_msg void OnNcLButtonDown(UINT nHitTest, CPoint point);
  50. afx_msg void OnNcRButtonDown(UINT nHitTest, CPoint point);
  51. afx_msg void OnNcLButtonDblClk(UINT nHitTest, CPoint point);
  52. afx_msg void OnNcLButtonUp(UINT nHitTest, CPoint point);
  53. afx_msg void OnLButtonUp(UINT nHitTest, CPoint point);
  54. //}}AFX_MSG
  55. afx_msg int OnMouseActivate(CWnd* pDesktopWnd, UINT nHitTest, UINT message);
  56. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  57. afx_msg void OnNcCalcSize(BOOL bCalcValidRects, NCCALCSIZE_PARAMS* lpncsp);
  58. afx_msg void OnNcPaint();
  59. afx_msg BOOL OnNcActivate(BOOL bActive);
  60. afx_msg void OnTimer(UINT nIDEvent);
  61. afx_msg void OnPaint();
  62. afx_msg UINT OnNcHitTest(CPoint point);
  63. afx_msg void OnSetFocus(CWnd* pOldWnd);
  64. afx_msg void OnNcMouseMove(UINT nHitTest, CPoint point);
  65. DECLARE_MESSAGE_MAP()
  66. };