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

SNMP编程

开发平台:

Visual C++

  1. // NetMap.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "NetMap.h"
  5. #include "MainFrm.h"
  6. #include "NetMapDoc.h"
  7. #include "NetMapView.h"
  8. #include "MapView.h"
  9. #include "VlanView.h"
  10. #ifdef _DEBUG
  11. #define new DEBUG_NEW
  12. #undef THIS_FILE
  13. static char THIS_FILE[] = __FILE__;
  14. #endif
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CNetMapApp
  17. BEGIN_MESSAGE_MAP(CNetMapApp, CWinApp)
  18. //{{AFX_MSG_MAP(CNetMapApp)
  19. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  20. // NOTE - the ClassWizard will add and remove mapping macros here.
  21. //    DO NOT EDIT what you see in these blocks of generated code!
  22. //}}AFX_MSG_MAP
  23. // Standard file based document commands
  24. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  25. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  26. // Standard print setup command
  27. ON_COMMAND(ID_FILE_PRINT_SETUP, CWinApp::OnFilePrintSetup)
  28. END_MESSAGE_MAP()
  29. /////////////////////////////////////////////////////////////////////////////
  30. // CNetMapApp construction
  31. CNetMapApp::CNetMapApp()
  32. {
  33. // TODO: add construction code here,
  34. // Place all significant initialization in InitInstance
  35. }
  36. /////////////////////////////////////////////////////////////////////////////
  37. // The one and only CNetMapApp object
  38. CNetMapApp theApp;
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CNetMapApp initialization
  41. BOOL CNetMapApp::InitInstance()
  42. {
  43. /* { // BLOCK: doc template registration // Register the document template.  Document templates serve // as the connection between documents, frame windows and views. // Attach this form to another document or frame window by changing // the document or frame class in the constructor below. CSingleDocTemplate* pNewDocTemplate = new CSingleDocTemplate( IDR_VLANVIEW_TMPL, RUNTIME_CLASS(CNetMapDoc), // document class RUNTIME_CLASS(CMainFrame), // frame class RUNTIME_CLASS(CVlanView)); // view class AddDocTemplate(pNewDocTemplate); }
  44. { // BLOCK: doc template registration // Register the document template.  Document templates serve // as the connection between documents, frame windows and views. // Attach this form to another document or frame window by changing // the document or frame class in the constructor below. CSingleDocTemplate* pNewDocTemplate = new CSingleDocTemplate( IDR_MAPVIEW_TMPL, RUNTIME_CLASS(CNetMapDoc), // document class RUNTIME_CLASS(CMainFrame), // frame class RUNTIME_CLASS(CMapView)); // view class AddDocTemplate(pNewDocTemplate); }*/
  45. AfxEnableControlContainer();
  46. // Standard initialization
  47. // If you are not using these features and wish to reduce the size
  48. //  of your final executable, you should remove from the following
  49. //  the specific initialization routines you do not need.
  50. #ifdef _AFXDLL
  51. Enable3dControls(); // Call this when using MFC in a shared DLL
  52. #else
  53. Enable3dControlsStatic(); // Call this when linking to MFC statically
  54. #endif
  55. // Change the registry key under which our settings are stored.
  56. // TODO: You should modify this string to be something appropriate
  57. // such as the name of your company or organization.
  58. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  59. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  60. // Register the application's document templates.  Document templates
  61. //  serve as the connection between documents, frame windows and views.
  62. CSingleDocTemplate* pDocTemplate;
  63. pDocTemplate = new CSingleDocTemplate(
  64. IDR_MAINFRAME,
  65. RUNTIME_CLASS(CNetMapDoc),
  66. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  67. RUNTIME_CLASS(CNetMapView));
  68. AddDocTemplate(pDocTemplate);
  69. // Parse command line for standard shell commands, DDE, file open
  70. CCommandLineInfo cmdInfo;
  71. ParseCommandLine(cmdInfo);
  72. // Dispatch commands specified on the command line
  73. if (!ProcessShellCommand(cmdInfo))
  74. return FALSE;
  75. // The one and only window has been initialized, so show and update it.
  76. m_pMainWnd->ShowWindow(SW_SHOW);
  77. m_pMainWnd->UpdateWindow();
  78.     m_pMainWnd->SetWindowText("局域网VLAN管理");
  79. return TRUE;
  80. }
  81. /////////////////////////////////////////////////////////////////////////////
  82. // CAboutDlg dialog used for App About
  83. class CAboutDlg : public CDialog
  84. {
  85. public:
  86. CAboutDlg();
  87. // Dialog Data
  88. //{{AFX_DATA(CAboutDlg)
  89. enum { IDD = IDD_ABOUTBOX };
  90. //}}AFX_DATA
  91. // ClassWizard generated virtual function overrides
  92. //{{AFX_VIRTUAL(CAboutDlg)
  93. protected:
  94. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  95. //}}AFX_VIRTUAL
  96. // Implementation
  97. protected:
  98. //{{AFX_MSG(CAboutDlg)
  99. // No message handlers
  100. //}}AFX_MSG
  101. DECLARE_MESSAGE_MAP()
  102. };
  103. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  104. {
  105. //{{AFX_DATA_INIT(CAboutDlg)
  106. //}}AFX_DATA_INIT
  107. }
  108. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  109. {
  110. CDialog::DoDataExchange(pDX);
  111. //{{AFX_DATA_MAP(CAboutDlg)
  112. //}}AFX_DATA_MAP
  113. }
  114. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  115. //{{AFX_MSG_MAP(CAboutDlg)
  116. // No message handlers
  117. //}}AFX_MSG_MAP
  118. END_MESSAGE_MAP()
  119. // App command to run the dialog
  120. void CNetMapApp::OnAppAbout()
  121. {
  122. CAboutDlg aboutDlg;
  123. aboutDlg.DoModal();
  124. }
  125. /////////////////////////////////////////////////////////////////////////////
  126. // CNetMapApp message handlers