⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 indexeditordoc.h

📁 VC开发环境下
💻 H
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -