NPVIEW.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // npview.h : interface of the CNotepadView class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. //
  13. class CFindDlg;     // forward declarations
  14. class CGotoDlg;
  15. #include "history.h"
  16. class CNotepadView : public CEditView
  17. {
  18. protected: // create from serialization only
  19. CNotepadView();
  20. DECLARE_DYNCREATE(CNotepadView)
  21. // Attributes
  22. public:
  23. CNotepadDoc* GetDocument();
  24. // Operations
  25. public:
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(CNotepadView)
  29. public:
  30. virtual void OnDraw(CDC* pDC);  // overridden to draw this view
  31. virtual BOOL Create(LPCTSTR lpszClassName, LPCTSTR lpszWindowName, DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID, CCreateContext* pContext = NULL);
  32. protected:
  33. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  34. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  35. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  36. //}}AFX_VIRTUAL
  37. public:
  38. // Attributes
  39. CFindDlg*    m_pFindDialog;             // find dialog
  40. CGotoDlg*    m_pGotoDialog;             // goto line number dialog
  41. CHistoryList m_searchHistory;           // last used search history list
  42. public:
  43. // Operations
  44. void OnViewFindNext(CString &s1);
  45. // Implementation
  46. public:
  47. virtual ~CNotepadView();
  48. #ifdef _DEBUG
  49. virtual void AssertValid() const;
  50. virtual void Dump(CDumpContext& dc) const;
  51. #endif
  52. protected:
  53. // Generated message map functions
  54. protected:
  55. //{{AFX_MSG(CNotepadView)
  56. afx_msg void OnEditGoto();
  57. afx_msg void OnUpdateEditGoto(CCmdUI* pCmdUI);
  58. afx_msg void OnEditFind();
  59. afx_msg void OnUpdateEditFind(CCmdUI* pCmdUI);
  60. afx_msg void OnViewFindNext();
  61. afx_msg void OnEditPaste();
  62. afx_msg void OnEditCopy();
  63. //}}AFX_MSG
  64. DECLARE_MESSAGE_MAP()
  65. };
  66. #ifndef _DEBUG  // debug version in npview.cpp
  67. inline CNotepadDoc* CNotepadView::GetDocument()
  68.    { return (CNotepadDoc*)m_pDocument; }
  69. #endif
  70. /////////////////////////////////////////////////////////////////////////////