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

ListView/ListBox

开发平台:

Visual C++

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