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

SNMP编程

开发平台:

Visual C++

  1. // Tasking.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "Tasking.h"
  5. #include "MainFrm.h"
  6. #include "TaskingDoc.h"
  7. #include "TaskingView.h"
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CTaskingApp
  15. BEGIN_MESSAGE_MAP(CTaskingApp, CWinApp)
  16. //{{AFX_MSG_MAP(CTaskingApp)
  17. ON_COMMAND(ID_APP_ABOUT, OnAppAbout)
  18. // NOTE - the ClassWizard will add and remove mapping macros here.
  19. //    DO NOT EDIT what you see in these blocks of generated code!
  20. //}}AFX_MSG_MAP
  21. // Standard file based document commands
  22. ON_COMMAND(ID_FILE_NEW, CWinApp::OnFileNew)
  23. ON_COMMAND(ID_FILE_OPEN, CWinApp::OnFileOpen)
  24. END_MESSAGE_MAP()
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CTaskingApp construction
  27. CTaskingApp::CTaskingApp()
  28. {
  29. // TODO: add construction code here,
  30. // Place all significant initialization in InitInstance
  31. }
  32. /////////////////////////////////////////////////////////////////////////////
  33. // The one and only CTaskingApp object
  34. CTaskingApp theApp;
  35. /////////////////////////////////////////////////////////////////////////////
  36. // CTaskingApp initialization
  37. BOOL CTaskingApp::InitInstance()
  38. {
  39. // Standard initialization
  40. // If you are not using these features and wish to reduce the size
  41. //  of your final executable, you should remove from the following
  42. //  the specific initialization routines you do not need.
  43. #ifdef _AFXDLL
  44. Enable3dControls(); // Call this when using MFC in a shared DLL
  45. #else
  46. Enable3dControlsStatic(); // Call this when linking to MFC statically
  47. #endif
  48. // Change the registry key under which our settings are stored.
  49. // TODO: You should modify this string to be something appropriate
  50. // such as the name of your company or organization.
  51. SetRegistryKey(_T("Local AppWizard-Generated Applications"));
  52. LoadStdProfileSettings();  // Load standard INI file options (including MRU)
  53. // Register the application's document templates.  Document templates
  54. //  serve as the connection between documents, frame windows and views.
  55. CSingleDocTemplate* pDocTemplate;
  56. pDocTemplate = new CSingleDocTemplate(
  57. IDR_MAINFRAME,
  58. RUNTIME_CLASS(CTaskingDoc),
  59. RUNTIME_CLASS(CMainFrame),       // main SDI frame window
  60. RUNTIME_CLASS(CTaskingView));
  61. AddDocTemplate(pDocTemplate);
  62. // Parse command line for standard shell commands, DDE, file open
  63. CCommandLineInfo cmdInfo;
  64. ParseCommandLine(cmdInfo);
  65. // Dispatch commands specified on the command line
  66. if (!ProcessShellCommand(cmdInfo))
  67. return FALSE;
  68. // The one and only window has been initialized, so show and update it.
  69. m_pMainWnd->ShowWindow(SW_SHOW);
  70. m_pMainWnd->UpdateWindow();
  71. return TRUE;
  72. }
  73. /////////////////////////////////////////////////////////////////////////////
  74. // CAboutDlg dialog used for App About
  75. class CAboutDlg : public CDialog
  76. {
  77. public:
  78. CAboutDlg();
  79. // Dialog Data
  80. //{{AFX_DATA(CAboutDlg)
  81. enum { IDD = IDD_ABOUTBOX };
  82. //}}AFX_DATA
  83. // ClassWizard generated virtual function overrides
  84. //{{AFX_VIRTUAL(CAboutDlg)
  85. protected:
  86. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  87. //}}AFX_VIRTUAL
  88. // Implementation
  89. protected:
  90. //{{AFX_MSG(CAboutDlg)
  91. // No message handlers
  92. //}}AFX_MSG
  93. DECLARE_MESSAGE_MAP()
  94. };
  95. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  96. {
  97. //{{AFX_DATA_INIT(CAboutDlg)
  98. //}}AFX_DATA_INIT
  99. }
  100. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  101. {
  102. CDialog::DoDataExchange(pDX);
  103. //{{AFX_DATA_MAP(CAboutDlg)
  104. //}}AFX_DATA_MAP
  105. }
  106. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  107. //{{AFX_MSG_MAP(CAboutDlg)
  108. // No message handlers
  109. //}}AFX_MSG_MAP
  110. END_MESSAGE_MAP()
  111. // App command to run the dialog
  112. void CTaskingApp::OnAppAbout()
  113. {
  114. CAboutDlg aboutDlg;
  115. aboutDlg.DoModal();
  116. }
  117. /////////////////////////////////////////////////////////////////////////////
  118. // CTaskingApp message handlers
  119. BOOL CTaskingApp::OnIdle(LONG lCount) 
  120. {
  121. // TODO: Add your specialized code here and/or call the base class
  122. //CWinApp::OnIdle(lCount);
  123. /////////////////////////////////////////////////////
  124. POSITION pos=GetFirstDocTemplatePosition();
  125. if(pos)
  126. {
  127. CDocTemplate *pDocTemp=GetNextDocTemplate(pos);
  128. if(pDocTemp)
  129. {
  130. POSITION dPos=pDocTemp->GetFirstDocPosition();
  131. if(dPos)
  132. {
  133. CTaskingDoc *pDocWnd=(CTaskingDoc*)pDocTemp->GetNextDoc(dPos);
  134. if(pDocWnd)
  135. {
  136. POSITION vPos=pDocWnd->GetFirstViewPosition();
  137. if(vPos)
  138. {
  139. CTaskingView* pView=
  140. (CTaskingView*)pDocWnd->GetNextView(vPos);
  141. if(pView)
  142. {
  143. if(pView->m_bOnIdle1)
  144. pDocWnd->DoSpin(0);
  145. if(pView->m_bOnIdle2)
  146. pDocWnd->DoSpin(2);
  147. }
  148. }
  149. }
  150. }
  151. }
  152. }
  153. return CWinApp::OnIdle(lCount);
  154. //return TRUE;
  155. }