1 #pragma once 2 3 /* Icons */ 4 #define IDI_APPICON 1 5 #define IDI_BMP_ICON 2 6 #define IDI_GIF_ICON 3 7 #define IDI_JPG_ICON 4 8 #define IDI_PNG_ICON 5 9 10 #define IDB_PREVICON 50 11 #define IDB_NEXTICON 51 12 #define IDB_ZOOMPICON 52 13 #define IDB_ZOOMMICON 53 14 #define IDB_SAVEICON 54 15 #define IDB_PRINTICON 55 16 #define IDB_ROT1ICON 56 17 #define IDB_ROT2ICON 57 18 19 /* ToolBar buttons */ 20 #define IDC_PREV 500 21 #define IDC_NEXT 501 22 #define IDC_ZOOMP 502 23 #define IDC_ZOOMM 503 24 #define IDC_SAVE 504 25 #define IDC_PRINT 505 26 #define IDC_ROT1 506 27 #define IDC_ROT2 507 28 29 #define TBICON_PREV 0 30 #define TBICON_NEXT 1 31 #define TBICON_ZOOMP 2 32 #define TBICON_ZOOMM 3 33 #define TBICON_SAVE 4 34 #define TBICON_PRINT 5 35 #define TBICON_ROT1 6 36 #define TBICON_ROT2 7 37 38 /* Strings */ 39 #define IDS_APPTITLE 100 40 #define IDS_SETASDESKBG 101 41 #define IDS_PREVIEW 550 42 43 /* Friendly File Type Names */ 44 #define IDS_EMF_FILE 301 45 #define IDS_GIF_FILE 302 46 #define IDS_JPG_FILE 303 47 #define IDS_BMP_FILE 304 48 #define IDS_PNG_FILE 305 49 #define IDS_TIF_FILE 306 50 #define IDS_WMF_FILE 307 51 52 /* Tooltips strings */ 53 #define IDS_TOOLTIP_NEXT_PIC 400 54 #define IDS_TOOLTIP_PREV_PIC 401 55 #define IDS_TOOLTIP_ZOOM_IN 402 56 #define IDS_TOOLTIP_ZOOM_OUT 404 57 #define IDS_TOOLTIP_ROT_CLOCKW 405 58 #define IDS_TOOLTIP_ROT_COUNCW 406 59 #define IDS_TOOLTIP_PRINT 407 60 #define IDS_TOOLTIP_SAVEAS 408 61