NPView.h
上传用户:chenhai826
上传日期:2007-04-11
资源大小:72k
文件大小:2k
源码类别:

破解

开发平台:

Visual C++

  1. // NPView.h : interface of the CNPView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_NPVIEW_H__736C6EC5_693F_4B9C_BC0C_69DB3E10DB3F__INCLUDED_)
  5. #define AFX_NPVIEW_H__736C6EC5_693F_4B9C_BC0C_69DB3E10DB3F__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CNPDoc;
  10. class CAttackThread;
  11. class CMonitorThread;
  12. class CNPView : public CListView
  13. {
  14. protected: // create from serialization only
  15. CNPView();
  16. DECLARE_DYNCREATE(CNPView)
  17. // Attributes
  18. public:
  19. CNPDoc* GetDocument();
  20. // Operations
  21. public:
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CNPView)
  25. public:
  26. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  27. protected:
  28. virtual void OnInitialUpdate(); // called first time after construct
  29. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CNPView();
  34. void KillAllThreads(void);
  35. #ifdef _DEBUG
  36. virtual void AssertValid() const;
  37. virtual void Dump(CDumpContext& dc) const;
  38. #endif
  39. protected:
  40. CMonitorThread *m_pMonThread;
  41. bool m_bAttacking;
  42. bool m_bDisplay;
  43. // Generated message map functions
  44. protected:
  45. void AddString(int Event,int password);
  46. //{{AFX_MSG(CNPView)
  47. afx_msg void OnAttack();
  48. afx_msg void OnStop();
  49. afx_msg void OnUpdateAttack(CCmdUI* pCmdUI);
  50. afx_msg void OnUpdateStop(CCmdUI* pCmdUI);
  51. afx_msg void OnStopDisplay();
  52. afx_msg void OnUpdateStopDisplay(CCmdUI* pCmdUI);
  53. //}}AFX_MSG
  54. afx_msg LRESULT OnThreadReport(WPARAM,LPARAM);
  55. afx_msg LRESULT OnThreadNumUpdate(WPARAM,LPARAM);
  56. DECLARE_MESSAGE_MAP()
  57. };
  58. #ifndef _DEBUG  // debug version in NPView.cpp
  59. inline CNPDoc* CNPView::GetDocument()
  60.    { return (CNPDoc*)m_pDocument; }
  61. #endif
  62. /////////////////////////////////////////////////////////////////////////////
  63. //{{AFX_INSERT_LOCATION}}
  64. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  65. #endif // !defined(AFX_NPVIEW_H__736C6EC5_693F_4B9C_BC0C_69DB3E10DB3F__INCLUDED_)