-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathresource.h
56 lines (49 loc) · 1.34 KB
/
resource.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
47
48
49
50
51
52
53
54
55
56
//
// resource.h - cui resource header file
//
// cui framework, part of the liblec library
// Copyright (c) 2016 Alec Musasa (alecmus at live dot com)
//
// Released under the MIT license. For full details see the
// file LICENSE.txt
//
#pragma once
#define IDP_BOLD 1000
#define IDP_ITALIC 1001
#define IDP_UNDERLINE 1002
#define IDP_STRIKETHROUGH 1003
#define IDP_SUBSCRIPT 1004
#define IDP_SUPERSCRIPT 1005
#define IDP_LARGER 1006
#define IDP_SMALLER 1007
#define IDP_FONTCOLOR 1008
// 100% DPI
#define IDP_LEFT_ALIGN_20 1009
#define IDP_CENTER_ALIGN_20 1010
#define IDP_RIGHT_ALIGN_20 1011
#define IDP_JUSTIFY_20 1012
#define IDP_LIST_20 1013
// 125% DPI
#define IDP_LEFT_ALIGN_25 1014
#define IDP_CENTER_ALIGN_25 1015
#define IDP_RIGHT_ALIGN_25 1016
#define IDP_JUSTIFY_25 1017
#define IDP_LIST_25 1018
// 150% DPI
#define IDP_LEFT_ALIGN_30 1019
#define IDP_CENTER_ALIGN_30 1020
#define IDP_RIGHT_ALIGN_30 1021
#define IDP_JUSTIFY_30 1022
#define IDP_LIST_30 1023
// 175% DPI
#define IDP_LEFT_ALIGN_35 1024
#define IDP_CENTER_ALIGN_35 1025
#define IDP_RIGHT_ALIGN_35 1026
#define IDP_JUSTIFY_35 1027
#define IDP_LIST_35 1028
// 200% DPI (and above)
#define IDP_LEFT_ALIGN_40 1029
#define IDP_CENTER_ALIGN_40 1030
#define IDP_RIGHT_ALIGN_40 1031
#define IDP_JUSTIFY_40 1032
#define IDP_LIST_40 1033