HyperlinkStatic.h
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:2k
源码类别:

模拟服务器

开发平台:

C/C++

  1. #if !defined(AFX_HYPERLINKSTATIC_H__32A71426_1315_407C_9D90_A484C5589D80__INCLUDED_)
  2. #define AFX_HYPERLINKSTATIC_H__32A71426_1315_407C_9D90_A484C5589D80__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // HyperlinkStatic.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CHyperlinkStatic window
  10. class CHyperlinkStatic : public CStatic
  11. {
  12. // Construction
  13. public:
  14. CHyperlinkStatic();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CHyperlinkStatic)
  22. protected:
  23. virtual void PreSubclassWindow();
  24. //}}AFX_VIRTUAL
  25. // Implementation
  26. public:
  27. virtual ~CHyperlinkStatic();
  28. // Generated message map functions
  29. protected:
  30. //{{AFX_MSG(CHyperlinkStatic)
  31. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  32. afx_msg void OnPaint();
  33. afx_msg void OnDestroy();
  34. afx_msg void OnMouseMove(UINT nFlags, CPoint point);
  35. //}}AFX_MSG
  36. afx_msg LRESULT OnMouseLeave(WPARAM wParam, LPARAM lParam);
  37. DECLARE_MESSAGE_MAP()
  38. public:
  39. void SetHyperlink(CString strHyperlink);
  40. void SetCaption(CString strCaption);
  41. void SetFontColor(COLORREF aColor){m_FontColor = aColor;};
  42. private:
  43. COLORREF m_FontColor;
  44. CString _strCaption, _strHyperlink;
  45. CFont _fontCaption;
  46. CSize _sizeCaption;
  47. bool _bCreateFont, _bMouseInControl, _bGetCaptionSize;
  48. HCURSOR _hHandCursor, _hArrowCursor;
  49. void CreateFont();
  50. void GetCaptionSize();
  51. bool InCaptionRange(CPoint &point);
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_HYPERLINKSTATIC_H__32A71426_1315_407C_9D90_A484C5589D80__INCLUDED_)