-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconst.h
More file actions
96 lines (60 loc) · 2.23 KB
/
const.h
File metadata and controls
96 lines (60 loc) · 2.23 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
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
/*
ORDER OF NUMBERS:
- 1x - 2x: menus
- 1xx: labels
- 2xx: buttons
- 3xx: listboxes
- 4xx: textboxes (edit)
- 5xx: checkboxes
- 6xx: radio buttons
- 7xx: comboboxes
- 7xx: toggles
- 9xx: test
*/
#include <Windows.h>
#ifndef CONST_H_
#define CONST_H_
#define SETTINGSFILENAME "settings.bin"
#define TESTIMAGE "test.jpg"
#define MAINWINDOWHEIGHT 500
#define MAINWINDOWWIDTH 600
#define SEARCHWINDOWHEIGHT 200
#define SEARCHWINDOWWIDTH 400
#define SETTINGSWINDOWHEIGHT 250
#define SETTINGSWINDOWWIDTH 400
#define IDM_FILE_HOME 10
#define IDM_FILE_CLOSE 11
/*-------------------------------*/
#define IDM_SEARCH_SEARCHBOX 12
/*-------------------------------*/
#define IDM_SETTINGS_SETTINGS 13
/*-------------------------------*/
#define IDM_ABOUT_HELP 14
#define IDM_ABOUT_ABOUT 15
/*-------------------------------*/
#define IDW_MAIN_LABEL_TITLE 100
#define IDW_MAIN_LABEL_UNAVAILABLETRENDING 101
#define IDW_PROVIDER_LABEL_WARNING 120
#define IDW_MAIN_BUTTON_SEARCH 200
#define IDW_SEARCH_BUTTON_WATCH 201
#define IDW_SEARCH_BUTTON_SEARCH 202
#define IDW_SEARCH_BUTTON_CANCEL 203
#define IDW_SEARCH_BUTTON_SELECT 204
#define IDW_SETTINGS_BUTTON_APPLY 205
#define IDW_SETTINGS_BUTTON_OK 210
#define IDW_SETTINGS_BUTTON_CANCEL 211
#define IDW_INFO_BUTTON_WATCH 220
#define IDW_INFO_BUTTON_RETURN 221
#define IDW_EPISODE_BUTTON_WATCH 230
#define IDW_SEARCH_LISTBOX_SHOW 303
#define IDW_SEARCH_LISTBOX_EPISODELIST 304
#define IDW_SEARCH_EDIT_SEARCH 402
#define IDW_NETWORK_EDIT_PORT 444
#define IDW_NETWORK_CHECKBOX_PORT 500
#define IDW_NETWORK_RADIO_HTTP 600
#define IDW_NETWORK_RADIO_HTTPS 601
#define IDW_SETTINGS_COMBOBOX_PROVIDERLIST 700
#define IDW_SETTINGS_COMBOBOX_LANGLIST 701
#define IDW_VIDEO_SYS_TOGGLE 800
#define ID_TEST 9999
#endif