mirror of
https://github.com/reactos/reactos.git
synced 2025-01-11 16:51:06 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
53 lines
1.3 KiB
C
53 lines
1.3 KiB
C
#ifndef __SHIMGVW_RESOURCE_H
|
|
#define __SHIMGVW_RESOURCE_H
|
|
|
|
/* Icons */
|
|
#define IDI_APPICON 1
|
|
#define IDI_BMP_ICON 2
|
|
#define IDI_GIF_ICON 3
|
|
#define IDI_JPG_ICON 4
|
|
#define IDI_PNG_ICON 5
|
|
|
|
#define IDB_PREVICON 50
|
|
#define IDB_NEXTICON 51
|
|
#define IDB_ZOOMPICON 52
|
|
#define IDB_ZOOMMICON 53
|
|
#define IDB_SAVEICON 54
|
|
#define IDB_PRINTICON 55
|
|
#define IDB_ROT1ICON 56
|
|
#define IDB_ROT2ICON 57
|
|
|
|
/* ToolBar buttons */
|
|
#define IDC_PREV 500
|
|
#define IDC_NEXT 501
|
|
#define IDC_ZOOMP 502
|
|
#define IDC_ZOOMM 503
|
|
#define IDC_SAVE 504
|
|
#define IDC_PRINT 505
|
|
#define IDC_ROT1 506
|
|
#define IDC_ROT2 507
|
|
|
|
#define TBICON_PREV 0
|
|
#define TBICON_NEXT 1
|
|
#define TBICON_ZOOMP 2
|
|
#define TBICON_ZOOMM 3
|
|
#define TBICON_SAVE 4
|
|
#define TBICON_PRINT 5
|
|
#define TBICON_ROT1 6
|
|
#define TBICON_ROT2 7
|
|
|
|
/* Strings */
|
|
#define IDS_APPTITLE 100
|
|
#define IDS_SETASDESKBG 101
|
|
|
|
/* Tooltips strings */
|
|
#define IDS_TOOLTIP_NEXT_PIC 300
|
|
#define IDS_TOOLTIP_PREV_PIC 301
|
|
#define IDS_TOOLTIP_ZOOM_IN 302
|
|
#define IDS_TOOLTIP_ZOOM_OUT 304
|
|
#define IDS_TOOLTIP_ROT_CLOCKW 305
|
|
#define IDS_TOOLTIP_ROT_COUNCW 306
|
|
#define IDS_TOOLTIP_PRINT 307
|
|
#define IDS_TOOLTIP_SAVEAS 308
|
|
|
|
#endif /* __SHIMGVW_RESOURCE_H */
|