GuiTabbed.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. #include "guitabwnd.h"
  15. #include "GuiNormalButton.h"
  16. #include "GuiLib.h" 
  17. class GuiTabbedButton: public CGuiNormalButton
  18. {
  19. public:
  20. GuiTabbedButton();
  21. virtual ~GuiTabbedButton();
  22. protected:
  23. BOOL bPress;
  24. protected:
  25. DECLARE_MESSAGE_MAP()
  26. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  27. public:
  28. afx_msg void OnTimer(UINT nIDEvent);
  29. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  30. };
  31. class GUILIBDLLEXPORT CGuiTabbed : public CGuiTabWnd
  32. {
  33. protected:
  34. CGuiNormalButton m_toolBtn[3];
  35. CImageList   m_img;
  36. CSize        m_sizeBtn;
  37. int  m_nDif;
  38. public:
  39. CGuiTabbed(void);
  40. virtual ~CGuiTabbed(void);
  41. public:
  42. void virtual Drawtabs(CDC* dc);
  43. CSize   GetSizeButton();
  44. void  OnScrollLeft();
  45. void  OnScrollRight();
  46. void  virtual OnScrollClose();
  47. public:
  48. DECLARE_MESSAGE_MAP()
  49. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  50. };