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

对话框与窗口

开发平台:

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. #if !defined(AFX_GUILINKBUTTON_H__DAEC7876_F23A_11D4_9617_0008C7B2934C__INCLUDED_)
  23. #define AFX_GUILINKBUTTON_H__DAEC7876_F23A_11D4_9617_0008C7B2934C__INCLUDED_
  24. #if _MSC_VER > 1000
  25. #pragma once
  26. #endif // _MSC_VER > 1000
  27. /////////////////////////////////////////////////////////////////////////////
  28. // CGuiLinkButton window
  29. //***********************************************************
  30. class GUILIBDLLEXPORT CGuiLinkButton : public CButton
  31. {
  32. // Construction
  33. public:
  34. //*****************************************
  35. CGuiLinkButton();
  36. virtual ~CGuiLinkButton();
  37. //*****************************************
  38. public:
  39. virtual void DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct);
  40. virtual BOOL PreTranslateMessage(MSG* pMsg);
  41. virtual void PreSubclassWindow();
  42. public:
  43. void SetLink(LPCTSTR lpMsg);
  44. void SetToolTip(LPCTSTR lpToolTip);
  45. void SetColorNormal(COLORREF m_clnor);
  46. void SetColorSelect(COLORREF m_clselec);
  47. protected:
  48. COLORREF  m_clNormal;
  49. COLORREF  m_clover;
  50. CString  m_Link;
  51. CToolTipCtrl m_ToolTipCtrl;
  52. CFont  m_cfont;
  53. int  m_iSelected;
  54. CRect  m_rectMsg;
  55. BOOL  m_bFirstPas;
  56. HCURSOR  m_hCursor;
  57. // Generated message map functions
  58. protected:
  59. //{{AFX_MSG(CGuiLinkButton)
  60. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  61. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  62. afx_msg void OnTimer(UINT nIDEvent);
  63. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  64. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  65. afx_msg BOOL OnSetCursor(CWnd* pWnd, UINT nHitTest, UINT message);
  66. //}}AFX_MSG
  67. DECLARE_MESSAGE_MAP()
  68. };
  69. /////////////////////////////////////////////////////////////////////////////
  70. //{{AFX_INSERT_LOCATION}}
  71. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  72. #endif // !defined(AFX_GUILINKBUTTON_H__DAEC7876_F23A_11D4_9617_0008C7B2934C__INCLUDED_)