GuiSplitter.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. #pragma once
  14. // CGuiSplitter
  15. #include "GuiLib.h"
  16. #include "GuiDrawlayer.h"
  17. class GUILIBDLLEXPORT   CGuiSplitter : public CWnd
  18. {
  19. DECLARE_DYNAMIC(CGuiSplitter)
  20. public:
  21. enum TYPEALING {ALINGHORZ=0,ALINGVERT=1};
  22. enum STYLESEPARATOR{STYLE3D=0,STYLEFLAT=1};
  23. void SetColor(COLORREF m_clrface);
  24. void AddLeftCtrl(CWnd* pWnd,long MinSize);
  25. void AddRightCtrl(CWnd* pWnd,long MinSize);
  26. void SeTypeALing(TYPEALING typeAling);
  27. void SetPixelWidht(int nSizePix);
  28. void RecalLayout();
  29. virtual void DrawSplitter(CRect rcSeparator,CRect rcLeft,CRect rcRight,CDC* pDC);
  30. void SetStyleSeparator(STYLESEPARATOR StyleSeparator=STYLE3D,COLORREF clrLeftTop=GuiDrawLayer::GetRGBColorBTNHigh(),
  31. COLORREF clrBottomRight=GuiDrawLayer::GetRGBColorShadow());
  32. public:
  33. CGuiSplitter();
  34. virtual ~CGuiSplitter();
  35. protected:
  36. COLORREF clrBg;
  37. CWnd* pWndLeft;
  38. CWnd* pWndRight;
  39. TYPEALING TypeAling;
  40. CRect m_rcSpplitter;
  41. int m_nSizePix;
  42. CRect m_rcSpplitterOld;
  43. BOOL bIniciaArrastre;
  44. STYLESEPARATOR mStyleSeparator;
  45. COLORREF mclrLeftTop;
  46. COLORREF mclrBottomRight;
  47. CRect m_rectLeft;
  48. CRect m_rectRight;
  49. protected:
  50. DECLARE_MESSAGE_MAP()
  51. public:
  52. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  53. virtual BOOL Create(CWnd* pParentWnd);
  54. afx_msg void OnPaint();
  55. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  56. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  57. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  58. afx_msg void OnSize(UINT nType, int cx, int cy);
  59. afx_msg void OnSysColorChange();
  60. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  61. };