PointInfo.h
上传用户:z_mail1980
上传日期:2007-06-01
资源大小:647k
文件大小:1k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. #if !defined(AFX_POINTINFO_H__0C98B4A4_F9F3_467C_893F_4370205A1CDE__INCLUDED_)
  2. #define AFX_POINTINFO_H__0C98B4A4_F9F3_467C_893F_4370205A1CDE__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // PointInfo.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CPointInfo dialog
  10. #define WM_ADD_POINT  (WM_USER+100)
  11. #define WM_DELETE_POINT (WM_USER+101)
  12. #define WM_MOUSE_CHANGED (WM_USER+102)
  13. class CPointInfo : public CDialog
  14. {
  15. CWnd *m_pParentWnd;
  16. // Construction
  17. public:
  18. CPointInfo(CWnd* pParent = NULL);   // standard constructor
  19. // Dialog Data
  20. //{{AFX_DATA(CPointInfo)
  21. enum { IDD = IDD_MOUSE_POINT_DIALOG };
  22. CListBox m_List;
  23. CString m_strMouseX;
  24. CString m_strMouseY;
  25. //}}AFX_DATA
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CPointInfo)
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. // Generated message map functions
  35. //{{AFX_MSG(CPointInfo)
  36. afx_msg void OnDelete();
  37. afx_msg void OnClose();
  38. afx_msg void OnAddPoint(WPARAM wParam,LPARAM lParam);
  39. afx_msg void OnMouseChanged(WPARAM wParam,LPARAM lParam);
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };
  43. //{{AFX_INSERT_LOCATION}}
  44. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  45. #endif // !defined(AFX_POINTINFO_H__0C98B4A4_F9F3_467C_893F_4370205A1CDE__INCLUDED_)