mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
3926e9b3c8
If loading an image file failed, then properly handle it. The command line is rundll32 shimgvw.dll,ImageView_Fullscreen . CORE-16911
61 lines
1.4 KiB
C
61 lines
1.4 KiB
C
#pragma once
|
|
|
|
/* 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
|
|
#define IDS_NOPREVIEW 102
|
|
#define IDS_PREVIEW 550
|
|
|
|
/* Friendly File Type Names */
|
|
#define IDS_EMF_FILE 301
|
|
#define IDS_GIF_FILE 302
|
|
#define IDS_JPG_FILE 303
|
|
#define IDS_BMP_FILE 304
|
|
#define IDS_PNG_FILE 305
|
|
#define IDS_TIF_FILE 306
|
|
#define IDS_WMF_FILE 307
|
|
|
|
/* Tooltips strings */
|
|
#define IDS_TOOLTIP_NEXT_PIC 400
|
|
#define IDS_TOOLTIP_PREV_PIC 401
|
|
#define IDS_TOOLTIP_ZOOM_IN 402
|
|
#define IDS_TOOLTIP_ZOOM_OUT 404
|
|
#define IDS_TOOLTIP_ROT_CLOCKW 405
|
|
#define IDS_TOOLTIP_ROT_COUNCW 406
|
|
#define IDS_TOOLTIP_PRINT 407
|
|
#define IDS_TOOLTIP_SAVEAS 408
|