mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 05:18:55 +00:00
ef1f939e4f
- Get rid of hardcoded path to downloader.xml, it properly gets the path now. Also changed the logic slightly: now the file is firstly being searched in the local folder, and only then in system32. - Do a Settings dialog (choose a directory where to download files to, if a user wants to remove installation files after the app has been installed), all options are stored / loaded from the registry. Only the "Update server" option does not work now. - A few GUI/designs fixes and improvements, now it looks better. - Add a button for Settings in the main waindow. - Fixed code formatting in a few places. - Change bitmap to icons on the Update and Help buttons, imho it's the proper way. - Add 3 new categories to the list. - Other misc fixes. - All translated resources are updated, so no translations are lost! svn path=/trunk/; revision=29614
66 lines
1.8 KiB
C
66 lines
1.8 KiB
C
|
|
#define IDI_MAIN 0x0
|
|
#define IDI_UPDATE 5000
|
|
#define IDI_HELP 5001
|
|
#define IDI_PROF 5002
|
|
#define IDB_UNDERLINE 0x100
|
|
#define IDB_LOGO 0x101
|
|
#define IDB_DOWNLOAD 0x102
|
|
#define IDB_UNINSTALL 0x103
|
|
#define IDB_TREEVIEW_ICON_0 0x900
|
|
#define IDB_TREEVIEW_ICON_1 0x901
|
|
#define IDB_TREEVIEW_ICON_2 0x902
|
|
#define IDB_TREEVIEW_ICON_3 0x903
|
|
#define IDB_TREEVIEW_ICON_4 0x904
|
|
#define IDB_TREEVIEW_ICON_5 0x905
|
|
#define IDB_TREEVIEW_ICON_6 0x906
|
|
#define IDB_TREEVIEW_ICON_7 0x907
|
|
#define IDB_TREEVIEW_ICON_8 0x908
|
|
#define IDB_TREEVIEW_ICON_9 0x909
|
|
#define IDB_TREEVIEW_ICON_10 0x910
|
|
#define IDB_TREEVIEW_ICON_11 0x911
|
|
#define IDB_TREEVIEW_ICON_12 0x912
|
|
#define IDB_TREEVIEW_ICON_13 0x913
|
|
#define IDD_DOWNLOAD 0x100
|
|
#define IDC_PROGRESS 0x1000
|
|
#define IDC_STATUS 0x1001
|
|
#define IDC_REMOVE 0x1002
|
|
#define IDC_DOWNLOAD_FOLDER_EDIT 0x1003
|
|
#define IDC_CHOOSE_BUTTON 0x1004
|
|
#define IDC_UPDATE_SERVER_EDIT 0x1005
|
|
#define IDC_DELINST_FILES_CHECKBOX 0x1006
|
|
|
|
#define IDS_WINDOW_TITLE 0
|
|
#define IDS_WELCOME_TITLE 1
|
|
#define IDS_WELCOME 2
|
|
#define IDS_NO_APP_TITLE 3
|
|
#define IDS_NO_APP 4
|
|
#define IDS_UPDATE_TITLE 5
|
|
#define IDS_UPDATE 6
|
|
#define IDS_HELP_TITLE 7
|
|
#define IDS_HELP 8
|
|
#define IDS_NO_APPS 9
|
|
#define IDS_CHOOSE_APP 10
|
|
#define IDS_CHOOSE_SUB 11
|
|
#define IDS_CHOOSE_CATEGORY 12
|
|
#define IDS_CHOOSE_BOTH 13
|
|
#define IDS_XMLERROR_1 14
|
|
#define IDS_XMLERROR_2 15
|
|
#define IDS_DOWNLOAD_ERROR 16
|
|
#define IDS_VERSION 17
|
|
#define IDS_LICENCE 18
|
|
#define IDS_MAINTAINER 19
|
|
#define IDS_APPS_TITLE 20
|
|
#define IDS_CATS_TITLE 21
|
|
#define IDS_CHOOSE_FOLDER 22
|
|
#define IDS_NOTCREATE_REGKEY 23
|
|
#define IDS_DOWNLOAD_FOLDER 24
|
|
#define IDS_UNABLECREATE_FOLDER 25
|
|
#define IDS_UPDATE_URL 26
|
|
|
|
#define IDD_PROF 6000
|
|
|
|
|
|
#define STRING_COUNT 20
|
|
#define MAX_STRING_LENGHT 0x100
|