C_EditorView.h
上传用户:hgtech
上传日期:2022-06-07
资源大小:4455k
文件大小:2k
源码类别:

词法分析

开发平台:

Visual C++

  1. // C_EditorView.h : interface of the CC_EditorView class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_C_EDITORVIEW_H__84B7EFAC_EC87_4185_885A_341737207707__INCLUDED_)
  5. #define AFX_C_EDITORVIEW_H__84B7EFAC_EC87_4185_885A_341737207707__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. #include "SynEditView.h"
  10. class CC_EditorCntrItem;
  11. class CC_EditorView : public CSynEditView
  12. {
  13. protected: // create from serialization only
  14. CC_EditorView();
  15. DECLARE_DYNCREATE(CC_EditorView)
  16. // Attributes
  17. public:
  18. CC_EditorDoc *  GetDocument();
  19. // Operations
  20. public:
  21. // Overrides
  22. // ClassWizard generated virtual function overrides
  23. //{{AFX_VIRTUAL(CC_EditorView)
  24. public:
  25. virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  26. protected:
  27. virtual void OnInitialUpdate(); // called first time after construct
  28. virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
  29. virtual void OnDraw(CDC* pDC);
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. virtual ~CC_EditorView();
  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(CC_EditorView)
  42. afx_msg void OnCompileFormatAdjust();
  43. afx_msg void OnCompileSyntaxCheck();
  44. afx_msg void OnPaint();
  45. //}}AFX_MSG
  46. DECLARE_MESSAGE_MAP()
  47. };
  48. #ifndef _DEBUG  // debug version in C_EditorView.cpp
  49. inline CC_EditorDoc* CC_EditorView::GetDocument()
  50.    { return (CC_EditorDoc*)m_pDocument; }
  51. #endif
  52. /////////////////////////////////////////////////////////////////////////////
  53. //{{AFX_INSERT_LOCATION}}
  54. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  55. #endif // !defined(AFX_C_EDITORVIEW_H__84B7EFAC_EC87_4185_885A_341737207707__INCLUDED_)