GuiLinkButton.h
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:3k
源码类别:

金融证券系统

开发平台:

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