|
// ConfigToolDoc.cpp: CConfigToolDoc 类的实现
|
//
|
|
#include "pch.h"
|
#include "framework.h"
|
// SHARED_HANDLERS 可以在实现预览、缩略图和搜索筛选器句柄的
|
// ATL 项目中进行定义,并允许与该项目共享文档代码。
|
#ifndef SHARED_HANDLERS
|
#include "ConfigTool.h"
|
#endif
|
|
#include "ConfigToolDoc.h"
|
|
#include "DialogSelDevice.h"
|
|
#include <propkey.h>
|
|
#ifdef _DEBUG
|
#define new DEBUG_NEW
|
#endif
|
|
// CConfigToolDoc
|
|
IMPLEMENT_DYNCREATE(CConfigToolDoc, CDocument)
|
|
BEGIN_MESSAGE_MAP(CConfigToolDoc, CDocument)
|
END_MESSAGE_MAP()
|
|
|
// CConfigToolDoc 构造/析构
|
|
CConfigToolDoc::CConfigToolDoc() noexcept
|
{
|
// TODO: 在此添加一次性构造代码
|
|
}
|
|
CConfigToolDoc::~CConfigToolDoc()
|
{
|
}
|
|
BOOL CConfigToolDoc::OnNewDocument()
|
{
|
|
// INT_PTR j = AfxMessageBox(_T("新建文件"), MB_YESNO);
|
// if (j != IDYES) { return FALSE; }
|
|
// CDialogSelDevice dialog1;
|
|
// INT_PTR r = dialog1.DoModal();
|
|
// if (r != IDOK) { return FALSE; }
|
|
if (!CDocument::OnNewDocument())
|
return FALSE;
|
|
// TODO: 在此添加重新初始化代码
|
// (SDI 文档将重用该文档)
|
|
return TRUE;
|
}
|
|
|
|
|
// CConfigToolDoc 序列化
|
|
void CConfigToolDoc::Serialize(CArchive& ar)
|
{
|
if (ar.IsStoring())
|
{
|
// TODO: 在此添加存储代码
|
}
|
else
|
{
|
// TODO: 在此添加加载代码
|
}
|
}
|
|
#ifdef SHARED_HANDLERS
|
|
// 缩略图的支持
|
void CConfigToolDoc::OnDrawThumbnail(CDC& dc, LPRECT lprcBounds)
|
{
|
// 修改此代码以绘制文档数据
|
dc.FillSolidRect(lprcBounds, RGB(255, 255, 255));
|
|
CString strText = _T("TODO: implement thumbnail drawing here");
|
LOGFONT lf;
|
|
CFont* pDefaultGUIFont = CFont::FromHandle((HFONT) GetStockObject(DEFAULT_GUI_FONT));
|
pDefaultGUIFont->GetLogFont(&lf);
|
lf.lfHeight = 36;
|
|
CFont fontDraw;
|
fontDraw.CreateFontIndirect(&lf);
|
|
CFont* pOldFont = dc.SelectObject(&fontDraw);
|
dc.DrawText(strText, lprcBounds, DT_CENTER | DT_WORDBREAK);
|
dc.SelectObject(pOldFont);
|
}
|
|
// 搜索处理程序的支持
|
void CConfigToolDoc::InitializeSearchContent()
|
{
|
CString strSearchContent;
|
// 从文档数据设置搜索内容。
|
// 内容部分应由“;”分隔
|
|
// 例如: strSearchContent = _T("point;rectangle;circle;ole object;");
|
SetSearchContent(strSearchContent);
|
}
|
|
void CConfigToolDoc::SetSearchContent(const CString& value)
|
{
|
if (value.IsEmpty())
|
{
|
RemoveChunk(PKEY_Search_Contents.fmtid, PKEY_Search_Contents.pid);
|
}
|
else
|
{
|
CMFCFilterChunkValueImpl *pChunk = nullptr;
|
ATLTRY(pChunk = new CMFCFilterChunkValueImpl);
|
if (pChunk != nullptr)
|
{
|
pChunk->SetTextValue(PKEY_Search_Contents, value, CHUNK_TEXT);
|
SetChunkValue(pChunk);
|
}
|
}
|
}
|
|
#endif // SHARED_HANDLERS
|
|
// CConfigToolDoc 诊断
|
|
#ifdef _DEBUG
|
void CConfigToolDoc::AssertValid() const
|
{
|
CDocument::AssertValid();
|
}
|
|
void CConfigToolDoc::Dump(CDumpContext& dc) const
|
{
|
CDocument::Dump(dc);
|
}
|
#endif //_DEBUG
|
|
|
// CConfigToolDoc 命令
|
|
|
void CConfigToolDoc::OnCloseDocument()
|
{
|
// TODO: 在此添加专用代码和/或调用基类
|
// AfxMessageBox(_T("是否确定关闭?"));
|
CDocument::OnCloseDocument();
|
}
|
|
|
BOOL CConfigToolDoc::SaveModified()
|
{
|
// TODO: 在此添加专用代码和/或调用基类
|
//INT_PTR r = AfxMessageBox(_T("是否确定关闭当前文档 ?"),MB_YESNO);
|
//if (r != IDYES) return false;
|
return CDocument::SaveModified();
|
}
|
|