NetMapView.h
上传用户:hbytqc8
上传日期:2014-07-31
资源大小:527k
文件大小:2k
源码类别:

SNMP编程

开发平台:

Visual C++

  1. // NetMapView.h : interface of the CNetMapView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_NETMAPVIEW_H__07B81868_2C20_4AFC_B891_C97893B7D500__INCLUDED_)
  5. #define AFX_NETMAPVIEW_H__07B81868_2C20_4AFC_B891_C97893B7D500__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "NetMapDoc.h"
  10. class CNetMapView : public CFormView
  11. {
  12. protected: // create from serialization only
  13. CNetMapView();
  14. DECLARE_DYNCREATE(CNetMapView)
  15. public:
  16. //{{AFX_DATA(CNetMapView)
  17. enum{ IDD = IDD_NETMAP_FORM };
  18. // NOTE: the ClassWizard will add data members here
  19. //}}AFX_DATA
  20. // Attributes
  21. public:
  22. CNetMapDoc* GetDocument();
  23.     bool paint;
  24. // Operations
  25. public:
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CNetMapView)
  29. public:
  30. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  31. protected:
  32. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  33. virtual void OnInitialUpdate(); // called first time after construct
  34. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  35. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  36. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  37. virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
  38. //}}AFX_VIRTUAL
  39. // Implementation
  40. public:
  41. virtual ~CNetMapView();
  42. #ifdef _DEBUG
  43. virtual void AssertValid() const;
  44. virtual void Dump(CDumpContext& dc) const;
  45. #endif
  46. protected:
  47. // Generated message map functions
  48. protected:
  49. //{{AFX_MSG(CNetMapView)
  50. afx_msg void OnDestroy();
  51. afx_msg HBRUSH OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor);
  52. afx_msg void OnPaint();
  53. //}}AFX_MSG
  54. DECLARE_MESSAGE_MAP()
  55. };
  56. #ifndef _DEBUG  // debug version in NetMapView.cpp
  57. inline CNetMapDoc* CNetMapView::GetDocument()
  58.    { return (CNetMapDoc*)m_pDocument; }
  59. #endif
  60. /////////////////////////////////////////////////////////////////////////////
  61. //{{AFX_INSERT_LOCATION}}
  62. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  63. #endif // !defined(AFX_NETMAPVIEW_H__07B81868_2C20_4AFC_B891_C97893B7D500__INCLUDED_)