ScrView.h
上传用户:wpp2016
上传日期:2010-02-01
资源大小:1250k
文件大小:2k
源码类别:

Telnet服务器

开发平台:

Visual C++

  1. #if !defined(AFX_SCRVIEW_H__ED569140_F2CC_11D3_8A76_00E04CDD95C8__INCLUDED_)
  2. #define AFX_SCRVIEW_H__ED569140_F2CC_11D3_8A76_00E04CDD95C8__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ScrView.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CScrView view
  10. #include "anywheredoc.h"
  11. class CScrView : public CScrollView
  12. {
  13. protected:
  14. CScrView();           // protected constructor used by dynamic creation
  15. DECLARE_DYNCREATE(CScrView)
  16. // Attributes
  17. public:
  18.     CAnywhereDoc* GetDocument()
  19. {
  20. ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CAnywhereDoc)));
  21. return (CAnywhereDoc*) m_pDocument;
  22. }
  23. // Operations
  24. public:
  25. void message(CString filename);
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CScrView)
  29. protected:
  30. virtual void OnDraw(CDC* pDC);      // overridden to draw this view
  31. virtual void OnInitialUpdate();     // first time after construct
  32. //}}AFX_VIRTUAL
  33. // Implementation
  34. protected:
  35. virtual ~CScrView();
  36. #ifdef _DEBUG
  37. virtual void AssertValid() const;
  38. virtual void Dump(CDumpContext& dc) const;
  39. #endif
  40. // Generated message map functions
  41. //{{AFX_MSG(CScrView)
  42. //}}AFX_MSG
  43. DECLARE_MESSAGE_MAP()
  44. };
  45. /////////////////////////////////////////////////////////////////////////////
  46. //{{AFX_INSERT_LOCATION}}
  47. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  48. #endif // !defined(AFX_SCRVIEW_H__ED569140_F2CC_11D3_8A76_00E04CDD95C8__INCLUDED_)