2011-07-26 18:01:29 +02:00
|
|
|
#ifdef _GENERAL_CONFIG
|
|
|
|
|
|
|
|
/* enable external commands (defined below)? 0 = off, 1 = on: */
|
|
|
|
enum { EXT_COMMANDS = 0 };
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#ifdef _WINDOW_CONFIG
|
|
|
|
|
|
|
|
/* default window dimensions (overwritten via -g option): */
|
2011-07-22 14:49:06 +02:00
|
|
|
enum { WIN_WIDTH = 800, WIN_HEIGHT = 600 };
|
2011-01-17 14:57:59 +01:00
|
|
|
|
2011-07-26 18:01:29 +02:00
|
|
|
/* default color for window background: *
|
|
|
|
* (see X(7) "COLOR NAMES" section for valid values) */
|
2011-07-26 23:58:31 +02:00
|
|
|
static const char * const BG_COLOR = "#777777";
|
2011-07-26 18:01:29 +02:00
|
|
|
/* default color for thumbnail selection: */
|
2011-07-26 23:58:31 +02:00
|
|
|
static const char * const SEL_COLOR = "#DDDDDD";
|
2011-01-17 14:57:59 +01:00
|
|
|
|
2011-07-26 18:01:29 +02:00
|
|
|
#endif
|
|
|
|
#ifdef _IMAGE_CONFIG
|
|
|
|
|
|
|
|
/* how should images be scaled when they are loaded?: *
|
|
|
|
* (also controllable via -d/-s/-Z/-z options) *
|
|
|
|
* SCALE_DOWN: 100%, but fit large images into window, *
|
|
|
|
* SCALE_FIT: fit all images into window, *
|
|
|
|
* SCALE_ZOOM: use current zoom level, 100% at startup */
|
2011-07-22 14:49:06 +02:00
|
|
|
static const scalemode_t SCALE_MODE = SCALE_DOWN;
|
2011-01-17 14:57:59 +01:00
|
|
|
|
2011-07-26 18:01:29 +02:00
|
|
|
/* levels (percent) to use when zooming via '-' and '+': */
|
2011-01-21 10:29:31 +01:00
|
|
|
static const float zoom_levels[] = {
|
|
|
|
12.5, 25.0, 50.0, 75.0,
|
|
|
|
100.0, 150.0, 200.0, 400.0, 800.0
|
|
|
|
};
|
2011-02-16 16:47:12 +01:00
|
|
|
|
2011-07-26 18:01:29 +02:00
|
|
|
#endif
|
|
|
|
#ifdef _THUMBS_CONFIG
|
|
|
|
|
|
|
|
/* default dimension of thumbnails (width == height): */
|
2011-07-22 14:49:06 +02:00
|
|
|
enum { THUMB_SIZE = 60 };
|
2011-03-09 10:08:43 +01:00
|
|
|
|
2011-07-26 18:01:29 +02:00
|
|
|
#endif
|
|
|
|
#ifdef _MAPPINGS_CONFIG
|
|
|
|
|
|
|
|
/* keyboard mappings for image and thumbnail mode: */
|
|
|
|
static const keymap_t keys[] = {
|
|
|
|
/* key function argument */
|
|
|
|
{ XK_q, quit, None },
|
|
|
|
{ XK_r, reload, None },
|
|
|
|
{ XK_f, toggle_fullscreen, None },
|
|
|
|
{ XK_a, toggle_antialias, None },
|
|
|
|
{ XK_A, toggle_alpha, None },
|
|
|
|
{ XK_Return, switch_mode, None },
|
|
|
|
|
|
|
|
{ XK_g, first, None },
|
|
|
|
{ XK_G, last, None },
|
|
|
|
{ XK_n, navigate, +1 },
|
|
|
|
{ XK_space, navigate, +1 },
|
|
|
|
{ XK_p, navigate, -1 },
|
|
|
|
{ XK_BackSpace, navigate, -1 },
|
|
|
|
{ XK_bracketright, navigate, +10 },
|
|
|
|
{ XK_bracketleft, navigate, -10 },
|
|
|
|
|
|
|
|
{ XK_D, remove_image, None },
|
2011-04-14 12:00:35 +02:00
|
|
|
|
2011-07-26 18:01:29 +02:00
|
|
|
{ XK_h, move, DIR_LEFT },
|
|
|
|
{ XK_Left, move, DIR_LEFT },
|
|
|
|
{ XK_j, move, DIR_DOWN },
|
|
|
|
{ XK_Down, move, DIR_DOWN },
|
|
|
|
{ XK_k, move, DIR_UP },
|
|
|
|
{ XK_Up, move, DIR_UP },
|
|
|
|
{ XK_l, move, DIR_RIGHT },
|
|
|
|
{ XK_Right, move, DIR_RIGHT },
|
|
|
|
|
2011-08-05 10:17:36 +02:00
|
|
|
{ XK_braceleft, pan_screen, DIR_LEFT },
|
|
|
|
{ XK_Next, pan_screen, DIR_DOWN },
|
|
|
|
{ XK_Prior, pan_screen, DIR_UP },
|
|
|
|
{ XK_braceright, pan_screen, DIR_RIGHT },
|
2011-07-26 18:01:29 +02:00
|
|
|
|
|
|
|
{ XK_H, pan_edge, DIR_LEFT },
|
|
|
|
{ XK_J, pan_edge, DIR_DOWN },
|
|
|
|
{ XK_K, pan_edge, DIR_UP },
|
|
|
|
{ XK_L, pan_edge, DIR_RIGHT },
|
|
|
|
|
|
|
|
{ XK_plus, zoom, +1 },
|
|
|
|
{ XK_equal, zoom, +1 },
|
|
|
|
{ XK_KP_Add, zoom, +1 },
|
|
|
|
{ XK_minus, zoom, -1 },
|
|
|
|
{ XK_KP_Subtract, zoom, -1 },
|
|
|
|
{ XK_0, zoom, 0 },
|
|
|
|
{ XK_KP_0, zoom, 0 },
|
|
|
|
{ XK_w, fit_to_win, None },
|
|
|
|
{ XK_W, fit_to_img, None },
|
|
|
|
|
|
|
|
{ XK_less, rotate, DIR_LEFT },
|
|
|
|
{ XK_greater, rotate, DIR_RIGHT },
|
|
|
|
};
|
|
|
|
|
|
|
|
/* external commands and corresponding key mappings: */
|
2011-04-14 12:00:35 +02:00
|
|
|
static const command_t commands[] = {
|
2011-07-26 18:01:29 +02:00
|
|
|
/* ctrl-... reload? command, '#' is replaced by filename */
|
|
|
|
{ XK_comma, True, "jpegtran -rotate 270 -copy all -outfile # #" },
|
|
|
|
{ XK_period, True, "jpegtran -rotate 90 -copy all -outfile # #" },
|
|
|
|
{ XK_less, True, "mogrify -rotate -90 #" },
|
|
|
|
{ XK_greater, True, "mogrify -rotate +90 #" }
|
|
|
|
};
|
|
|
|
|
|
|
|
/* mouse button mappings for image mode: */
|
|
|
|
static const button_t buttons[] = {
|
|
|
|
/* modifier button function argument */
|
|
|
|
{ None, Button1, navigate, +1 },
|
|
|
|
{ None, Button3, navigate, -1 },
|
|
|
|
{ None, Button2, drag, None },
|
|
|
|
{ None, Button4, move, DIR_UP },
|
|
|
|
{ None, Button5, move, DIR_DOWN },
|
|
|
|
{ ShiftMask, Button4, move, DIR_LEFT },
|
|
|
|
{ ShiftMask, Button5, move, DIR_RIGHT },
|
|
|
|
{ ControlMask, Button4, zoom, +1 },
|
|
|
|
{ ControlMask, Button5, zoom, -1 },
|
2011-04-14 12:00:35 +02:00
|
|
|
};
|
2011-07-26 18:01:29 +02:00
|
|
|
|
|
|
|
#endif
|