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

金融证券系统

开发平台:

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