QuakeGod
2023-05-19 418cb35b936f21415807a2bcc21b2d75934bd4d2
提交 | 用户 | age
418cb3 1 
Q 2 // ConfigToolDoc.cpp: CConfigToolDoc 类的实现
3 //
4
5 #include "pch.h"
6 #include "framework.h"
7 // SHARED_HANDLERS 可以在实现预览、缩略图和搜索筛选器句柄的
8 // ATL 项目中进行定义,并允许与该项目共享文档代码。
9 #ifndef SHARED_HANDLERS
10 #include "ConfigTool.h"
11 #endif
12
13 #include "ConfigToolDoc.h"
14
15 #include "DialogSelDevice.h"
16
17 #include <propkey.h>
18
19 #ifdef _DEBUG
20 #define new DEBUG_NEW
21 #endif
22
23 // CConfigToolDoc
24
25 IMPLEMENT_DYNCREATE(CConfigToolDoc, CDocument)
26
27 BEGIN_MESSAGE_MAP(CConfigToolDoc, CDocument)
28 END_MESSAGE_MAP()
29
30
31 // CConfigToolDoc 构造/析构
32
33 CConfigToolDoc::CConfigToolDoc() noexcept
34 {
35     // TODO: 在此添加一次性构造代码
36
37 }
38
39 CConfigToolDoc::~CConfigToolDoc()
40 {
41 }
42
43 BOOL CConfigToolDoc::OnNewDocument()
44 {
45
46 //    INT_PTR j = AfxMessageBox(_T("新建文件"), MB_YESNO);
47 //    if (j != IDYES) { return FALSE; }
48
49 //    CDialogSelDevice dialog1;
50
51 //    INT_PTR r = dialog1.DoModal();
52
53 //    if (r != IDOK) { return FALSE; }
54
55     if (!CDocument::OnNewDocument())
56         return FALSE;
57
58     // TODO: 在此添加重新初始化代码
59     // (SDI 文档将重用该文档)
60
61     return TRUE;
62 }
63
64
65
66
67 // CConfigToolDoc 序列化
68
69 void CConfigToolDoc::Serialize(CArchive& ar)
70 {
71     if (ar.IsStoring())
72     {
73         // TODO: 在此添加存储代码
74     }
75     else
76     {
77         // TODO: 在此添加加载代码
78     }
79 }
80
81 #ifdef SHARED_HANDLERS
82
83 // 缩略图的支持
84 void CConfigToolDoc::OnDrawThumbnail(CDC& dc, LPRECT lprcBounds)
85 {
86     // 修改此代码以绘制文档数据
87     dc.FillSolidRect(lprcBounds, RGB(255, 255, 255));
88
89     CString strText = _T("TODO: implement thumbnail drawing here");
90     LOGFONT lf;
91
92     CFont* pDefaultGUIFont = CFont::FromHandle((HFONT) GetStockObject(DEFAULT_GUI_FONT));
93     pDefaultGUIFont->GetLogFont(&lf);
94     lf.lfHeight = 36;
95
96     CFont fontDraw;
97     fontDraw.CreateFontIndirect(&lf);
98
99     CFont* pOldFont = dc.SelectObject(&fontDraw);
100     dc.DrawText(strText, lprcBounds, DT_CENTER | DT_WORDBREAK);
101     dc.SelectObject(pOldFont);
102 }
103
104 // 搜索处理程序的支持
105 void CConfigToolDoc::InitializeSearchContent()
106 {
107     CString strSearchContent;
108     // 从文档数据设置搜索内容。
109     // 内容部分应由“;”分隔
110
111     // 例如:     strSearchContent = _T("point;rectangle;circle;ole object;");
112     SetSearchContent(strSearchContent);
113 }
114
115 void CConfigToolDoc::SetSearchContent(const CString& value)
116 {
117     if (value.IsEmpty())
118     {
119         RemoveChunk(PKEY_Search_Contents.fmtid, PKEY_Search_Contents.pid);
120     }
121     else
122     {
123         CMFCFilterChunkValueImpl *pChunk = nullptr;
124         ATLTRY(pChunk = new CMFCFilterChunkValueImpl);
125         if (pChunk != nullptr)
126         {
127             pChunk->SetTextValue(PKEY_Search_Contents, value, CHUNK_TEXT);
128             SetChunkValue(pChunk);
129         }
130     }
131 }
132
133 #endif // SHARED_HANDLERS
134
135 // CConfigToolDoc 诊断
136
137 #ifdef _DEBUG
138 void CConfigToolDoc::AssertValid() const
139 {
140     CDocument::AssertValid();
141 }
142
143 void CConfigToolDoc::Dump(CDumpContext& dc) const
144 {
145     CDocument::Dump(dc);
146 }
147 #endif //_DEBUG
148
149
150 // CConfigToolDoc 命令
151
152
153 void CConfigToolDoc::OnCloseDocument()
154 {
155     // TODO: 在此添加专用代码和/或调用基类
156 //    AfxMessageBox(_T("是否确定关闭?"));
157     CDocument::OnCloseDocument();
158 }
159
160
161 BOOL CConfigToolDoc::SaveModified()
162 {
163     // TODO: 在此添加专用代码和/或调用基类
164     //INT_PTR r = AfxMessageBox(_T("是否确定关闭当前文档 ?"),MB_YESNO);
165     //if (r != IDYES) return false;
166     return CDocument::SaveModified();
167 }
168