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

ListView/ListBox

开发平台:

Visual C++

  1. #if !defined(AFX_HMXEDIT_H__F5CF2722_FC89_11D4_BD28_0060520365FB__INCLUDED_)
  2. #define AFX_HMXEDIT_H__F5CF2722_FC89_11D4_BD28_0060520365FB__INCLUDED_
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif // _MSC_VER >= 1000
  6. #include <ctype.h> //isalpha, isalnum and so on...
  7. #include <locale.h> // localeconv
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CHMXEdit window
  10. class CHMXEdit : public CEdit
  11. {
  12. // Construction
  13. public:
  14. CHMXEdit();
  15. // Attributes
  16. public:
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CHMXEdit)
  22. protected:
  23. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  24. virtual BOOL PreTranslateMessage(MSG* pMsg);
  25. //}}AFX_VIRTUAL
  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 GetTextFont( LOGFONT* plgfnt);
  35. bool SetTextFont( LONG nHeight, bool bBold, bool bItalic, const CString& sFaceName );
  36. bool SetTextFont( const LOGFONT& lgfnt );
  37. bool EnableEditing(bool bEditing = true);
  38. bool GetTextClrFocus(COLORREF &clr);
  39. bool SetTextClrFocus( COLORREF clr );
  40. bool GetBkClrFocus(COLORREF &clr);
  41. bool SetBkClrFocus( COLORREF clr );
  42. bool GetTextClr(COLORREF &clr);
  43. bool SetTextClr( COLORREF clr );
  44. bool GetBkClr(COLORREF &clr);
  45. bool SetBkClr( COLORREF clr );
  46. virtual ~CHMXEdit();
  47. // Generated message map functions
  48. protected:
  49. bool InitToolTip();
  50. CToolTipCtrl m_tt;
  51. bool m_bHasFocus;
  52. CFont m_fntText;
  53. bool m_bEnableEditing;
  54. COLORREF m_clrTextFocus;
  55. COLORREF m_clrBkGndFocus;
  56. COLORREF m_clrText;
  57. COLORREF m_clrBkGnd;
  58. CBrush m_brsBkGnd;
  59. CBrush m_brsBkGndFocus;
  60. //{{AFX_MSG(CHMXEdit)
  61. afx_msg HBRUSH CtlColor(CDC* pDC, UINT nCtlColor);
  62. afx_msg void OnKillFocus();
  63. afx_msg void OnSetFocus();
  64. //}}AFX_MSG
  65. DECLARE_MESSAGE_MAP()
  66. };
  67. /////////////////////////////////////////////////////////////////////////////
  68. //{{AFX_INSERT_LOCATION}}
  69. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  70. #endif // !defined(AFX_HMXEDIT_H__F5CF2722_FC89_11D4_BD28_0060520365FB__INCLUDED_)