AmazeView.h
上传用户:jygk2008
上传日期:2007-04-06
资源大小:18k
文件大小:2k
源码类别:

系统/网络安全

开发平台:

Visual C++

  1. // AmazeView.h : interface of the CAmazeView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_AMAZEVIEW_H__EEA2E9C1_90C8_11D4_A154_89D8A9A95671__INCLUDED_)
  5. #define AFX_AMAZEVIEW_H__EEA2E9C1_90C8_11D4_A154_89D8A9A95671__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #define SEPARATE 6
  10. class CAmazeView : public CScrollView
  11. {
  12. protected: // create from serialization only
  13. CAmazeView();
  14. DECLARE_DYNCREATE(CAmazeView)
  15. // Attributes
  16. public:
  17. CAmazeDoc* GetDocument();
  18. // Operations
  19. public:
  20. void ResetScrollbar();
  21. bool m_bDis;
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CAmazeView)
  25. public:
  26. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  27. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  28. protected:
  29. virtual void OnInitialUpdate(); // called first time after construct
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CAmazeView();
  34. #ifdef _DEBUG
  35. virtual void AssertValid() const;
  36. virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38. protected:
  39. // Generated message map functions
  40. protected:
  41. //{{AFX_MSG(CAmazeView)
  42. afx_msg void OnNew();
  43. afx_msg void OnDis();
  44. afx_msg void OnUpdateDis(CCmdUI* pCmdUI);
  45. afx_msg void OnWidth();
  46. afx_msg void OnHeight();
  47. //}}AFX_MSG
  48. DECLARE_MESSAGE_MAP()
  49. };
  50. #ifndef _DEBUG  // debug version in AmazeView.cpp
  51. inline CAmazeDoc* CAmazeView::GetDocument()
  52.    { return (CAmazeDoc*)m_pDocument; }
  53. #endif
  54. /////////////////////////////////////////////////////////////////////////////
  55. //{{AFX_INSERT_LOCATION}}
  56. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  57. #endif // !defined(AFX_AMAZEVIEW_H__EEA2E9C1_90C8_11D4_A154_89D8A9A95671__INCLUDED_)