GFXGROUPEDIT.H
上传用户:lvjun8202
上传日期:2013-04-30
资源大小:797k
文件大小:2k
源码类别:

SNMP编程

开发平台:

C/C++

  1. // Copyright (c) Iuri Apollonio 1998
  2. // Use & modify as you want & need, and leave those 4 lines.
  3. // Strongly based on article "Inplace edit control" of Mario Contestabile and "Editable subitems" of Zafir
  4. // http://www.codeguru.com
  5. #if !defined(AFX_GFXGROUPEDIT_H__CA5BB022_1277_11D2_843A_0000B43382FE__INCLUDED_)
  6. #define AFX_GFXGROUPEDIT_H__CA5BB022_1277_11D2_843A_0000B43382FE__INCLUDED_
  7. #if _MSC_VER >= 1000
  8. #pragma once
  9. #endif // _MSC_VER >= 1000
  10. // GfxGroupEdit.h : header file
  11. //
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CGfxGroupEdit window
  14. #define WM_OUTBAR_NOTIFY WM_USER + 1
  15. #define NM_OB_ITEMCLICK 1
  16. #define NM_OB_ONLABELENDEDIT 2
  17. #define NM_OB_ONGROUPENDEDIT 3
  18. #define NM_OB_DRAGITEM 4
  19. class CGfxGroupEdit : public CEdit
  20. {
  21. // Construction
  22. public:
  23. CGfxGroupEdit();
  24. // Attributes
  25. public:
  26. BOOL bEscapeKey;
  27. CString text;
  28. WPARAM msgSend;
  29. bool bNoDown;
  30. // Operations
  31. public:
  32. // Overrides
  33. // ClassWizard generated virtual function overrides
  34. //{{AFX_VIRTUAL(CGfxGroupEdit)
  35. public:
  36. virtual BOOL PreTranslateMessage(MSG* pMsg);
  37. protected:
  38. virtual void PostNcDestroy();
  39. //}}AFX_VIRTUAL
  40. // Implementation
  41. public:
  42. int iIndex;
  43. virtual ~CGfxGroupEdit();
  44. // Generated message map functions
  45. protected:
  46. //{{AFX_MSG(CGfxGroupEdit)
  47. afx_msg void OnKillFocus(CWnd* pNewWnd);
  48. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  49. afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  50. //}}AFX_MSG
  51. DECLARE_MESSAGE_MAP()
  52. };
  53. /////////////////////////////////////////////////////////////////////////////
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  56. #endif // !defined(AFX_GFXGROUPEDIT_H__CA5BB022_1277_11D2_843A_0000B43382FE__INCLUDED_)