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

SNMP编程

开发平台:

Visual C++

  1. // TaskingView.cpp : implementation of the CTaskingView class
  2. //
  3. #include "stdafx.h"
  4. #include "Tasking.h"
  5. #include "TaskingDoc.h"
  6. #include "TaskingView.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CTaskingView
  14. IMPLEMENT_DYNCREATE(CTaskingView, CFormView)
  15. BEGIN_MESSAGE_MAP(CTaskingView, CFormView)
  16. //{{AFX_MSG_MAP(CTaskingView)
  17. ON_BN_CLICKED(IDC_CBONIDLE1, OnCbonidle)
  18. ON_BN_CLICKED(IDC_CBTHREAD1, OnCbthread1)
  19. ON_BN_CLICKED(IDC_CBONIDLE2, OnCbonidle)
  20. ON_BN_CLICKED(IDC_CBTHREAD2, OnCbthread2)
  21. //}}AFX_MSG_MAP
  22. END_MESSAGE_MAP()
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CTaskingView construction/destruction
  25. CTaskingView::CTaskingView()
  26. : CFormView(CTaskingView::IDD)
  27. {
  28. //{{AFX_DATA_INIT(CTaskingView)
  29. m_bOnIdle2 = FALSE;
  30. m_bOnIdle1 = FALSE;
  31. m_bThread1 = FALSE;
  32. m_bThread2 = FALSE;
  33. //}}AFX_DATA_INIT
  34. // TODO: add construction code here
  35. }
  36. CTaskingView::~CTaskingView()
  37. {
  38. }
  39. void CTaskingView::DoDataExchange(CDataExchange* pDX)
  40. {
  41. CFormView::DoDataExchange(pDX);
  42. //{{AFX_DATA_MAP(CTaskingView)
  43. DDX_Check(pDX, IDC_CBONIDLE2, m_bOnIdle2);
  44. DDX_Check(pDX, IDC_CBONIDLE1, m_bOnIdle1);
  45. DDX_Check(pDX, IDC_CBTHREAD1, m_bThread1);
  46. DDX_Check(pDX, IDC_CBTHREAD2, m_bThread2);
  47. //}}AFX_DATA_MAP
  48. }
  49. BOOL CTaskingView::PreCreateWindow(CREATESTRUCT& cs)
  50. {
  51. // TODO: Modify the Window class or styles here by modifying
  52. //  the CREATESTRUCT cs
  53. return CFormView::PreCreateWindow(cs);
  54. }
  55. void CTaskingView::OnInitialUpdate()
  56. {
  57. CFormView::OnInitialUpdate();
  58. GetParentFrame()->RecalcLayout();
  59. ResizeParentToFit();
  60. }
  61. /////////////////////////////////////////////////////////////////////////////
  62. // CTaskingView diagnostics
  63. #ifdef _DEBUG
  64. void CTaskingView::AssertValid() const
  65. {
  66. CFormView::AssertValid();
  67. }
  68. void CTaskingView::Dump(CDumpContext& dc) const
  69. {
  70. CFormView::Dump(dc);
  71. }
  72. CTaskingDoc* CTaskingView::GetDocument() // non-debug version is inline
  73. {
  74. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CTaskingDoc)));
  75. return (CTaskingDoc*)m_pDocument;
  76. }
  77. #endif //_DEBUG
  78. /////////////////////////////////////////////////////////////////////////////
  79. // CTaskingView message handlers
  80. void CTaskingView::OnCbonidle() 
  81. {
  82. // TODO: Add your control notification handler code here
  83. UpdateData(TRUE);
  84. }
  85. void CTaskingView::OnCbthread1() 
  86. {
  87. // TODO: Add your control notification handler code here
  88. UpdateData(TRUE);
  89. CTaskingDoc *pDocWnd=(CTaskingDoc*)GetDocument();
  90. ASSERT_VALID(pDocWnd);
  91. pDocWnd->SuspendSpinner(0,m_bThread1);
  92. }
  93. void CTaskingView::OnCbthread2() 
  94. {
  95. // TODO: Add your control notification handler code here
  96. UpdateData(TRUE);
  97. CTaskingDoc *pDocWnd=(CTaskingDoc*)GetDocument();
  98. ASSERT_VALID(pDocWnd);
  99. pDocWnd->SuspendSpinner(1,m_bThread2);
  100. }