mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 05:33:25 +00:00

- Allow the prop sheet to control services - Add exe path to prop sheet - Only update the listview item itself when changing a service state svn path=/trunk/; revision=20953
98 lines
2.7 KiB
C
98 lines
2.7 KiB
C
#define IDC_STATIC -1
|
|
|
|
/* about box info */
|
|
#define IDD_ABOUTBOX 200
|
|
#define IDC_LICENSE_EDIT 201
|
|
#define IDS_LICENSE 202
|
|
|
|
#define IDC_SERVLIST 1000
|
|
#define IDC_TOOLBAR 1001
|
|
#define IDC_STATUSBAR 1002
|
|
|
|
#define ID_PROP 2000
|
|
#define ID_REFRESH 2001
|
|
#define ID_EXPORT 2002
|
|
#define ID_START 2003
|
|
#define ID_STOP 2004
|
|
#define ID_PAUSE 2005
|
|
#define ID_RESUME 2006
|
|
#define ID_RESTART 2007
|
|
#define ID_NEW 2008
|
|
#define ID_HELP 2009
|
|
#define ID_EXIT 2010
|
|
|
|
#define IDR_MAINMENU 102
|
|
#define IDR_POPUP 103
|
|
#define ID_VIEW_CUSTOMIZE 4021
|
|
#define ID_ABOUT 4031
|
|
|
|
/* List view columns */
|
|
#define IDS_FIRSTCOLUMN 1
|
|
#define IDS_SECONDCOLUMN 2
|
|
#define IDS_THIRDCOLUMN 3
|
|
#define IDS_FOURTHCOLUMN 4
|
|
#define IDS_FITHCOLUMN 5
|
|
|
|
/* tooltips */
|
|
#define IDS_TOOLTIP_PROP 6000
|
|
#define IDS_TOOLTIP_REFRESH 6001
|
|
#define IDS_TOOLTIP_EXPORT 6002
|
|
#define IDS_TOOLTIP_START 6003
|
|
#define IDS_TOOLTIP_STOP 6004
|
|
#define IDS_TOOLTIP_PAUSE 6005
|
|
#define IDS_TOOLTIP_RESTART 6006
|
|
#define IDS_TOOLTIP_NEW 6007
|
|
#define IDS_TOOLTIP_HELP 6008
|
|
#define IDS_TOOLTIP_EXIT 6009
|
|
|
|
#define IDS_SERVICES_STARTED 5000
|
|
#define IDS_SERVICES_STOPPED 5001
|
|
#define IDS_SERVICES_AUTO 5004
|
|
#define IDS_SERVICES_MAN 5005
|
|
#define IDS_SERVICES_DIS 5006
|
|
#define IDS_NUM_SERVICES 5010
|
|
|
|
#define IDI_SM_ICON 50
|
|
#define IDB_BUTTONS 51
|
|
|
|
/* toolbar buttons */
|
|
#define TBICON_PROP 0
|
|
#define TBICON_REFRESH 1
|
|
#define TBICON_EXPORT 2
|
|
#define TBICON_NEW 3
|
|
#define TBICON_START 4
|
|
#define TBICON_STOP 5
|
|
#define TBICON_PAUSE 6
|
|
#define TBICON_RESTART 7
|
|
#define TBICON_HELP 8
|
|
#define TBICON_EXIT 9
|
|
|
|
/* properties dialog */
|
|
#define IDS_PROP_SHEET 10000
|
|
#define IDD_DLG_GENERAL 10001
|
|
#define IDC_SERV_NAME 10041
|
|
#define IDC_DISP_NAME 10051
|
|
#define IDC_DESCRIPTION 10061
|
|
#define IDC_EXEPATH 10062
|
|
#define IDC_START_TYPE 10101
|
|
#define IDC_SERV_STATUS 10121
|
|
#define IDC_START 10131
|
|
#define IDC_STOP 10141
|
|
#define IDC_PAUSE 10151
|
|
#define IDC_RESUME 10161
|
|
#define IDC_START_PARAM 10191
|
|
|
|
#define IDD_DLG_DEPEND 20001
|
|
#define IDC_DEPEND_TREE1 20002
|
|
#define IDC_DEPEND_TREE2 20003
|
|
#define IDC_DEPEND_SERVICE 20004
|
|
|
|
|
|
/* create service dialog */
|
|
#define IDD_DLG_CREATE 8000
|
|
#define IDC_CREATE_SERVNAME 8001
|
|
#define IDC_CREATE_DISPNAME 8002
|
|
#define IDC_CREATE_PATH 8003
|
|
#define IDC_CREATE_DESC 8004
|
|
#define IDC_CREATE_OPTIONS 8005
|
|
#define ID_CREATE_HELP 8006
|