- Implement the creation and removal of user accounts.
[reactos.git] / reactos / dll / cpl / usrmgr / resource.h
1 #ifndef __CPL_USRMGR_RESOURCE_H__
2 #define __CPL_USRMGR_RESOURCE_H__
3
4 #include <commctrl.h>
5
6 /* metrics */
7 #define PROPSHEETWIDTH 246
8 #define PROPSHEETHEIGHT 228
9 #define PROPSHEETPADDING 6
10
11 #define SYSTEM_COLUMN (18 * PROPSHEETPADDING)
12 #define LABELLINE(x) (((PROPSHEETPADDING + 2) * x) + (x + 2))
13
14 #define ICONSIZE 16
15
16
17 /* Icons */
18 #define IDI_USRMGR_ICON 40
19 #define IDI_USRMGR_ICON2 100 // Needed for theme compatibility with Windows.
20 #define IDI_USER 41
21 #define IDI_LOCKED_USER 42
22 #define IDI_GROUP 43
23
24
25 #define IDD_USERS 100
26 #define IDD_GROUPS 101
27 #define IDD_EXTRA 102
28
29 #define IDC_USERS_LIST 200
30
31 #define IDC_GROUPS_LIST 300
32
33 #define IDC_STATIC -1
34
35
36 /* Dialogs */
37
38 #define IDD_USER_GENERAL 310
39 #define IDC_USER_NAME 311
40 #define IDC_USER_FULLNAME 312
41 #define IDC_USER_DESCRIPTION 313
42 #define IDC_USER_PW_CHANGE 314
43 #define IDC_USER_PW_NOCHANGE 315
44 #define IDC_USER_PW_EXPIRE 316
45 #define IDC_USER_DEACTIVATE 317
46 #define IDC_USER_LOCK 318
47
48
49 #define IDD_CHANGE_PASSWORD 350
50 #define IDC_EDIT_PASSWORD1 351
51 #define IDC_EDIT_PASSWORD2 352
52
53
54 #define IDD_USER_NEW 360
55 #define IDC_USER_NEW_NAME 361
56 #define IDC_USER_NEW_FULL_NAME 362
57 #define IDC_USER_NEW_DESCRIPTION 363
58 #define IDC_USER_NEW_PASSWORD1 364
59 #define IDC_USER_NEW_PASSWORD2 365
60 #define IDC_USER_NEW_FORCE_CHANGE 366
61 #define IDC_USER_NEW_CANNOT_CHANGE 367
62 #define IDC_USER_NEW_NEVER_EXPIRES 368
63 #define IDC_USER_NEW_DISABLED 369
64
65
66 /* Strings */
67
68 #define IDS_CPLNAME 2000
69 #define IDS_CPLDESCRIPTION 2001
70
71 #define IDS_NAME 2100
72 #define IDS_FULLNAME 2101
73 #define IDS_DESCRIPTION 2102
74
75
76 /* Menus */
77
78 #define IDM_POPUP_GROUP 120
79 #define IDM_GROUP_ADD_MEMBER 121
80 #define IDM_GROUP_NEW 122
81 #define IDM_GROUP_DELETE 123
82 #define IDM_GROUP_RENAME 124
83 #define IDM_GROUP_PROPERTIES 125
84
85 #define IDM_POPUP_USER 130
86 #define IDM_USER_CHANGE_PASSWORD 131
87 #define IDM_USER_NEW 132
88 #define IDM_USER_DELETE 133
89 #define IDM_USER_RENAME 134
90 #define IDM_USER_PROPERTIES 135
91
92 #endif /* __CPL_USRMGR_RESOURCE_H__ */
93