InPlaceEdit.h
上传用户:yatsl7111
上传日期:2007-01-08
资源大小:1433k
文件大小:1k
源码类别:

图形图象

开发平台:

Visual C++

  1. #ifndef __INPLACEEDIT_H__
  2. #define __INPLACEEDIT_H__
  3. /////////////////////////////////////////////////////////////////////////////
  4. // CInPlaceEdit window
  5. // Zafir Anjum
  6. class CInPlaceEdit : public CEdit
  7. {
  8. // Construction
  9. public:
  10. CInPlaceEdit(int iItem, int iSubItem, CString sInitText);
  11. // Attributes
  12. public:
  13. // Operations
  14. public:
  15. // Overrides
  16. // ClassWizard generated virtual function overrides
  17. //{{AFX_VIRTUAL(CInPlaceEdit)
  18. public:
  19. virtual BOOL PreTranslateMessage(MSG* pMsg);
  20. //}}AFX_VIRTUAL
  21. // Implementation
  22. public:
  23. virtual ~CInPlaceEdit();
  24. // Generated message map functions
  25. protected:
  26. //{{AFX_MSG(CInPlaceEdit)
  27. afx_msg void OnKillFocus(CWnd* pNewWnd);
  28. afx_msg void OnNcDestroy();
  29. afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  30. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  31. //}}AFX_MSG
  32. DECLARE_MESSAGE_MAP()
  33. private:
  34. int m_iItem;
  35. int m_iSubItem;
  36. CString m_sInitText;
  37. BOOL m_bESC; // To indicate whether ESC key was pressed
  38. };
  39. /////////////////////////////////////////////////////////////////////////////
  40. #endif //__INPLACEEDIT_H__