C_EditorView.h
资源名称:ceditor.rar [点击查看]
上传用户:hgtech
上传日期:2022-06-07
资源大小:4455k
文件大小:2k
源码类别:
词法分析
开发平台:
Visual C++
- // C_EditorView.h : interface of the CC_EditorView class
- //
- /////////////////////////////////////////////////////////////////////////////
- #if !defined(AFX_C_EDITORVIEW_H__84B7EFAC_EC87_4185_885A_341737207707__INCLUDED_)
- #define AFX_C_EDITORVIEW_H__84B7EFAC_EC87_4185_885A_341737207707__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- #include "SynEditView.h"
- class CC_EditorCntrItem;
- class CC_EditorView : public CSynEditView
- {
- protected: // create from serialization only
- CC_EditorView();
- DECLARE_DYNCREATE(CC_EditorView)
- // Attributes
- public:
- CC_EditorDoc * GetDocument();
- // Operations
- public:
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CC_EditorView)
- public:
- virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
- protected:
- virtual void OnInitialUpdate(); // called first time after construct
- virtual BOOL OnPreparePrinting(CPrintInfo* pInfo);
- virtual void OnDraw(CDC* pDC);
- //}}AFX_VIRTUAL
- // Implementation
- public:
- virtual ~CC_EditorView();
- #ifdef _DEBUG
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
- protected:
- // Generated message map functions
- protected:
- //{{AFX_MSG(CC_EditorView)
- afx_msg void OnCompileFormatAdjust();
- afx_msg void OnCompileSyntaxCheck();
- afx_msg void OnPaint();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- #ifndef _DEBUG // debug version in C_EditorView.cpp
- inline CC_EditorDoc* CC_EditorView::GetDocument()
- { return (CC_EditorDoc*)m_pDocument; }
- #endif
- /////////////////////////////////////////////////////////////////////////////
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_C_EDITORVIEW_H__84B7EFAC_EC87_4185_885A_341737207707__INCLUDED_)