-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDIALOG_NEW.h
47 lines (40 loc) · 1.1 KB
/
DIALOG_NEW.h
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
#ifndef DIALOG_NEW_H
#define DIALOG_NEW_H
#include <windows.h>
#include <stdio.h>
#define IDD_DIALOG_NEW 200
#define IDC_LABEL 201
#define IDC_WIDTH 202
#define IDC_HEIGHT 203
#define IDC_WIN_RES 204
#define IDC_EDIT_RES 205
#define IDC_CLIENT_RES 206
///icons for painttoolwnd
#define IdIconSelectArea 901
#define IdIconSelectRect 902
#define IdIconRubber 903
#define IdIconFillBucket 904
#define IdIconGetColor 905
#define IdIconLupe 906
#define IdIconPencil 907
#define IdIconBrush 908
#define IdIconSpray 909
#define IdIconText 910
#define IdIconFigures 911
#define IdIconTransparent 912
#define IdIconNoTransparent 913
#define IdIconFigureModeFrame 914
#define IdIconFigureModeFillFrame 915
#define IdIconFigureModeFill 916
#define IdIconFigureRectangle 917
#define IdIconFigureEllipse 918
#define IdIconFigureLine 919
#define IdIconFigurePolygon 920
struct DIALOGNEWRESULT
{
DIALOGNEWRESULT(int x,int y): width(x),height(y) {}
int width,height;
};
BOOL CALLBACK DIALOG_NEW_PROC( HWND, UINT, WPARAM, LPARAM );
#endif //DIALOG_NEW
//#define MAINICON 123