MDITextEditorView.h
上传用户:szled88
上传日期:2015-04-09
资源大小:43957k
文件大小:3k
源码类别:

对话框与窗口

开发平台:

Visual C++

  1. // MDITextEditorView.h : interface of the CMDITextEditorView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MDITEXTEDITORVIEW_H__8755594F_0001_4908_9353_5187AEEF9610__INCLUDED_)
  5. #define AFX_MDITEXTEDITORVIEW_H__8755594F_0001_4908_9353_5187AEEF9610__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. //#define CViewBase CView
  10. #define CViewBase CXTPSyntaxEditView
  11. class CMDITextEditorView : public CViewBase
  12. {
  13. protected: // create from serialization only
  14. CMDITextEditorView();
  15. DECLARE_DYNCREATE(CMDITextEditorView)
  16. // Attributes
  17. public:
  18. CMDITextEditorDoc* GetDocument();
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CMDITextEditorView)
  24. public:
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. protected:
  27. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  28. virtual void OnBeginPrinting(CDC* pDC, CPrintInfo* pInfo);
  29. virtual void OnEndPrinting(CDC* pDC, CPrintInfo* pInfo);
  30. virtual void OnPrint(CDC* pDC, CPrintInfo* pInfo);
  31. virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
  32. //}}AFX_VIRTUAL
  33. protected:
  34. virtual BOOL OnRowColChanged(NMHDR* pNMHDR, LRESULT* pResult);
  35. virtual BOOL OnParseEvent(NMHDR* pNMHDR, LRESULT* pResult);
  36. void OnPrintHeader(CDC* pDC, CPrintInfo* pInfo);
  37. void OnPrintFooter(CDC* pDC, CPrintInfo* pInfo);
  38. // Implementation
  39. public:
  40. virtual ~CMDITextEditorView();
  41. #ifdef _DEBUG
  42. virtual void AssertValid() const;
  43. virtual void Dump(CDumpContext& dc) const;
  44. #endif
  45. protected:
  46. // Generated message map functions
  47. protected:
  48. //{{AFX_MSG(CMDITextEditorView)
  49. afx_msg void OnToolsBookmark();
  50. afx_msg void OnToolsBreakpoint();
  51. afx_msg void OnContextMenu(CWnd* pWnd, CPoint point);
  52. afx_msg void OnEditFindSilent();
  53. afx_msg void OnToolsNextBookmark();
  54. afx_msg void OnUpdateToolsNextBookmark(CCmdUI* pCmdUI);
  55. afx_msg void OnToolsPrevBookmark();
  56. afx_msg void OnUpdateToolsPrevBookmark(CCmdUI* pCmdUI);
  57. afx_msg void OnEditTabify();
  58. afx_msg void OnEditUnTabify();
  59. afx_msg void OnEditUppercase();
  60. afx_msg void OnEditLowercase();
  61. afx_msg void OnEditWhiteSpace();
  62. afx_msg void OnEditCollapseAll();
  63. afx_msg void OnEditExpandAll();
  64. afx_msg void OnUpdateEditWhiteSpace(CCmdUI* pCmdUI);
  65. afx_msg void OnToolsOptions();
  66. afx_msg void OnFileGoTo();
  67. afx_msg void OnReadOnly();
  68. afx_msg void OnUpdateReadOnly(CCmdUI* pCmdUI);
  69. //}}AFX_MSG
  70. DECLARE_MESSAGE_MAP()
  71. RECT  m_rcMargin;
  72. DWORD m_dwLastUpdate;
  73. DWORD m_dwParserStart;
  74. CXTPSyntaxEditGoToLineDlg m_dlgGoTo;
  75. };
  76. #ifndef _DEBUG  // debug version in MDITextEditorView.cpp
  77. inline CMDITextEditorDoc* CMDITextEditorView::GetDocument()
  78.    { return (CMDITextEditorDoc*)m_pDocument; }
  79. #endif
  80. /////////////////////////////////////////////////////////////////////////////
  81. //{{AFX_INSERT_LOCATION}}
  82. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  83. #endif // !defined(AFX_MDITEXTEDITORVIEW_H__8755594F_0001_4908_9353_5187AEEF9610__INCLUDED_)