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

ListView/ListBox

开发平台:

Visual C++

  1. #if !defined(AFX_HMXCOMBOBOX_H__4B614252_74B7_11D5_BD28_0060520365FB__INCLUDED_)
  2. #define AFX_HMXCOMBOBOX_H__4B614252_74B7_11D5_BD28_0060520365FB__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. // HMXCombobox.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CHMXCombobox window
  10. class CHMXComboBox : public CComboBox
  11. {
  12. // Construction
  13. public:
  14. CHMXComboBox();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. protected:
  20. // Overrides
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CHMXComboBox)
  23. virtual BOOL PreTranslateMessage(MSG* pMsg);
  24. //}}AFX_VIRTUAL
  25. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  26. // Implementation
  27. public:
  28. bool SetToolTipText(const CString& sText, bool bActivate = true);
  29. bool ActivateToolTip(bool bEnable = true);
  30. bool SetFontBold( bool bBold = true);
  31. bool SetFontItalic( bool bItalic = true);
  32. bool SetFontHeight( int nHeight );
  33. bool SetFontFaceName( const CString& sFaceName );
  34. bool EnableEditing(bool bEnableEditing = true);
  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 ~CHMXComboBox();
  43. protected:
  44. bool InitToolTip();
  45. CToolTipCtrl m_tt;
  46. bool m_bEnableEditing;
  47. CFont m_fntText;
  48. COLORREF m_clrTextClr;
  49. COLORREF m_clrBkClr;
  50. CBrush m_brsBkGnd;
  51. // Generated message map functions
  52. protected:
  53. //{{AFX_MSG(CHMXComboBox)
  54. afx_msg HBRUSH CtlColor(CDC* pDC, UINT nCtlColor);
  55. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  56. //}}AFX_MSG
  57. DECLARE_MESSAGE_MAP()
  58. };
  59. /////////////////////////////////////////////////////////////////////////////
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_HMXCOMBOBOX_H__4B614252_74B7_11D5_BD28_0060520365FB__INCLUDED_)