GuiMiniSplitter.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. #if !defined(AFX_GUIMINISPLITTER_H__F242B3CD_66D9_4046_912A_28A47FEE2D66__INCLUDED_)
  23. #define AFX_GUIMINISPLITTER_H__F242B3CD_66D9_4046_912A_28A47FEE2D66__INCLUDED_
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. // GuiMiniSplitter.h : header file
  28. //
  29. #include "GuiMiniTool.h"
  30. class GUILIBDLLEXPORT CGuiMiniSplitter : public CWnd
  31. {
  32. // Construction
  33. public:
  34. CGuiMiniSplitter();
  35. // Attributes
  36. public:
  37. // Operations
  38. public:
  39. // Overrides
  40. // ClassWizard generated virtual function overrides
  41. //{{AFX_VIRTUAL(CGuiMiniSplitter)
  42. public:
  43. virtual BOOL Create(CWnd* pParentWnd);
  44. //}}AFX_VIRTUAL
  45. // Implementation
  46. public:
  47. virtual ~CGuiMiniSplitter();
  48. void    SetColor(COLORREF m_clrFace,COLORREF m_clrBorder);
  49. BOOL    AddMiniToolLeft(CGuiMiniTool * m_ToolLeft);
  50. BOOL    AddMiniToolRight(CGuiMiniTool * m_ToolRight);
  51. void DrawSplitter(CRect rc,CDC* mdc);
  52. void RecalLayout();
  53. protected:
  54. int npos; //splitter position
  55. CGuiMiniTool* m_ToolLeft;
  56. CGuiMiniTool* m_ToolRight;
  57. CRect m_rcSplitter;
  58. CRect m_rcSplitterOld;
  59. COLORREF m_clrface;
  60. COLORREF m_clrborder;
  61. BOOL  bIniciaArrastre;
  62. // Generated message map functions
  63. protected:
  64. //{{AFX_MSG(CGuiMiniSplitter)
  65. afx_msg void OnSize(UINT nType, int cx, int cy);
  66. afx_msg void OnSysColorChange();
  67. afx_msg void OnPaint();
  68. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  69. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  70. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  71. afx_msg void OnTimer(UINT nIDEvent);
  72. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  73. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  74. //}}AFX_MSG
  75. DECLARE_MESSAGE_MAP()
  76. };
  77. /////////////////////////////////////////////////////////////////////////////
  78. //{{AFX_INSERT_LOCATION}}
  79. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  80. #endif // !defined(AFX_GUIMINISPLITTER_H__F242B3CD_66D9_4046_912A_28A47FEE2D66__INCLUDED_)