HMXStatic.h
上传用户:yinguanfa
上传日期:2022-02-19
资源大小:400k
文件大小:2k
源码类别:

ListView/ListBox

开发平台:

Visual C++

  1. #if !defined(AFX_HMXSTATIC_H__2850C041_7611_11D5_9628_00B0D015B123__INCLUDED_)
  2. #define AFX_HMXSTATIC_H__2850C041_7611_11D5_9628_00B0D015B123__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // HMXStatic.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CHMXStatic window
  10. class CHMXStatic : public CStatic
  11. {
  12. // Construction
  13. public:
  14. CHMXStatic();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CHMXStatic)
  22. virtual BOOL PreTranslateMessage(MSG* pMsg);
  23. //}}AFX_VIRTUAL
  24. // Implementation
  25. public:
  26. bool SetToolTipText(const CString& sText, bool bActivate = true);
  27. bool ActivateToolTip(bool bEnable = true);
  28. bool GetTransparent();
  29. bool SetTransparent( bool bTransparent = true);
  30. bool SetFontRotation( int nAngle );
  31. bool SetFontBold(bool bBold = true);
  32. bool SetFontItalic( bool bItalic = true);
  33. bool SetFontHeight( int nHeight );
  34. bool SetFontFaceName( const CString& sFaceName );
  35. bool GetTextFont( LOGFONT* plgfnt);
  36. bool SetTextFont( LONG nHeight, bool bBold, bool bItalic, const CString& sFaceName );
  37. bool SetTextFont( const LOGFONT& lgfnt );
  38. bool GetTextClr(COLORREF &clr);
  39. bool SetTextClr( COLORREF clr );
  40. bool GetBkClr(COLORREF &clr);
  41. bool SetBkClr( COLORREF clr );
  42. virtual ~CHMXStatic();
  43. protected:
  44. bool InitToolTip();
  45. CToolTipCtrl m_tt;
  46. CFont m_fntText;
  47. COLORREF m_clrTextClr;
  48. COLORREF m_clrBkClr;
  49. CBrush m_brsBkGnd;
  50. CBrush m_brsHollow;
  51. bool m_bTransparent;
  52. // Generated message map functions
  53. protected:
  54. //{{AFX_MSG(CHMXStatic)
  55. afx_msg HBRUSH CtlColor(CDC* pDC, UINT nCtlColor);
  56. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  57. //}}AFX_MSG
  58. DECLARE_MESSAGE_MAP()
  59. };
  60. /////////////////////////////////////////////////////////////////////////////
  61. //{{AFX_INSERT_LOCATION}}
  62. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  63. #endif // !defined(AFX_HMXSTATIC_H__2850C041_7611_11D5_9628_00B0D015B123__INCLUDED_)