TTYView.h
上传用户:seaboy_04
上传日期:2013-02-24
资源大小:284k
文件大小:2k
源码类别:

其他行业

开发平台:

Visual C++

  1. // TTYView.h : interface of the CTTYView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_TTYVIEW_H__924288D0_EDB0_48F0_810F_28332DF7A34A__INCLUDED_)
  5. #define AFX_TTYVIEW_H__924288D0_EDB0_48F0_810F_28332DF7A34A__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CTTYView : public CEditView
  10. {
  11. protected: // create from serialization only
  12. CTTYView();
  13. DECLARE_DYNCREATE(CTTYView)
  14. // Attributes
  15. public:
  16. CTTYDoc* GetDocument();
  17. // Operations
  18. public:
  19. // Overrides
  20. // ClassWizard generated virtual function overrides
  21. //{{AFX_VIRTUAL(CTTYView)
  22. public:
  23. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  24. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  25. protected:
  26. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  27. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  28. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. public:
  32. virtual ~CTTYView();
  33. #ifdef _DEBUG
  34. virtual void AssertValid() const;
  35. virtual void Dump(CDumpContext& dc) const;
  36. #endif
  37. protected:
  38. // Generated message map functions
  39. protected:
  40. //{{AFX_MSG(CTTYView)
  41. afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  42. afx_msg void OnWrite();
  43. //}}AFX_MSG
  44. afx_msg LRESULT OnCommNotify(WPARAM wParam, LPARAM lParam);
  45. DECLARE_MESSAGE_MAP()
  46. };
  47. #ifndef _DEBUG  // debug version in TTYView.cpp
  48. inline CTTYDoc* CTTYView::GetDocument()
  49.    { return (CTTYDoc*)m_pDocument; }
  50. #endif
  51. /////////////////////////////////////////////////////////////////////////////
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54. #endif // !defined(AFX_TTYVIEW_H__924288D0_EDB0_48F0_810F_28332DF7A34A__INCLUDED_)