-
Notifications
You must be signed in to change notification settings - Fork 20
/
day05.txt
537 lines (311 loc) · 8.87 KB
/
day05.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
动态创建过程:
1.获取该类的RuntimeClass变量的指针pClass
2.调用RuntimeClass的CreateObject函数
3.在CreateObject函数中,调用m_pfnCreateObject函数指针,
这个函数指针是该类的CreateObject函数地址
4.在CreateObject函数中会使用 new 创建对象并返回
二 文档
1.MFC文档类的作用
提供数据管理的功能, 包括数据的存储等功能.也可以提供文件打开等消息处理.
2.CDocument 文档类, 父类是 CCmdTarget , 提供了MFC关于文档的封装
3.MFC文档的使用
4.创建过程
4.1 CFrameWnd::LoadFrame函数创建 FrameWnd窗口
4.2 在CFrameWnd的WM_CREATE消息(OnCreate函数)中, 调用CFrameWnd
的OnCreateClient函数.
4.3 OnCreateClient函数中, 会根据传入的View的RuntimeClass信息,
将View对象和窗口创建出来
4.4 在CView的WM_CREATE消息(OnCreate函数)中,获取到创建的参数
中的CDocument的地址.
4.5 使用CDocuent::AddView函数,将View的地址保存到Document中,
同时将Document地址保存到View中m_pDocument.
5.WM_COMMAND消息处理
CView-->CDocument-->CFrameWnd-->CWinApp
过程:
1.WM_COMMAND发到程序的顶层窗口FrameWnd
2.FrameWnd获取当前活动视图将命令派发给View
3.在View中进行消息处理,然后发给Document
4.Document进行消息处理,返回FrameWnd, FrameWnd自己进行消息处理
5.派发给CWinApp进行消息处理
===========================================================
// MFCDoc.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "resource.h"
class CMyDocument : public CDocument
{
public:
CMyDocument();
DECLARE_DYNCREATE(CMyDocument)
public:
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnTest();
public:
CString m_strText;
};
IMPLEMENT_DYNCREATE(CMyDocument, CDocument)
BEGIN_MESSAGE_MAP(CMyDocument, CDocument)
//ON_COMMAND(ID_NEW, OnTest)
END_MESSAGE_MAP()
void CMyDocument::OnTest()
{
AfxMessageBox("test document");
}
CMyDocument::CMyDocument()
{
m_strText = "hello document";
}
class CDocView : public CEditView
{
public:
DECLARE_DYNCREATE(CDocView)
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnTest();
virtual void OnInitialUpdate();
};
IMPLEMENT_DYNCREATE(CDocView, CEditView)
BEGIN_MESSAGE_MAP(CDocView, CEditView)
//ON_COMMAND(ID_NEW, OnTest)
END_MESSAGE_MAP()
void CDocView::OnTest()
{
AfxMessageBox("test DocView");
}
void CDocView::OnInitialUpdate()
{
CDocument *pDoc = GetDocument();//view中有document的指针
if(FALSE == pDoc->IsKindOf(RUNTIME_CLASS(CMyDocument)))
{
return;
}
else
{
CMyDocument *pMyDoc = (CMyDocument *)pDoc;
SetWindowText(pMyDoc->m_strText);
}
}
class CDocFrame : public CFrameWnd
{
public:
DECLARE_MESSAGE_MAP()
afx_msg void OnTest();
};
BEGIN_MESSAGE_MAP(CDocFrame, CFrameWnd)
//ON_COMMAND(ID_NEW, OnTest)
END_MESSAGE_MAP()
void CDocFrame::OnTest()
{
AfxMessageBox("test DocFrame");
}
class CDocApp : public CWinApp
{
DECLARE_MESSAGE_MAP()
public:
virtual BOOL InitInstance();
afx_msg void OnTest();
};
BEGIN_MESSAGE_MAP(CDocApp, CWinApp)
ON_COMMAND(ID_NEW, OnTest)
END_MESSAGE_MAP()
void CDocApp::OnTest()
{
AfxMessageBox("test DocApp");
}
CDocApp theApp;
BOOL CDocApp ::InitInstance()
{
CDocFrame *pWnd = new CDocFrame();
CCreateContext context;
context.m_pNewViewClass = RUNTIME_CLASS(CDocView);
context.m_pCurrentDoc = new CMyDocument(); //增加文档类支持
pWnd->LoadFrame(IDR_MAINFRM, WS_OVERLAPPEDWINDOW, NULL, &context);
m_pMainWnd = pWnd;
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
pWnd->InitialUpdateFrame(NULL, TRUE); //更新所有frame
return TRUE;
}
===========================================================
三 MFC单文档视图应用程序(SDI)
1.单文档视图
只能对单个文档进行处理的应用程序
2.MFC单文档视图相关
CWinApp\CFrameWnd\CView\CDocument
CDocTemplate - 文档模板类, 父类CCmdTarget类,
作用是处理框架窗口,视图及文档之间的关系
CDocTemplate是抽象类, 子类:
CSingleDocTemplate 单文档模板类
CMultiDocTemplate 多文档模板类
3.单文档视图的实现
//创建文档模板对象
CSingleDocTemplate *pTemp = NULL;
pTemp = new CSingleDocTemplate(
IDR_MAINFRM,
RUNTIME_CLASS(CSdiDocument),
RUNTIME_CLASS(CSdiFrame),
RUNTIME_CLASS(CSdiView));
//保存文档模板
AddDocTemplate(pTemp);
//新建文档
OnFileNew();
4.单文视图创建过程
4.1 创建CSingleDocTemplate对象, 同时将FrameWnd/View/Document/RUNTIME_CLASS信息保存
CRuntieClass * m_pDocClass
CRuntieClass * m_pFrameClass
CRuntieClass * m_pViewClass
4.2 调用AddDocTemplate将模板对象pTemplate添加到CWinApp中
4.3 在CWinApp中, 将pTemplate保存m_pDocManager中
CDocManager *m_pDocManager
4.4 使用CWinApp的 OnFileNew或其他方式创建文档
4.5 在CWinApp的OnFileNew中,调用CDocManager的OnFileNew函数
4.6 在CDocManager的OnFileNew函数中查找模板 pTemplate.
然后调用pTemplate的 OpenDocumentFile函数打开新文档
pTemplate->OpenDocumentFile()
4.7 使用CreateNewDocument函数创建一个文档对象
4.8 使用CreateNewFrame函数以及pDocument创建框架窗口
4.9 创建框架窗口时, 使用CFrameWnd的LoadFrame函数,将窗口创建.
5.单文档视图的数据关系
CWinApp
|---> m_pMainWnd
| |-->m_pActiveView
| |-->m_pDocument
| |-->viewList(view *)
| |-->view....
|---> m_pDocManager
| |-->templateList
| |-->单文档template
| |-->m_pOnlyDoc 文档对象指针
| |-->单文档Template....
===========================================
// MFCSdi.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "resource.h"
class CSdiDocument : public CDocument
{
DECLARE_DYNCREATE(CSdiDocument)
public:
};
IMPLEMENT_DYNCREATE(CSdiDocument, CDocument )
class CSdiView : public CEditView
{
DECLARE_DYNCREATE(CSdiView)
public:
};
IMPLEMENT_DYNCREATE(CSdiView, CEditView )
class CSdiFrame : public CFrameWnd
{
DECLARE_DYNCREATE(CSdiFrame)
public:
};
IMPLEMENT_DYNCREATE(CSdiFrame, CFrameWnd )
class CSdiApp : public CWinApp
{
public:
virtual BOOL InitInstance();
};
CSdiApp theApp;
BOOL CSdiApp::InitInstance()
{
//创建文档模板对象
CSingleDocTemplate *pTemp = NULL;
pTemp = new CSingleDocTemplate(
IDR_MAINFRM,
RUNTIME_CLASS(CSdiDocument),
RUNTIME_CLASS(CSdiFrame),
RUNTIME_CLASS(CSdiView));
//保存文档模板
AddDocTemplate(pTemp);
//创建文档模板对象
CSingleDocTemplate *pTemp2 = NULL;
pTemp2 = new CSingleDocTemplate(
IDR_MAINFRM2,
RUNTIME_CLASS(CSdiDocument),
RUNTIME_CLASS(CSdiFrame),
RUNTIME_CLASS(CSdiView));
//保存文档模板
AddDocTemplate(pTemp2);
//新建文档
OnFileNew();
//显示窗口
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
return TRUE;
}
=========================================
四 MFC多文档视图应用程序 (MDI)
CWinApp / CView / CDocument
CMDIFrameWnd / CMDIChildWnd
MDI程序创建
1.定义模板对象 CMultiDocTemplate
2.保存到CWinApp中 AddDocTemplate
3.创建主窗口
4.新建文档
=================================================
// MFCMdi.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "resource.h"
class CMdiDocument : public CDocument
{
DECLARE_DYNCREATE(CMdiDocument)
public:
};
IMPLEMENT_DYNCREATE(CMdiDocument, CDocument)
class CMdiView : public CEditView
{
DECLARE_DYNCREATE(CMdiView)
public:
};
IMPLEMENT_DYNCREATE(CMdiView, CEditView)
class CChildFrame : public CMDIChildWnd
{
DECLARE_DYNCREATE(CChildFrame)
public:
};
IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
class CMainFrame : public CMDIFrameWnd
{
};
class CMdiApp: public CWinApp
{
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnNew();
public:
virtual BOOL InitInstance();
};
BEGIN_MESSAGE_MAP(CMdiApp, CWinApp)
ON_COMMAND(ID_NEW, OnNew)
END_MESSAGE_MAP()
void CMdiApp::OnNew()
{
OnFileNew();
}
CMdiApp theApp;
BOOL CMdiApp::InitInstance()
{
//创建多文档模板
CMultiDocTemplate * pDocTemp = NULL;
pDocTemp = new CMultiDocTemplate(
IDR_MAINFRM,
RUNTIME_CLASS(CMdiDocument),
RUNTIME_CLASS(CChildFrame),
RUNTIME_CLASS(CMdiView)
);
//保存文档模板
AddDocTemplate(pDocTemp);
//创建主窗口
CMainFrame *pFrame = new CMainFrame();
pFrame->LoadFrame(IDR_MAINFRM);
m_pMainWnd = pFrame;
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->UpdateWindow();
//打开新文档
OnFileNew();
return TRUE;
}
====================================================