-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.h
More file actions
348 lines (330 loc) · 15.4 KB
/
Copy pathresources.h
File metadata and controls
348 lines (330 loc) · 15.4 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
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
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
217
218
219
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
#ifndef RESOURCES_H
#define RESOURCES_H
// Windows include
#include <windows.h>
// Icons
#define IDI_MAINICON 100
#define IDI_EDITICON 101
// Accelerators
#define IDR_ACCELERATORS 200
#define ID_ACC_TAB 201
#define ID_ACC_ALTF4 202
#define ID_ACC_F1 203
#define ID_ACC_CTRLN 204
#define ID_ACC_ENTER 205
#define ID_ACC_DEL 206
#define ID_ACC_F5 207
#define ID_ACC_CTRLA 208
#define ID_ACC_CTRLS 209
#define ID_ACC_CTRLD 210
#define ID_ACC_CTRLI 211
#define ID_ACC_CTRLE 212
// Main window menu
#define IDR_MENU_MAIN 300
#define ID_FILE_NEW 301
#define ID_FILE_OPEN 302
#define ID_FILE_RELOAD 303
#define ID_FILE_DELETE 304
#define ID_FILE_IMPORT 305
#define ID_FILE_EXPORT 306
#define ID_FILE_EXIT 307
#define ID_EDIT_SELECTALL 308
#define ID_OPTIONS_PREFERENCES 309
#define ID_OPTIONS_CONNECTION 310
#define ID_OPTIONS_CREDENTIALS 311
#define ID_HELP_HELP 312
#define ID_HELP_HOWTO 313
#define ID_HELP_ABOUT 314
// Edit window menu
#define IDR_MENU_EDIT 400
#define ID_EW_FILE_ADDUP 401
#define ID_EW_FILE_PROPERTIES 402
#define ID_EW_FILE_TONEWNOTE 403
#define ID_EW_EDIT_UNDO 404
#define ID_EW_EDIT_CUT 405
#define ID_EW_EDIT_COPY 406
#define ID_EW_EDIT_PASTE 407
#define ID_EW_EDIT_CLEAR 408
#define ID_EW_EDIT_SELECTALL 409
// Note information dialog
#define IDD_NOTEINFO 500
#define IDC_EDITICONSTATIC 501
#define IDC_LOCKBUTTON 502
#define IDC_UNLOCKBUTTON 503
#define IDC_NOTEIDLABELSTATIC 504
#define IDC_NOTEADDDATELABELSTATIC 505
#define IDC_NOTEADDEDUSINGLABELSTATIC 506
#define IDC_NOTELASTMODLABELSTATIC 507
#define IDC_NOTELASTMODUSINGLABELSTATIC 508
#define IDC_NOTENAMESTATIC 509
#define IDC_NOTEIDSTATIC 510
#define IDC_NOTEADDDATESTATIC 511
#define IDC_NOTEADDEDUSINGSTATIC 512
#define IDC_NOTELASTMODSTATIC 513
#define IDC_NOTELASTMODUSINGSTATIC 514
// Program information dialog
#define IDD_APPINFO 600
#define IDC_MAINICONSTATIC 601
#define IDC_APPNAMESTATIC 602
#define IDC_SIXTEENVERSIONSTATIC 603
#define IDC_PROJECTSTATIC 604
#define IDC_AUTHORSTATIC 605
#define IDC_LIBSUSEDSTATIC 606
#define IDC_JSONPARSERSTATIC 607
#define IDC_UTF8DECODESTATIC 608
#define IDC_UTF8ENCODESTATIC 609
#define IDC_BZIP2STATIC 610
#define IDC_AUTHORCOPYRIGHTSTATIC 611
// Preferences dialog
#define IDD_PREFERENCES 700
#define IDC_SYSDISPRADIO 701
#define IDC_MAINDISPASRADIO 702
#define IDC_MAINWINDISPCOMBO 703
#define IDC_EDITDISPASMAINRADIO 704
#define IDC_EDITDISPASRADIO 705
#define IDC_EDITWINDISPCOMBO 706
#define IDC_AUTORELOADCHECK 707
#define IDC_USE3DCONTROLSCHECK 708
#define IDC_BUTTONSCHECK 709
#define IDC_LISTSCHECK 710
#define IDC_EDITSCHECK 711
#define IDC_COMBOSCHECK 712
#define IDC_DIALOGSCHECK 713
#define IDC_REFRESHONADDCHECK 714
#define IDC_SAVEWINPOSCHECK 715
#define IDC_LANGUAGECOMBO 716
#define IDC_CODEPAGECOMBO 717
#define IDC_MULTIIDSNLMCHECK 718
#define IDC_BUILDINFOSTATIC 719
#define IDC_MAINWINDOWSTATIC 720
#define IDC_EDITWINDOWSTATIC 721
#define IDC_REGIONALSTATIC 722
#define IDC_LANGUAGESTATIC 723
#define IDC_CODEPAGESTATIC 724
#define IDC_MISCSTATIC 725
// Connection dialog
#define IDD_CONNECTION 800
#define IDC_COMPRESSIONCHECK 801
#define IDC_ADDRESSEDIT 802
#define IDC_PORTEDIT 803
#define IDC_SHAREEDIT 804
#define IDC_TESTBUTTON 805
#define IDC_SERVERNAMESTATIC 806
#define IDC_SERVERTIMEZONESTATIC 807
#define IDC_SERVERVERSIONSTATIC 808
#define IDC_CONNECTIONSETTINGSSTATIC 809
#define IDC_ADDRESSSTATIC 810
#define IDC_PORTSTATIC 811
#define IDC_SHARESTATIC 812
#define IDC_SERVERINFOSTATIC 813
#define IDC_SERVERNAMELABELSTATIC 814
#define IDC_SERVERTIMEZONELABELSTATIC 815
#define IDC_SERVERVERSIONLABELSTATIC 816
// Credentials dialog
#define IDD_CREDENTIALS 900
#define IDC_USERNAMEEDIT 901
#define IDC_REGISTERBUTTON 902
#define IDC_PASSWORDEDIT 903
#define IDC_TESTBUTTON2 904
#define IDC_USERIDSTATIC 905
#define IDC_USERREGDATESTATIC 906
#define IDC_USERREGUSINGSTATIC 907
#define IDC_USERLASTMODSTATIC 908
#define IDC_USERLASTMODUSINGSTATIC 909
#define IDC_ACCDELETEBUTTON 910
#define IDC_PASSCHANGEBUTTON 911
#define IDC_CREDENTIALSSTATIC 912
#define IDC_USERNAMESTATIC 913
#define IDC_PASSWORDSTATIC 914
#define IDC_USERINFOSTATIC 915
#define IDC_USERIDLABELSTATIC 916
#define IDC_USERREGDATELABELSTATIC 917
#define IDC_USERREGUSINGLABELSTATIC 918
#define IDC_USERLASTMODLABELSTATIC 919
#define IDC_USERLASTMODUSINGLABELSTATIC 920
// User registration dialog
#define IDD_REGISTRATION 1000
#define IDC_REGUSERNAMEEDIT 1001
#define IDC_REGPASSWORDEDIT 1002
#define IDC_REGPSREPEATEDIT 1003
#define IDC_REGUSERNAMESTATIC 1004
#define IDC_REGPASSWORDSTATIC 1005
#define IDC_REGPSREPEATSTATIC 1006
#define IDC_TERMSSTATIC 1007
// User account delete dialog
#define IDD_ACCDELETE 1100
#define IDC_ACCREMPASSWORDSTATIC 1101
#define IDC_ACCREMPASSWORDEDIT 1102
// User password change dialog
#define IDD_PASSCHANGE 1200
#define IDC_OLDPASSWORDEDIT 1201
#define IDC_NEWPASSWORDEDIT 1202
#define IDC_NEWPSREPEATEDIT 1203
#define IDC_OLDPASSWORDSTATIC 1204
#define IDC_NEWPASSWORDSTATIC 1205
#define IDC_NEWPSREPEATSTATIC 1206
// Note import dialog
// place left for IDD_IMPORT
// Note export dialog
#define IDD_EXPORT 1400
#define IDC_EXPORT 1401
#define IDC_BROWSEBUTTON 1402
#define IDC_IGNOREFILENAMECHECK 1403
#define IDC_EXPORTTOONEFILERADIO 1404
#define IDC_EXPORTTOMANYFILESRADIO 1405
#define IDC_NUMASIDSRADIO 1406
#define IDC_NUMSTARTSFROMRADIO 1407
#define IDC_PATHEDIT 1408
#define IDC_NUMSTARTSFROMEDIT 1409
#define IDC_ADDPREFIXCHECK 1410
#define IDC_ADDPREFIXEDIT 1411
#define IDC_FIRSTLINESUBJECTCHECK 1412
#define IDC_ONELINEGAPCHECK 1413
#define IDC_ADDINFOATENDCHECK 1414
#define IDC_SEPARATEINFOCHECK 1415
#define IDC_SEPARATENOTESINFILESCHECK 1416
#define IDC_CONTINUEONERRORSCHECK 1417
#define IDC_PROGRESSBARSTATIC 1418
#define IDC_PROGRESSBARBORDERSTATIC 1419
#define IDC_PATHSTATIC 1420
#define IDC_SAVESETTINGSSTATIC 1421
#define IDC_EXPORTSETTINGSSTATIC 1422
#define IDC_PROGRESSSTATIC 1423
// Library information dialog
#define IDD_LIBINFO 1500
#define IDC_DLLINFORMATION 1501
#define IDC_LIBTYPE 1502
#define IDC_LIBLINE1 1503
#define IDC_LIBLINE2 1504
#define IDC_LIBLINE3 1505
#define IDC_LIBLINE4 1506
#define IDC_LIBTYPEDATA 1507
#define IDC_LIBLINE1DATA 1508
#define IDC_LIBLINE2DATA 1509
#define IDC_LIBLINE3DATA 1510
#define IDC_LIBLINE4DATA 1511
// String table constants
#define IDS_HELPFILE 3000
#define IDS_APPNAME 3001
#define IDS_USER_AGENT 3002
#define IDS_STRING_BUILTIN_LANGUAGE 3003
#define IDS_STRING_NEW_NOTE 3004
#define IDS_STRING_WRONG_RESPONSE 3005
#define IDS_STRING_SERVICE_DISABLED 3006
#define IDS_STRING_INTERNAL_SERVER_ERROR 3007
#define IDS_STRING_NOTE_ALREADY_UNLOCKED 3008
#define IDS_STRING_NOTE_ALREADY_LOCKED 3009
#define IDS_STRING_NOTE_LOCKED 3010
#define IDS_STRING_USER_REMOVAL_FAILURE 3011
#define IDS_STRING_USER_NOT_EXISTS 3012
#define IDS_STRING_NOTE_NOT_EXISTS 3013
#define IDS_STRING_NO_NECESSARY_INFORMATION 3014
#define IDS_STRING_USER_DEACTIVATED 3015
#define IDS_STRING_LOGIN_INCORRECT 3016
#define IDS_STRING_UNKNOWN_ACTION 3017
#define IDS_STRING_NO_CREDENTIALS 3018
#define IDS_STRING_USER_EXISTS 3019
#define IDS_STRING_NO_USABLE_INFORMATION 3020
#define IDS_STRING_INVALID_METHOD 3021
#define IDS_STRING_INFO_OK 3022
#define IDS_STRING_INFO_USER_CREATED 3023
#define IDS_STRING_INFO_USER_UPDATED 3024
#define IDS_STRING_INFO_USER_REMOVED 3025
#define IDS_STRING_INFO_LIST_SUCCESSFUL 3026
#define IDS_STRING_INFO_NOTE_RETRIEVED 3027
#define IDS_STRING_INFO_NOTE_CREATED 3028
#define IDS_STRING_INFO_NOTE_UPDATED 3029
#define IDS_STRING_INFO_NOTE_DELETED 3030
#define IDS_STRING_INFO_USER_INFO_RETRIEVED 3031
#define IDS_STRING_INFO_NOTE_LOCKED 3032
#define IDS_STRING_INFO_NOTE_UNLOCKED 3033
#define IDS_STRING_UNKNOWN_ERROR 3034
#define IDS_STRING_ADD 3035
#define IDS_STRING_UPDATE 3036
#define IDS_STRING_PROPERTIES 3037
#define IDS_STRING_CLOSE 3038
#define IDS_STRING_INFORMATION 3039
#define IDS_STRING_WARNING 3040
#define IDS_STRING_ERROR 3041
#define IDS_STRING_DOWNLOAD 3042
#define IDS_STRING_CREATE 3043
#define IDS_STRING_OPEN 3044
#define IDS_STRING_DELETE 3045
#define IDS_STRING_EXIT 3046
#define IDS_STRING_NORMAL_WINDOW 3047
#define IDS_STRING_MINIMIZED_WINDOW 3048
#define IDS_STRING_MAXIMIZED_WINDOW 3049
#define IDS_STRING_ID 3050
#define IDS_STRING_LAST_CHANGED 3051
#define IDS_STRING_NOT_CHOSEN 3052
#define IDS_STRING_NOT_CONNECTED 3053
#define IDS_STRING_NOT_LOGGED_IN 3054
#define IDS_STRING_SPACED_COUNT 3055
#define IDS_STRING_SPACED_LAST_MOD_DATE 3056
#define IDS_STRING_SPACED_COMPRESSION 3057
#define IDS_STRING_LOADING_NOTE_LIST 3058
#define IDS_STRING_CREATING_EDIT_WINDOW 3059
#define IDS_STRING_DOWNLOADING_NOTE 3060
#define IDS_STRING_TO_NEW_NOTE 3061
#define IDS_STRING_MENU_ADD 3062
#define IDS_STRING_MENU_UPDATE 3063
#define IDS_STRING_EDITWIN_TITLE 3064
#define IDS_STRING_EDITWIN_ENTRY 3065
#define IDS_STRING_EDITWIN_CREATE_ERROR 3066
#define IDS_STRING_MSG_WANT_CHANGES_SAVED 3067
#define IDS_STRING_MSG_CTL3D_ERROR 3068
#define IDS_STRING_MSG_UNSUPPORTED_CHARS 3069
#define IDS_STRING_MSG_WINSOCK_ERROR 3070
#define IDS_STRING_MSG_WNDCLASS_ERROR 3071
#define IDS_STRING_MSG_WND_CREATE_ERROR 3072
#define IDS_STRING_MSG_ACCELERATORS_ERROR 3073
#define IDS_STRING_MSG_WANT_RELOAD 3074
#define IDS_STRING_MSG_WANT_NOTE_REMOVAL 3075
#define IDS_STRING_MSG_CTL3D_UNREG_ERROR 3076
#define IDS_STRING_MSG_CTL3D_CHANGE 3077
#define IDS_STRING_MSG_WRONG_PORT_NUMBER 3078
#define IDS_STRING_MSG_HOST_NOT_FOUND 3079
#define IDS_STRING_MSG_CONN_ESTABLISHED 3080
#define IDS_STRING_MSG_CONNECTION_ERROR 3081
#define IDS_STRING_MSG_CREDENTIALS_CHANGED 3082
#define IDS_STRING_MSG_LOGIN_SUCCESSFUL 3083
#define IDS_STRING_MSG_NO_CONN_SETTINGS 3084
#define IDS_STRING_MSG_ACC_DELETE_PART1 3085
#define IDS_STRING_MSG_ACC_DELETE_PART2 3086
#define IDS_STRING_MSG_REGISTRATION_SUCC 3087
#define IDS_STRING_MSG_REGISTRATION_ERROR 3088
#define IDS_STRING_MSG_PASSWORDS_NO_MATCH 3089
#define IDS_STRING_MSG_USER_SPACED 3090
#define IDS_STRING_MSG_USER_DELETED_SPACED 3091
#define IDS_STRING_MSG_WRONG_PASSWORD 3092
#define IDS_STRING_MSG_PASSWORD_CHANGED 3093
#define IDS_STRING_MSG_CODEPAGE_ERROR 3094
#define IDS_STRING_MSG_CODEPAGE_ERROR_2 3095
#define IDS_STRING_BUILD_DATE 3096
#define IDS_STRING_MSG_LIKE_TO_OPEN_SPACED 3097
#define IDS_STRING_MSG_NOTES_SPACED 3098
#define IDS_STRING_NOT_ALL_NOTES_LOADED 3099
#define IDS_STRING_MSG_WANT_NOTES_REMOVAL 3100
#define IDS_STRING_NOT_ALL_NOTES_REMOVED 3101
#define IDS_STRING_MULTIPLE_CHOSEN 3102
#define IDS_STRING_REMOVING_NOTE 3103
#define IDS_STRING_SOME_CHARACTERS 3104
#define IDS_STRING_OF_SUBJECT 3105
#define IDS_STRING_BOTH_SPACED_AND 3106
#define IDS_STRING_OF_ENTRY 3107
#define IDS_STRING_COULD_NOT_CONVERT_LOSS 3108
#define IDS_STRING_LIB_CODEPAGE_DEFINITION 3109
#define IDS_STRING_LIB_LANGUAGE_PACK 3110
#define IDS_STRING_LIB_UNKNOWN 3111
#define IDS_STRING_LIB_INFO 3112
#define IDS_STRING_LIB_TYPE 3113
#define IDS_STRING_LIB_CODEPAGE 3114
#define IDS_STRING_LIB_USES_DWORD 3115
#define IDS_STRING_LIB_YES 3116
#define IDS_STRING_LIB_NO 3117
#define IDS_STRING_LIB_REVISION 3118
#define IDS_STRING_LIB_AUTHOR 3119
#define IDS_STRING_MSG_WRONG_SERVER_ADDRESS 3120
#define IDS_STRING_MSG_WRONG_SHARE 3121
#define IDS_STRING_MSG_WRONG_USERNAME 3122
#endif