QuakeGod
2021-11-30 0ed43835e6bf40ba4d31fb6b8dc0d8400162b90a
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
 
// MTerm1View.cpp: CMTerm1View 类的实现
//
 
#include "pch.h"
#include "framework.h"
// SHARED_HANDLERS 可以在实现预览、缩略图和搜索筛选器句柄的
// ATL 项目中进行定义,并允许与该项目共享文档代码。
#ifndef SHARED_HANDLERS
#include "MTerm1.h"
#endif
 
#include "MTerm1Doc.h"
#include "MTerm1View.h"
 
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
 
 
// CMTerm1View
 
IMPLEMENT_DYNCREATE(CMTerm1View, CView)
 
BEGIN_MESSAGE_MAP(CMTerm1View, CView)
    // 标准打印命令
    ON_COMMAND(ID_FILE_PRINT, &CView::OnFilePrint)
    ON_COMMAND(ID_FILE_PRINT_DIRECT, &CView::OnFilePrint)
    ON_COMMAND(ID_FILE_PRINT_PREVIEW, &CMTerm1View::OnFilePrintPreview)
    ON_WM_CONTEXTMENU()
    ON_WM_RBUTTONUP()
END_MESSAGE_MAP()
 
// CMTerm1View 构造/析构
 
CMTerm1View::CMTerm1View() noexcept
{
    // TODO: 在此处添加构造代码
 
}
 
CMTerm1View::~CMTerm1View()
{
}
 
BOOL CMTerm1View::PreCreateWindow(CREATESTRUCT& cs)
{
    // TODO: 在此处通过修改
    //  CREATESTRUCT cs 来修改窗口类或样式
 
    return CView::PreCreateWindow(cs);
}
 
// CMTerm1View 绘图
 
void CMTerm1View::OnDraw(CDC* /*pDC*/)
{
    CMTerm1Doc* pDoc = GetDocument();
    ASSERT_VALID(pDoc);
    if (!pDoc)
        return;
 
    // TODO: 在此处为本机数据添加绘制代码
}
 
 
// CMTerm1View 打印
 
 
void CMTerm1View::OnFilePrintPreview()
{
#ifndef SHARED_HANDLERS
    AFXPrintPreview(this);
#endif
}
 
BOOL CMTerm1View::OnPreparePrinting(CPrintInfo* pInfo)
{
    // 默认准备
    return DoPreparePrinting(pInfo);
}
 
void CMTerm1View::OnBeginPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
    // TODO: 添加额外的打印前进行的初始化过程
}
 
void CMTerm1View::OnEndPrinting(CDC* /*pDC*/, CPrintInfo* /*pInfo*/)
{
    // TODO: 添加打印后进行的清理过程
}
 
void CMTerm1View::OnRButtonUp(UINT /* nFlags */, CPoint point)
{
    ClientToScreen(&point);
    OnContextMenu(this, point);
}
 
void CMTerm1View::OnContextMenu(CWnd* /* pWnd */, CPoint point)
{
#ifndef SHARED_HANDLERS
    theApp.GetContextMenuManager()->ShowPopupMenu(IDR_POPUP_EDIT, point.x, point.y, this, TRUE);
#endif
}
 
 
// CMTerm1View 诊断
 
#ifdef _DEBUG
void CMTerm1View::AssertValid() const
{
    CView::AssertValid();
}
 
void CMTerm1View::Dump(CDumpContext& dc) const
{
    CView::Dump(dc);
}
 
CMTerm1Doc* CMTerm1View::GetDocument() const // 非调试版本是内联的
{
    ASSERT(m_pDocument->IsKindOf(RUNTIME_CLASS(CMTerm1Doc)));
    return (CMTerm1Doc*)m_pDocument;
}
#endif //_DEBUG
 
 
// CMTerm1View 消息处理程序