BehaviorMonView.h
上传用户:xuemeng126
上传日期:2022-07-05
资源大小:454k
文件大小:3k
源码类别:

系统编程

开发平台:

Visual C++

  1. // BehaviorMonView.h : interface of the CBehaviorMonView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #include "SortListCtrl.h"
  5. #include "BehaviorMonDoc.h"
  6. #if !defined(AFX_BEHAVIORMONVIEW_H__20C1CD59_A8B5_4BCA_95C0_3D318AB2A60C__INCLUDED_)
  7. #define AFX_BEHAVIORMONVIEW_H__20C1CD59_A8B5_4BCA_95C0_3D318AB2A60C__INCLUDED_
  8. #if _MSC_VER > 1000
  9. #pragma once
  10. #endif // _MSC_VER > 1000
  11. class CBehaviorMonView : public CFormView
  12. {
  13. protected: // create from serialization only
  14. CBehaviorMonView();
  15. DECLARE_DYNCREATE(CBehaviorMonView)
  16. public:
  17. //{{AFX_DATA(CBehaviorMonView)
  18. enum { IDD = IDD_BEHAVIORMON_FORM };
  19. //CString m_row_num;
  20. //}}AFX_DATA
  21. // Attributes
  22. public:
  23. CBehaviorMonDoc* GetDocument();
  24. // Operations
  25. public:
  26. void setup();
  27. void hook(); 
  28. void unhook(); 
  29. void cleanup();
  30. void tell_driver_processname(CString cs);
  31. void clear_list();
  32.   afx_msg void OnButtonHook();
  33. afx_msg void OnButtonUnhook();
  34. //void displayError(char * s);
  35. // Overrides
  36. // ClassWizard generated virtual function overrides
  37. //{{AFX_VIRTUAL(CBehaviorMonView)
  38. public:
  39. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  40. protected:
  41. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  42. virtual void OnInitialUpdate(); // called first time after construct
  43. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  44. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  45. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  46. virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
  47. //}}AFX_VIRTUAL
  48. // Implementation
  49. public:
  50. virtual ~CBehaviorMonView();
  51. #ifdef _DEBUG
  52. virtual void AssertValid() const;
  53. virtual void Dump(CDumpContext& dc) const;
  54. #endif
  55. protected:
  56. // Generated message map functions
  57. protected:
  58. //{{AFX_MSG(CBehaviorMonView)
  59. afx_msg void OnClose();
  60. afx_msg void OnSize(UINT nType, int cx, int cy);
  61. afx_msg void OnClickListBehavior(NMHDR* pNMHDR, LRESULT* pResult);
  62. afx_msg void OnTimer(UINT nIDEvent);
  63. afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  64. //}}AFX_MSG
  65. DECLARE_MESSAGE_MAP()
  66. };
  67. #ifndef _DEBUG  // debug version in BehaviorMonView.cpp
  68. inline CBehaviorMonDoc* CBehaviorMonView::GetDocument()
  69.    { return (CBehaviorMonDoc*)m_pDocument; }
  70. #endif
  71. /////////////////////////////////////////////////////////////////////////////
  72. //{{AFX_INSERT_LOCATION}}
  73. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  74. #endif // !defined(AFX_BEHAVIORMONVIEW_H__20C1CD59_A8B5_4BCA_95C0_3D318AB2A60C__INCLUDED_)