DropEdit.h
上传用户:yangzi5763
上传日期:2007-01-02
资源大小:239k
文件大小:2k
源码类别:

ActiveX/DCOM/ATL

开发平台:

Visual C++

  1. /************************************
  2.   REVISION LOG ENTRY
  3.   Revision By: Mihai Filimon
  4.   Revised on 10/16/98 5:52:40 PM
  5.   Comments: DropEdit.h : header file
  6.  ************************************/
  7. #if !defined(AFX_DROPEDIT_H__F0626F88_64E1_11D2_86BF_0040055C08D9__INCLUDED_)
  8. #define AFX_DROPEDIT_H__F0626F88_64E1_11D2_86BF_0040055C08D9__INCLUDED_
  9. #if _MSC_VER >= 1000
  10. #pragma once
  11. #endif // _MSC_VER >= 1000
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CDropEdit window
  14. class CControlsWnd;
  15. class CDropEdit : public CEdit
  16. {
  17. // Construction
  18. public:
  19. CDropEdit();
  20. // Attributes
  21. public:
  22. // Operations
  23. public:
  24. // Overrides
  25. // ClassWizard generated virtual function overrides
  26. //{{AFX_VIRTUAL(CDropEdit)
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30. virtual void SetEditColor(COLORREF rgbEditColor);
  31. virtual CWnd* Create(CControlsWnd* pNotifyClass);
  32. virtual void Show(CRect rect);
  33. virtual ~CDropEdit();
  34. // Generated message map functions
  35. protected:
  36. COLORREF m_rgbEditColor;
  37. CControlsWnd* m_pNotifyClass;
  38. //{{AFX_MSG(CDropEdit)
  39. afx_msg void OnKillFocus(CWnd* pNewWnd);
  40. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  41. afx_msg HBRUSH CtlColor(CDC* pDC, UINT nCtlColor);
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. private:
  45. CBrush m_brush;
  46. };
  47. /////////////////////////////////////////////////////////////////////////////
  48. //{{AFX_INSERT_LOCATION}}
  49. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  50. #endif // !defined(AFX_DROPEDIT_H__F0626F88_64E1_11D2_86BF_0040055C08D9__INCLUDED_)