GuiToolButton.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. // CGuiToolButton
  15. #include "GuiLib.h"
  16. class GUILIBDLLEXPORT   CGuiToolButton : public CButton
  17. {
  18. DECLARE_DYNAMIC(CGuiToolButton)
  19. public:
  20. CGuiToolButton();
  21. virtual ~CGuiToolButton();
  22. public:
  23. void SetToolTip(LPCTSTR szToolTip);
  24. void SetCaption(CString szCaption);
  25. void SethIcon(HICON hIcon);
  26. void SetColor(COLORREF clColor);
  27. void RecalSize();
  28. void ShowDark(BOOL bShow);
  29. CSize GetSizeButton();
  30.     void ShowMenu();
  31. void SetScrollButton(BOOL bScroll=TRUE);
  32. void SetFontColor(COLORREF clrFont);
  33. protected:
  34. CToolTipCtrl m_toolTip;
  35. HICON  m_Icon;
  36. CSize  m_SizeImage;
  37. CSize  m_SizeText;
  38. CString  m_szText;
  39. COLORREF  m_clColor;
  40. BOOL  m_bMouserOver;
  41. BOOL  m_ReposWindow;
  42. CSize  m_szButton;
  43. BOOL  m_bShowDark;
  44. BOOL  m_ScrollButton;
  45. COLORREF  m_clrFont;
  46. public:
  47. HMENU  m_hMenu;
  48. protected:
  49. DECLARE_MESSAGE_MAP()
  50. public:
  51. virtual void DrawItem(LPDRAWITEMSTRUCT /*lpDrawItemStruct*/);
  52. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  53. afx_msg void OnLButtonUp(UINT nFlags, CPoint point);
  54. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  55. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  56. afx_msg void OnTimer(UINT nIDEvent);
  57. virtual BOOL PreTranslateMessage(MSG* pMsg);
  58. virtual void PreSubclassWindow();
  59. afx_msg void OnSysColorChange( );
  60. };