mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 09:50:02 +00:00
95 lines
2.5 KiB
C
95 lines
2.5 KiB
C
#ifndef __CPL_RESOURCE_H
|
|
#define __CPL_RESOURCE_H
|
|
|
|
/* metrics */
|
|
#define PROPSHEETWIDTH 380
|
|
#define PROPSHEETHEIGHT 228
|
|
#define PROPSHEETPADDING 6
|
|
#define SYSTEM_COLUMN (0 * PROPSHEETPADDING)
|
|
// this is not supported by the MS Resource compiler:
|
|
//#define LABELLINE(x) 0 //(((PROPSHEETPADDING + 2) * x) + (x + 2))
|
|
|
|
#define ICONSIZE 16
|
|
|
|
/* icons */
|
|
#define IDI_CPLSYSTEM 1500
|
|
#define IDI_APPICO 1501
|
|
#define IDI_INSTICO 1502
|
|
#define IDI_RECBINICO 1503
|
|
#define IDI_DOWNLOADICO 1504
|
|
#define IDI_APPINETICO 1505
|
|
#define IDI_UPDATES 1506
|
|
#define IDI_REACTOS 1507
|
|
|
|
/* menus */
|
|
#define IDR_POPUP_APP 3000
|
|
#define IDR_POPUP_UPD 3001
|
|
|
|
#define ID_APP_MODIFYREMOVE 3500
|
|
#define ID_APP_INFORMATION 3501
|
|
#define ID_UPD_REMOVE 3502
|
|
#define ID_UPD_INFORMATION 3503
|
|
|
|
/* dialogs */
|
|
#define IDD_PROPPAGEINSTALL 200
|
|
#define IDD_PROPPAGEROSSETUP 201
|
|
#define IDD_PROPPAGEADD 202
|
|
#define IDD_SHORTCUT_LOCATION 203
|
|
#define IDD_SHORTCUT_FINISH 204
|
|
#define IDD_PROPPAGEUPDATES 205
|
|
#define IDD_INFORMATION 206
|
|
|
|
/* bitmaps */
|
|
#define IDB_WATERMARK 5001
|
|
|
|
/* strings */
|
|
#define IDS_CPLSYSTEMNAME 1001
|
|
#define IDS_CPLSYSTEMDESCRIPTION 2001
|
|
#define IDS_ERROR 2002
|
|
#define IDS_UNABLEREAD_UNINSTSTR 2003
|
|
#define IDS_UNABLEOPEN_UNINSTKEY 2004
|
|
#define IDS_APPLIST 2005
|
|
#define IDS_LARGEICONS 2006
|
|
#define IDS_LIST 2007
|
|
#define IDS_DETAILS 2008
|
|
#define IDS_UPDATESLIST 2009
|
|
#define IDS_INFO_DISPNAME 2010
|
|
#define IDS_INFO_PUBLISHER 2011
|
|
#define IDS_INFO_VERSION 2012
|
|
#define IDS_INFO_CONTACT 2013
|
|
#define IDS_INFO_SUPPORTINFO 2014
|
|
#define IDS_INFO_SUPPORTPHONE 2015
|
|
#define IDS_INFO_PRODUCT_UPDATES 2016
|
|
#define IDS_INFO_COMMENTS 2017
|
|
#define IDS_INFO_REGOWNER 2018
|
|
#define IDS_INFO_PRODUCTID 2019
|
|
#define IDS_INFO_README 2020
|
|
#define IDS_CREATE_SHORTCUT 2021
|
|
#define IDS_ERROR_NOT_FOUND 2022
|
|
#define IDS_UNABLEREAD_INFORMATION 2023
|
|
#define IDS_NO_INFORMATION 2024
|
|
#define IDS_NONE_APP 2025
|
|
#define IDS_NONE_UPD 2026
|
|
|
|
/* controls */
|
|
#define IDC_INSTALL 101
|
|
#define IDC_SOFTWARELIST 102
|
|
#define IDC_ADDREMOVE 103
|
|
#define IDC_FIND_EDIT 104
|
|
#define IDC_INFO_BUTTON 105
|
|
#define IDC_VIEW_COMBO 106
|
|
#define IDC_SHORTCUT_LOCATION 107
|
|
#define IDC_SHORTCUT_BROWSE 108
|
|
#define IDC_SHORTCUT_NAME 109
|
|
#define IDC_ADD_DOWNLOAD_BUTTON 110
|
|
#define IDC_ADD_FIND_BUTTON 111
|
|
#define IDC_ADD_PROP_BUTTON 112
|
|
#define IDC_UPD_VIEW_COMBO 113
|
|
#define IDC_UPDATESLIST 114
|
|
#define IDC_UPD_FIND_EDIT 115
|
|
#define IDC_UPD_REMOVE 116
|
|
#define IDC_UPD_INFO_BUTTON 117
|
|
|
|
#endif /* __CPL_RESOURCE_H */
|
|
|
|
/* EOF */
|