GuiImageLinkButton.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 "guitoolbutton.h"
  15. #include "GuiLib.h"
  16. class GUILIBDLLEXPORT    CGuiImageLinkButton :
  17. public CGuiToolButton
  18. {
  19. DECLARE_DYNAMIC(CGuiImageLinkButton)
  20. public:
  21. CGuiImageLinkButton(void);
  22. virtual ~CGuiImageLinkButton(void);
  23. //esta funcion identa la cadenade caracteres a la derecha en el caso
  24. //que no exista imagen
  25. void AjustRightText(int nIdent){m_iDent=nIdent;}
  26. protected:
  27. CFont m_cfontSelect;
  28. CFont m_cfontNormal;
  29. CRect rectletra;
  30. int     m_iDent;
  31. protected:
  32. DECLARE_MESSAGE_MAP()
  33. public:
  34. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  35. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  36. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  37. };
  38. class GUILIBDLLEXPORT    CGuiScrollButton :
  39. public CGuiToolButton
  40. {
  41. public:
  42. CGuiScrollButton(void);
  43. virtual ~CGuiScrollButton(void);
  44. protected:
  45. DECLARE_MESSAGE_MAP()
  46. BOOL m_bMouserOvernew;
  47. public:
  48. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  49. afx_msg void OnTimer(UINT nIDEvent);
  50. };