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

ListView/ListBox

开发平台:

Visual C++

  1. #if !defined(AFX_HMXLISTBOX_H__2850C042_7611_11D5_9628_00B0D015B123__INCLUDED_)
  2. #define AFX_HMXLISTBOX_H__2850C042_7611_11D5_9628_00B0D015B123__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // HMXListBox.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CHMXListBox window
  10. class CHMXListBox : public CListBox
  11. {
  12. // Construction
  13. public:
  14. CHMXListBox();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CHMXListBox)
  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 ~CHMXListBox();
  42. protected:
  43. bool InitToolTip();
  44. CToolTipCtrl m_tt;
  45. bool m_bEnableEditing;
  46. CFont m_fntText;
  47. CString m_sText;
  48. COLORREF m_clrText;
  49. COLORREF m_clrBkGnd;
  50. CBrush m_brsBkGnd;
  51. // Generated message map functions
  52. protected:
  53. //{{AFX_MSG(CHMXListBox)
  54. afx_msg HBRUSH CtlColor(CDC* pDC, UINT nCtlColor);
  55. protected:
  56. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  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_HMXLISTBOX_H__2850C042_7611_11D5_9628_00B0D015B123__INCLUDED_)