GuiImageLinkButton.h
上传用户:wlkj888
上传日期:2022-08-01
资源大小:806k
文件大小:2k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. /****************************************************************************
  2.  * *  
  3.  * GuiToolKit   *
  4.  *  (MFC extension) *  
  5.  * Created by Francisco Campos G. www.beyondata.com fcampos@beyondata.com *
  6.  *--------------------------------------------------------------------------*    
  7.  * *
  8.  * This program is free software;so you are free to use it any of your *
  9.  * applications (Freeware, Shareware, Commercial),but leave this header *
  10.  * intact. *
  11.  * *
  12.  * These files are provided "as is" without warranty of any kind. *
  13.  * *
  14.  *        GuiToolKit is forever FREE CODE !!!!! *
  15.  * *
  16.  *--------------------------------------------------------------------------*
  17.  * Created by: Francisco Campos G. *
  18.  * Bug Fixes and improvements : (Add your name) *
  19.  * -Francisco Campos *
  20.  * *
  21.  ****************************************************************************/
  22. #pragma once
  23. #include "guitoolbutton.h"
  24. class GUILIBDLLEXPORT CGuiImageLinkButton : public CGuiToolButton
  25. {
  26. DECLARE_DYNAMIC(CGuiImageLinkButton)
  27. public:
  28. CGuiImageLinkButton(void);
  29. virtual ~CGuiImageLinkButton(void);
  30. //esta funcion identa la cadenade caracteres a la derecha en el caso
  31. //que no exista imagen
  32. void AjustRightText(int nIdent){m_iDent=nIdent;}
  33. protected:
  34. CFont m_cfontSelect;
  35. CFont m_cfontNormal;
  36. CRect rectletra;
  37. int     m_iDent;
  38. protected:
  39. DECLARE_MESSAGE_MAP()
  40. public:
  41. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  42. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  43. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  44. };
  45. class GUILIBDLLEXPORT    CGuiScrollButton :
  46. public CGuiToolButton
  47. {
  48. public:
  49. CGuiScrollButton(void);
  50. virtual ~CGuiScrollButton(void);
  51. protected:
  52. DECLARE_MESSAGE_MAP()
  53. BOOL m_bMouserOvernew;
  54. public:
  55. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  56. afx_msg void OnTimer(UINT nIDEvent);
  57. };