📄 sql05doc.h
字号:
// sql05Doc.h : Csql05Doc 类的接口
//
#include <string>
using namespace std;
#pragma once
class Csql05Doc : public CDocument
{
protected: // 仅从序列化创建
Csql05Doc();
DECLARE_DYNCREATE(Csql05Doc)
// 属性
public:
// 操作
public:
BOOL SaveFile(LPCTSTR pszFile);
// 重写
public:
virtual BOOL OnNewDocument();
//virtual void Serialize(CArchive& ar);
// 实现
public:
virtual ~Csql05Doc();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// 生成的消息映射函数
protected:
CString myString;
CString filename;
afx_msg void OnFileOpen();
afx_msg void OnFileSave();
afx_msg void OnFileSaveAs();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnAnalyse();
afx_msg void OnExecute();
afx_msg void OnUpdateAnalyse(CCmdUI *pCmdUI);
afx_msg void OnUpdateRUN(CCmdUI *pCmdUI);
CView* GetView(int nIndex);
afx_msg void OnFileNew();
protected:
virtual BOOL SaveModified();
public:
bool dlgReturn;
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -