EditCell.h
上传用户:dengkfang
上传日期:2008-12-30
资源大小:5233k
文件大小:1k
源码类别:

CA认证

开发平台:

Visual C++

  1. #if !defined(AFX_EDITCELL_H__2EB671B5_0711_11D3_90AB_00E029355177__INCLUDED_)
  2. #define AFX_EDITCELL_H__2EB671B5_0711_11D3_90AB_00E029355177__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // EditCell.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // gxEditCell window
  10. class gxEditCell : public CEdit
  11. {
  12. public:
  13. gxEditCell (gxListCtrl* pCtrl, int iItem, int iSubItem, CString sInitText);
  14.     virtual ~gxEditCell();
  15.     void    SetListText();
  16.     //{{AFX_VIRTUAL(gxEditCell)
  17. public:
  18. virtual BOOL PreTranslateMessage(MSG* pMsg);
  19. //}}AFX_VIRTUAL
  20. protected:
  21.     gxListCtrl* pListCtrl;
  22.     int Item;
  23.     int SubItem;
  24.     CString InitText;
  25.     BOOL bEscape;
  26.     
  27.     //{{AFX_MSG(gxEditCell)
  28.     afx_msg void OnKillFocus(CWnd* pNewWnd);
  29.     afx_msg void OnNcDestroy();
  30.     afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  31.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  32. afx_msg UINT OnGetDlgCode();
  33. afx_msg void OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);
  34. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  35. //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38. /////////////////////////////////////////////////////////////////////////////
  39. //{{AFX_INSERT_LOCATION}}
  40. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  41. #endif // !defined(AFX_EDITCELL_H__2EB671B5_0711_11D3_90AB_00E029355177__INCLUDED_)