indexeditordoc.h
来自「VC开发环境下」· C头文件 代码 · 共 55 行
H
55 行
// IndexEditorDoc.h : interface of the CIndexEditorDoc class
//
#pragma once
class CIndexsSrvrItem;
class CIndexEditorDoc : public COleServerDoc
{
protected: // create from serialization only
CIndexEditorDoc();
DECLARE_DYNCREATE(CIndexEditorDoc)
// Attributes
public:
public:
CIndexsSrvrItem* GetEmbeddedItem()
{ return reinterpret_cast<CIndexsSrvrItem*>(COleServerDoc::GetEmbeddedItem()); }
IGHIndexsPtr m_cpIndexSystem;
public:
BOOL FindIndexByName(const CString& strName,IGHIndex** pIndex);
BOOL FindClassifyByName(const CString& strName,IGHIndex* pIndex,IGHClassify** pClassify);
void UpdateTitle();
// Operations
public:
// Overrides
public:
virtual BOOL OnNewDocument();
virtual void Serialize(CArchive& ar);
virtual BOOL DoSave(LPCTSTR lpszPathName, BOOL bReplace);
// Implementation
public:
virtual ~CIndexEditorDoc();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
virtual COleServerItem* OnGetEmbeddedItem();
// Generated message map functions
protected:
DECLARE_MESSAGE_MAP()
public:
virtual BOOL OnSaveDocument(LPCTSTR lpszPathName);
virtual BOOL OnOpenDocument(LPCTSTR lpszPathName);
protected:
virtual BOOL SaveModified();
};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?