├── BottomFormView.cpp
├── BottomFormView.h
├── ClassDiagram.cd
├── DrawingGraphics.cpp
├── DrawingGraphics.h
├── Graph.cpp
├── Graph.h
├── Image_V.rar
├── MagnifyDlg.cpp
├── MagnifyDlg.h
├── MainFrm.cpp
├── MainFrm.h
├── MainShape.cpp
├── MainShape.h
├── README.md
├── ReadMe.txt
├── Resource.h
├── SettingDlg.cpp
├── SettingDlg.h
├── Shape.cpp
├── Shape.h
├── TopFormView.cpp
├── TopFormView.h
├── WTImage.aps
├── WTImage.cpp
├── WTImage.h
├── WTImage.rc
├── WTImage.vcxproj
├── WTImage.vcxproj.filters
├── WTImage.vcxproj.user
├── WTImageDoc.cpp
├── WTImageDoc.h
├── WTImageView.cpp
├── WTImageView.h
├── image
├── 1.jpg
└── 2.jpg
├── res
├── Toolbar.bmp
├── WTImage.ico
├── WTImage.rc2
├── WTImageDoc.ico
├── bmp00001.bmp
├── bmp00002.bmp
├── bmp00003.bmp
├── cur00001.cur
├── cur00002.cur
├── cursor1.cur
├── cursor2.cur
└── toolbar1.bmp
├── stdafx.cpp
├── stdafx.h
└── targetver.h
/BottomFormView.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/BottomFormView.cpp
--------------------------------------------------------------------------------
/BottomFormView.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/BottomFormView.h
--------------------------------------------------------------------------------
/ClassDiagram.cd:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 | AAAABAAEAAAAAgAACBBAgAAIAAAAAAAAAAAAAAAAAAA=
7 | BottomFormView.h
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/DrawingGraphics.cpp:
--------------------------------------------------------------------------------
1 | #include "stdafx.h"
2 | #include "DrawingGraphics.h"
3 |
4 |
5 | CDrawingGraphics::CDrawingGraphics()
6 | {
7 | }
8 |
9 |
10 | CDrawingGraphics::~CDrawingGraphics()
11 | {
12 | }
13 |
--------------------------------------------------------------------------------
/DrawingGraphics.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/DrawingGraphics.h
--------------------------------------------------------------------------------
/Graph.cpp:
--------------------------------------------------------------------------------
1 | #include "stdafx.h"
2 | #include "Graph.h"
3 |
4 |
5 | CGraph::CGraph()
6 | {
7 | }
8 |
9 | CGraph::CGraph(UINT m_nDrawType, CPoint m_ptOrigin, CPoint m_ptEnd)
10 | {
11 | this->m_nDrawType = m_nDrawType;
12 | this->m_ptOrigin = m_ptOrigin;
13 | this->m_ptEnd = m_ptEnd;
14 | }
15 |
16 |
17 | CGraph::~CGraph()
18 | {
19 | }
20 |
--------------------------------------------------------------------------------
/Graph.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/Graph.h
--------------------------------------------------------------------------------
/Image_V.rar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/Image_V.rar
--------------------------------------------------------------------------------
/MagnifyDlg.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/MagnifyDlg.cpp
--------------------------------------------------------------------------------
/MagnifyDlg.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/MagnifyDlg.h
--------------------------------------------------------------------------------
/MainFrm.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/MainFrm.cpp
--------------------------------------------------------------------------------
/MainFrm.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/MainFrm.h
--------------------------------------------------------------------------------
/MainShape.cpp:
--------------------------------------------------------------------------------
1 | #include "stdafx.h"
2 | #include "MainShape.h"
3 |
4 |
5 | CMainShape::CMainShape()
6 | {
7 | }
8 |
9 |
10 | CMainShape::~CMainShape()
11 | {
12 | }
13 |
--------------------------------------------------------------------------------
/MainShape.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/MainShape.h
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Draw_Image
2 | 高仿画图板并拓展。在VS2015环境下,利用MFC框架实现的一款高仿“画图”工具,实现绝大部分功能甚至更多创新点。(带注释) 实现了点、直线、曲线、折线、矩形、圆形、多边形等等形状,并且具有区域限制、鼠标捕捉等功能; 实现了不同笔型,包括铅笔、圆珠笔、荧光笔等等; 可以根据不同的笔设置不同的笔宽和笔色以及虚线、点线等等功能; 实现了多种画图工具,包括不限于橡皮、笔刷子、油漆桶、部分区域颜色填充、设置字体和颜色、添加文字; 实现放大镜功能等; 添加多个资源文件,制作工具栏,设置工具栏,实现滚动条滚屏操作等; 实现保存图片、关闭保存等等功能。
3 |
--------------------------------------------------------------------------------
/ReadMe.txt:
--------------------------------------------------------------------------------
1 | ================================================================================
2 | MICROSOFT 基础类库 : WTImage 项目概述
3 | ===============================================================================
4 |
5 | 应用程序向导已为您创建了此 WTImage 应用程序。此应用程序不仅演示 Microsoft 基础类的基本使用方法,还可作为您编写应用程序的起点。
6 |
7 | 本文件概要介绍组成 WTImage 应用程序的每个文件的内容。
8 |
9 | WTImage.vcxproj
10 | 这是使用应用程序向导生成的 VC++ 项目的主项目文件,其中包含生成该文件的 Visual C++ 的版本信息,以及有关使用应用程序向导选择的平台、配置和项目功能的信息。
11 |
12 | WTImage.vcxproj.filters
13 | 这是使用“应用程序向导”生成的 VC++ 项目筛选器文件。它包含有关项目文件与筛选器之间的关联信息。在 IDE 中,通过这种关联,在特定节点下以分组形式显示具有相似扩展名的文件。例如,“.cpp”文件与“源文件”筛选器关联。
14 |
15 | WTImage.h
16 | 这是应用程序的主头文件。
17 | 其中包括其他项目特定的标头(包括 Resource.h),并声明 CWTImageApp 应用程序类。
18 |
19 | WTImage.cpp
20 | 这是包含应用程序类 CWTImageApp 的主应用程序源文件。
21 |
22 | WTImage.rc
23 | 这是程序使用的所有 Microsoft Windows 资源的列表。它包括 RES 子目录中存储的图标、位图和光标。此文件可以直接在 Microsoft Visual C++ 中进行编辑。项目资源包含在 2052 中。
24 |
25 | res\WTImage.ico
26 | 这是用作应用程序图标的图标文件。此图标包括在主资源文件 WTImage.rc 中。
27 |
28 | res\WTImage.rc2
29 | 此文件包含不在 Microsoft Visual C++ 中进行编辑的资源。您应该将不可由资源编辑器编辑的所有资源放在此文件中。
30 |
31 | /////////////////////////////////////////////////////////////////////////////
32 |
33 | 对于主框架窗口:
34 | 该项目包含一个标准的 MFC 接口。
35 |
36 | MainFrm.h, MainFrm.cpp
37 | 这些文件中包含框架类 CMainFrame,该类派生自
38 | CFrameWnd 并控制所有 SDI 框架功能。
39 |
40 | res\Toolbar.bmp
41 | 此位图文件用于为工具栏创建平铺图像。
42 | 初始工具栏和状态栏在 CMainFrame 类中构造。使用资源编辑器编辑此工具栏位图,并更新 WTImage.rc 中的 IDR_MAINFRAME TOOLBAR 数组以添加工具栏按钮。
43 | /////////////////////////////////////////////////////////////////////////////
44 |
45 | 应用程序向导创建一种文档类型和一个视图:
46 |
47 | WTImageDoc.h、WTImageDoc.cpp - 文档
48 | 这些文件包含 CWTImageDoc 类。编辑这些文件以添加特殊文档数据并实现文件保存和加载(通过 CWTImageDoc::Serialize)。
49 |
50 | WTImageView.h、WTImageView.cpp - 文档视图
51 | 这些文件包含 CWTImageView 类。
52 | CWTImageView 对象用于查看 CWTImageDoc 对象。
53 |
54 |
55 |
56 |
57 | /////////////////////////////////////////////////////////////////////////////
58 |
59 | 其他功能:
60 |
61 | ActiveX 控件
62 | 该应用程序包含对使用 ActiveX 控件的支持。
63 |
64 | 打印和打印预览支持
65 | 应用程序向导通过从 MFC 库调用 CView 类中的成员函数生成代码,来处理打印、打印设置和打印预览命令。
66 |
67 | /////////////////////////////////////////////////////////////////////////////
68 |
69 | 其他标准文件:
70 |
71 | StdAfx.h, StdAfx.cpp
72 | 这些文件用于生成名为 WTImage.pch 的预编译头 (PCH) 文件和名为 StdAfx.obj 的预编译类型文件。
73 |
74 | Resource.h
75 | 这是标准头文件,可用于定义新的资源 ID。Microsoft Visual C++ 将读取并更新此文件。
76 |
77 | WTImage.manifest
78 | Windows XP 使用应用程序清单文件来描述特定版本的并行程序集的应用程序依赖项。加载程序使用这些信息来从程序集缓存中加载相应的程序集,并保护其不被应用程序访问。应用程序清单可能会包含在内,以作为与应用程序可执行文件安装在同一文件夹中的外部 .manifest 文件进行重新分发,它还可能以资源的形式包含在可执行文件中。
79 | /////////////////////////////////////////////////////////////////////////////
80 |
81 | 其他注释:
82 |
83 | 应用程序向导使用“TODO:”来指示应添加或自定义的源代码部分。
84 |
85 | 如果应用程序使用共享 DLL 中的 MFC,您将需要重新分发 MFC DLL。如果应用程序所使用的语言与操作系统的区域设置不同,则还需要重新分发相应的本地化资源 mfc110XXX.DLL。
86 | 有关上述话题的更多信息,请参见 MSDN 文档中有关重新分发 Visual C++ 应用程序的部分。
87 |
88 | /////////////////////////////////////////////////////////////////////////////
89 |
--------------------------------------------------------------------------------
/Resource.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/Resource.h
--------------------------------------------------------------------------------
/SettingDlg.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/SettingDlg.cpp
--------------------------------------------------------------------------------
/SettingDlg.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/SettingDlg.h
--------------------------------------------------------------------------------
/Shape.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/Shape.cpp
--------------------------------------------------------------------------------
/Shape.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/Shape.h
--------------------------------------------------------------------------------
/TopFormView.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/TopFormView.cpp
--------------------------------------------------------------------------------
/TopFormView.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/TopFormView.h
--------------------------------------------------------------------------------
/WTImage.aps:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/WTImage.aps
--------------------------------------------------------------------------------
/WTImage.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/WTImage.cpp
--------------------------------------------------------------------------------
/WTImage.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/WTImage.h
--------------------------------------------------------------------------------
/WTImage.rc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/WTImage.rc
--------------------------------------------------------------------------------
/WTImage.vcxproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Debug
6 | Win32
7 |
8 |
9 | Release
10 | Win32
11 |
12 |
13 | Debug
14 | x64
15 |
16 |
17 | Release
18 | x64
19 |
20 |
21 |
22 | {B42DABD2-2DB8-4AF8-A9DA-EAD53471F351}
23 | WTImage
24 | 8.1
25 | MFCProj
26 |
27 |
28 |
29 | Application
30 | true
31 | v140
32 | Unicode
33 | Dynamic
34 |
35 |
36 | Application
37 | false
38 | v140
39 | true
40 | Unicode
41 | Dynamic
42 |
43 |
44 | Application
45 | true
46 | v140
47 | Unicode
48 | Dynamic
49 |
50 |
51 | Application
52 | false
53 | v140
54 | true
55 | Unicode
56 | Dynamic
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 | true
78 |
79 |
80 | true
81 |
82 |
83 | false
84 |
85 |
86 | false
87 |
88 |
89 |
90 | Use
91 | Level3
92 | Disabled
93 | WIN32;_WINDOWS;_DEBUG;%(PreprocessorDefinitions)
94 | true
95 |
96 |
97 | Windows
98 | true
99 |
100 |
101 | false
102 | true
103 | _DEBUG;%(PreprocessorDefinitions)
104 |
105 |
106 | 0x0804
107 | _DEBUG;%(PreprocessorDefinitions)
108 | $(IntDir);%(AdditionalIncludeDirectories)
109 |
110 |
111 |
112 |
113 | Use
114 | Level3
115 | Disabled
116 | _WINDOWS;_DEBUG;%(PreprocessorDefinitions)
117 | true
118 |
119 |
120 | Windows
121 | true
122 |
123 |
124 | false
125 | true
126 | _DEBUG;%(PreprocessorDefinitions)
127 |
128 |
129 | 0x0804
130 | _DEBUG;%(PreprocessorDefinitions)
131 | $(IntDir);%(AdditionalIncludeDirectories)
132 |
133 |
134 |
135 |
136 | Level3
137 | Use
138 | MaxSpeed
139 | true
140 | true
141 | WIN32;_WINDOWS;NDEBUG;%(PreprocessorDefinitions)
142 | true
143 |
144 |
145 | Windows
146 | true
147 | true
148 | true
149 |
150 |
151 | false
152 | true
153 | NDEBUG;%(PreprocessorDefinitions)
154 |
155 |
156 | 0x0804
157 | NDEBUG;%(PreprocessorDefinitions)
158 | $(IntDir);%(AdditionalIncludeDirectories)
159 |
160 |
161 |
162 |
163 | Level3
164 | Use
165 | MaxSpeed
166 | true
167 | true
168 | _WINDOWS;NDEBUG;%(PreprocessorDefinitions)
169 | true
170 |
171 |
172 | Windows
173 | true
174 | true
175 | true
176 |
177 |
178 | false
179 | true
180 | NDEBUG;%(PreprocessorDefinitions)
181 |
182 |
183 | 0x0804
184 | NDEBUG;%(PreprocessorDefinitions)
185 | $(IntDir);%(AdditionalIncludeDirectories)
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 | Create
217 | Create
218 | Create
219 | Create
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 |
--------------------------------------------------------------------------------
/WTImage.vcxproj.filters:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF}
6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx
7 |
8 |
9 | {93995380-89BD-4b04-88EB-625FBE52EBFB}
10 | h;hh;hpp;hxx;hm;inl;inc;xsd
11 |
12 |
13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01}
14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms
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 |
--------------------------------------------------------------------------------
/WTImage.vcxproj.user:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | false
5 |
6 |
--------------------------------------------------------------------------------
/WTImageDoc.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/WTImageDoc.cpp
--------------------------------------------------------------------------------
/WTImageDoc.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/WTImageDoc.h
--------------------------------------------------------------------------------
/WTImageView.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/WTImageView.cpp
--------------------------------------------------------------------------------
/WTImageView.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/WTImageView.h
--------------------------------------------------------------------------------
/image/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/image/1.jpg
--------------------------------------------------------------------------------
/image/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/image/2.jpg
--------------------------------------------------------------------------------
/res/Toolbar.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/res/Toolbar.bmp
--------------------------------------------------------------------------------
/res/WTImage.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/res/WTImage.ico
--------------------------------------------------------------------------------
/res/WTImage.rc2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/res/WTImage.rc2
--------------------------------------------------------------------------------
/res/WTImageDoc.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/res/WTImageDoc.ico
--------------------------------------------------------------------------------
/res/bmp00001.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/res/bmp00001.bmp
--------------------------------------------------------------------------------
/res/bmp00002.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/res/bmp00002.bmp
--------------------------------------------------------------------------------
/res/bmp00003.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/res/bmp00003.bmp
--------------------------------------------------------------------------------
/res/cur00001.cur:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/res/cur00001.cur
--------------------------------------------------------------------------------
/res/cur00002.cur:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/res/cur00002.cur
--------------------------------------------------------------------------------
/res/cursor1.cur:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/res/cursor1.cur
--------------------------------------------------------------------------------
/res/cursor2.cur:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/res/cursor2.cur
--------------------------------------------------------------------------------
/res/toolbar1.bmp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/res/toolbar1.bmp
--------------------------------------------------------------------------------
/stdafx.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/stdafx.cpp
--------------------------------------------------------------------------------
/stdafx.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/stdafx.h
--------------------------------------------------------------------------------
/targetver.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/JeffCheng95/Draw_Image/ecd204d92e7445163f4f6de77df394e1aad90bc8/targetver.h
--------------------------------------------------------------------------------