-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDrawSomething.h
More file actions
52 lines (43 loc) · 1.15 KB
/
DrawSomething.h
File metadata and controls
52 lines (43 loc) · 1.15 KB
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
// DrawSomething.h : main header file for the DrawSomething application
//
#pragma once
#ifndef __AFXWIN_H__
#error "include 'stdafx.h' before including this file for PCH"
#endif
#include "resource.h" // main symbols
#include "MainFrm.h"
// CDrawSomethingApp:
// See DrawSomething.cpp for the implementation of this class
//
class CDrawSomethingApp : public CWinApp
{
public:
CDrawSomethingApp();
// Overrides
public:
virtual BOOL InitInstance();
virtual int ExitInstance();
// Implementation
public:
afx_msg void OnAppAbout();
DECLARE_MESSAGE_MAP()
afx_msg void OnShapeRectangle();
afx_msg void OnShapeCircle();
afx_msg void OnShapeSquare();
afx_msg void OnShapeEllipse();
afx_msg void OnShapePolygon();
afx_msg void OnFileSave32776();
afx_msg void OnFileOpen32777();
afx_msg void ShapeColorGreen();
afx_msg void ShapeColorRed();
afx_msg void ShapeColorBlue();
afx_msg void ShapeColorYellow();
afx_msg void LineType();
afx_msg void IncrLineThickness();
afx_msg void DecrLineThickness();
afx_msg void SelectShapeObject();
afx_msg void OnEditUndo();
afx_msg void DeleteShape();
afx_msg void Connector();
};
extern CDrawSomethingApp theApp;