// This file defines the key mapping for JPEGView
// Make sure not to corrupt it - else no keys are working anymore!
// It is possible to map multiple keys to the same command but not multiple commands to the same key

// This section contains the definitions of the available JPEGView commands - do not modify!
#define IDM_DONOTHING		1			// do nothing (can be used to disable a standard command for a mouse button)
#define IDM_MINIMIZE		1010			// minimize window
#define IDM_OPEN		1100			// open file
#define IDM_SAVE		1500			// save to file in original size, don't allow override without prompt
#define IDM_SAVE_SCREEN		1501			// save to file in screen size
#define IDM_SAVE_ALLOW_NO_PROMPT 1502			// save to file in original size, allow override without prompt when enabled in INI
#define IDM_RELOAD		1600			// reload image
// #define IDM_PRINT		1700			// print image
#define IDM_COPY		2000			// copy image to clipboard in screen size
#define IDM_COPY_FULL		2500			// copy image to clipboard in original size
#define IDM_PASTE		2550			// paste image from clipboard
#define IDM_BATCH_COPY		2600			// open batch copy dialog
#define IDM_RENAME		2610			// rename current file, only works when image processing panel can be shown (i.e. panel not disabled in INI and window size big enough)
#define IDM_MOVE_TO_RECYCLE_BIN	2620			// delete the current file on disk - no confirmation (by moving it to the recycle bin)
#define IDM_MOVE_TO_RECYCLE_BIN_CONFIRM 2621		// delete the current file on disk - with user confirmation (by moving it to the recycle bin)
#define IDM_MOVE_TO_RECYCLE_BIN_CONFIRM_PERMANENT_DELETE 2622 // delete the current file on disk - confirmation when no recycle bin for this drive
#define IDM_TOUCH_IMAGE		2700			// set modification time to current time
#define IDM_TOUCH_IMAGE_EXIF 	2710			// set modification time to EXIF time
#define IDM_TOUCH_IMAGE_EXIF_FOLDER 2720		// set modification time to EXIF time for all images in folder
#define IDM_SET_WALLPAPER_ORIG  2770			// Set original image file as desktop wallpaper
#define IDM_SET_WALLPAPER_DISPLAY 2774			// Set image as displayed as desktop wallpaper
#define IDM_SHOW_FILEINFO   	2800			// toggle show file and EXIF info box in top, left corner
#define IDM_SHOW_FILENAME	3000			// toggle show file name on top of screen
#define IDM_SHOW_NAVPANEL   	3100			// toggle show navigation panel
#define IDM_NEXT		4000			// go to next image
#define IDM_PREV		5000			// go to previous image
#define IDM_FIRST		5100			// go to first image
#define IDM_LAST		5200			// go to last image
#define IDM_LOOP_FOLDER		6000			// set navigation mode loop through folder
#define IDM_LOOP_RECURSIVELY 	6010			// set navigation mode loop through folder and subfolders
#define IDM_LOOP_SIBLINGS	6020			// set navigation mode loop through folders on same level
#define IDM_SORT_MOD_DATE	7000			// sorting order by modification date
#define IDM_SORT_CREATION_DATE 	7010			// sorting order by creation date
#define IDM_SORT_NAME		7020			// sorting order by name
#define IDM_SORT_RANDOM		7030			// sorting order random
#define IDM_SORT_SIZE		7040			// sorting order file size in bytes
#define IDM_SORT_UPCOUNTING	7100			// sort upcounting
#define IDM_SORT_DOWNCOUNTING	7110			// sort downcounting
#define IDM_SLIDESHOW_RESUME    7399			// resume slide show (after stop)
#define IDM_ROTATE_90		8000			// rotate image 90 deg
#define IDM_ROTATE_270		9000			// rotate image 270 deg
#define IDM_ROTATE          	9100			// show free rotation dialog
#define IDM_CHANGESIZE		9120			// show dialog to change size of image
#define IDM_PERSPECTIVE         9150			// show perpective correction dialog
#define IDM_MIRROR_H        	9200			// mirror image horizontally
#define IDM_MIRROR_V        	9300			// mirror image vertically
#define IDM_ROTATE_90_LOSSLESS  9400			// Lossless JPEG transformation: rotate image 90 deg
#define IDM_ROTATE_90_LOSSLESS_CONFIRM 9401		// Lossless JPEG transformation: rotate image 90 deg with user confirmation
#define IDM_ROTATE_270_LOSSLESS 9410			// Lossless JPEG transformation: rotate image 270 deg
#define IDM_ROTATE_270_LOSSLESS_CONFIRM 9411		// Lossless JPEG transformation: rotate image 270 deg with user confirmation
#define IDM_ROTATE_180_LOSSLESS 9420			// Lossless JPEG transformation: rotate image 180 deg
#define IDM_MIRROR_H_LOSSLESS   9430			// Lossless JPEG transformation: mirror image horizontally
#define IDM_MIRROR_V_LOSSLESS   9440			// Lossless JPEG transformation: mirror image vertically
#define IDM_AUTO_CORRECTION	10000			// toggle auto color and contrast correction
#define IDM_AUTO_CORRECTION_SECTION 10100		// auto contrast correction on visible section only
#define IDM_LDC			10500			// toggle local density correction (lighten shadows, darken highlights)
#define IDM_LANDSCAPE_MODE	10700			// toogle landscape picture enhancement mode
#define IDM_KEEP_PARAMETERS	11000			// toogle keep parameters between images
#define IDM_SAVE_PARAM_DB   	11500			// save to parameter DB
#define IDM_CLEAR_PARAM_DB  	11510			// delete from parameter DB
#define IDM_FIT_TO_SCREEN	12000			// fit image to screen
#define IDM_FILL_WITH_CROP	12001			// fit image to fill screen with crop
#define IDM_FIT_WINDOW_TO_IMAGE	12005			// toggle fit window automatically to image, avoiding black borders
#define IDM_SPAN_SCREENS	12010			// span over all screens
#define IDM_FULL_SCREEN_MODE 	12011			// toggle full screen mode
#define IDM_ZOOM_400        	12020			// zoom to 400 %
#define IDM_ZOOM_200		12030			// zoom to 200 %
#define IDM_ZOOM_100		12040			// zoom to 100 %
#define IDM_ZOOM_50		12050			// zoom to 50 %
#define IDM_ZOOM_25		12060			// zoom to 25 %
#define IDM_ZOOM_INC		12100			// zoom in
#define IDM_ZOOM_DEC		12200			// zoom out
#define IDM_AUTO_ZOOM_FIT_NO_ZOOM 12500			// set auto zoom mode fit to screen, never zoom
#define IDM_AUTO_ZOOM_FILL_NO_ZOOM 12510		// set auto zoom mode fill screen, never zoom
#define IDM_AUTO_ZOOM_FIT	12520			// set auto zoom mode fit to screen
#define IDM_AUTO_ZOOM_FILL	12530			// set auto zoom mode fill screen
#define IDM_EDIT_GLOBAL_CONFIG	12600			// edit global configuration
#define IDM_EDIT_USER_CONFIG	12610			// edit user configuration
#define IDM_BACKUP_PARAMDB	12620			// backup parameter DB
#define IDM_RESTORE_PARAMDB	12630			// restore parameter DB
#define IDM_ABOUT		12900			// show about box
#define IDM_EXIT		13000			// exit JPEGView application
#define IDM_TOGGLE		14100			// toggle between marked image and current image
#define IDM_MARK_FOR_TOGGLE	14101			// mark current image for toggling
#define IDM_COLOR_CORRECTION_INC 14200			// increase color correction amount
#define IDM_COLOR_CORRECTION_DEC 14201			// decrease color correction amount
#define IDM_CONTRAST_CORRECTION_INC 14300		// increase contrast correction amount
#define IDM_CONTRAST_CORRECTION_DEC 14301		// decrease contrast correction amount
#define IDM_CONTRAST_INC	14400			// increase contrast
#define IDM_CONTRAST_DEC	14401			// decrease contrast
#define IDM_GAMMA_INC		14500			// increase gamma (brightness)
#define IDM_GAMMA_DEC		14501			// decrease gamma (brightness)
#define IDM_LDC_SHADOWS_INC	14600			// increase lighting shadows
#define IDM_LDC_SHADOWS_DEC	14601			// decrease lighting shadows
#define IDM_LDC_HIGHLIGHTS_INC	14700			// increase darken highlights
#define IDM_LDC_HIGHLIGHTS_DEC	14701			// decrease darken highlights
#define IDM_TOGGLE_RESAMPLING_QUALITY 14800		// toggle resampling quality (between point sampling and filtering)
#define IDM_TOGGLE_MONITOR	14900			// move to other monitor
#define IDM_TOGGLE_FIT_TO_SCREEN_100_PERCENTS 15000	// toggle between fit to screen and 100 % zoom
#define IDM_TOGGLE_FILL_WITH_CROP_100_PERCENTS 15001	// toggle between fill with crop and 100 % zoom
#define IDM_EXCHANGE_PROC_PARAMS 15100			// toggle between two sets of image processing parameters
#define IDM_PAN_UP		15200			// pan up
#define IDM_PAN_DOWN		15201			// pan down
#define IDM_PAN_RIGHT		15202			// pan right
#define IDM_PAN_LEFT		15203			// pan left
#define IDM_SHARPEN_INC		15300			// increase sharpness
#define IDM_SHARPEN_DEC		15301			// decrease sharpness
#define IDM_CONTEXT_MENU	16000			// display context menu

// This section contains the key map. A small number of keys is predefined and cannot be changed:
// F1 for help, Alt+F4 for exit, 0..9 for slide show
// The following keys are recognized: 
// Alt, Ctrl, Shift, Esc, Return, Space, End, Home, Back, Tab, PgDn, PgUp
// Left, Right, Up, Down, Insert, Del, Plus, Minus, Mul, Div, Comma, Period
// A .. Z  F1 .. F12

// It is also possible to bind a command to a mouse button. Be aware that you override the default
// functionality (e.g. to pan with left mouse) when you do so! Mouse buttons can be combined with 
// Alt, Ctrl and Shift but not with other keys or other mouse buttons.
// The following mouse buttons are recognized:
// MouseL, MouseR, MouseM, MouseX1, MouseX2, MouseDblClk
// (Left, right, middle, extra mouse buttons, mouse left double click)

// Uncomment the following line if you want to exit JPEGView with the Esc key immediatly when playing an animation or a slideshow
// Esc                    IDM_EXIT
// Ctrl+Left               IDM_TOGGLE
// Ctrl+Right              IDM_TOGGLE
// Ctrl+Shift+Plus         IDM_CONTRAST_CORRECTION_INC
// Ctrl+Alt+Plus           IDM_COLOR_CORRECTION_INC
// Ctrl+Plus               IDM_CONTRAST_INC
// Shift+Plus              IDM_GAMMA_INC
// Alt+Plus                IDM_SHARPEN_INC
// Ctrl+Shift+Minus        IDM_CONTRAST_CORRECTION_DEC
// Ctrl+Alt+Minus          IDM_COLOR_CORRECTION_DEC
// Ctrl+Minus              IDM_CONTRAST_DEC
// Shift+Minus             IDM_GAMMA_DEC
// Alt+Minus               IDM_SHARPEN_DEC
// F2                      IDM_SHOW_FILEINFO
// Ctrl+F2                 IDM_SHOW_FILENAME
// F3                      IDM_TOGGLE_RESAMPLING_QUALITY
// F4                      IDM_KEEP_PARAMETERS
// F5                      IDM_AUTO_CORRECTION
// Shift+F5                IDM_AUTO_CORRECTION_SECTION
// F6                      IDM_LDC
// Shift+Ctrl+F6           IDM_LDC_HIGHLIGHTS_INC
// Ctrl+F6                 IDM_LDC_SHADOWS_INC
// Alt+Shift+F6            IDM_LDC_HIGHLIGHTS_DEC
// Alt+F6                  IDM_LDC_SHADOWS_DEC
// F7                      IDM_LOOP_FOLDER
// F8                      IDM_LOOP_RECURSIVELY
// F9                      IDM_LOOP_SIBLINGS
// F11                     IDM_FULL_SCREEN_MODE
// Ctrl+F11                IDM_FIT_WINDOW_TO_IMAGE
// F12                     IDM_SPAN_SCREENS
// Ctrl+F12                IDM_TOGGLE_MONITOR
// Space                   IDM_TOGGLE_FIT_TO_SCREEN_100_PERCENTS
// Return                  IDM_FIT_TO_SCREEN
// Ctrl+Return             IDM_FILL_WITH_CROP
// Down                    IDM_ROTATE_90
// Up                      IDM_ROTATE_270
// Shift+Up                IDM_PAN_UP
// Shift+Down              IDM_PAN_DOWN
// Shift+Left              IDM_PAN_LEFT
// Shift+Right             IDM_PAN_RIGHT
// Ctrl+Down               IDM_ZOOM_DEC
// Ctrl+Up                 IDM_ZOOM_INC
// Ctrl+X                  IDM_COPY_FULL
// C                       IDM_SORT_CREATION_DATE
// Ctrl+N                  IDM_SHOW_NAVPANEL
// N                       IDM_SORT_NAME
// Ctrl+M                  IDM_MARK_FOR_TOGGLE
// Ctrl+Shift+M            IDM_TOUCH_IMAGE
// M                       IDM_SORT_MOD_DATE
// Z                       IDM_SORT_RANDOM
// // Ctrl+S                  IDM_SAVE_ALLOW_NO_PROMPT
// Ctrl+Shift+S            IDM_SAVE_SCREEN
// S                       IDM_SAVE_PARAM_DB
// D                       IDM_CLEAR_PARAM_DB
// Ctrl+Shift+E            IDM_TOUCH_IMAGE_EXIF
// Alt+R                   IDM_SLIDESHOW_RESUME
// Ctrl+V                  IDM_PASTE
// Ctrl+L                  IDM_LANDSCAPE_MODE
// R                       IDM_ROTATE_90_LOSSLESS_CONFIRM
// T                       IDM_ROTATE_270_LOSSLESS_CONFIRM
MouseDblClk                       IDM_FULL_SCREEN_MODE
F                       IDM_FULL_SCREEN_MODE
Ctrl+Home                        IDM_AUTO_ZOOM_FILL
Ctrl+End                        IDM_AUTO_ZOOM_FIT
Ctrl+W                    IDM_EXIT
Del                    IDM_MOVE_TO_RECYCLE_BIN_CONFIRM_PERMANENT_DELETE
V                    IDM_LANDSCAPE_MODE
Space                    IDM_NEXT
Down                    IDM_PAN_DOWN
Up                      IDM_PAN_UP
PgDn                    IDM_NEXT
Right                   IDM_NEXT
Left                    IDM_PREV
PgUp                    IDM_PREV
Plus                    IDM_ZOOM_INC
Minus                   IDM_ZOOM_DEC