summaryrefslogtreecommitdiffstats
path: root/config.h
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-08-19 13:06:19 +0200
committerBert <ber.t@gmx.com>2011-08-19 13:06:19 +0200
commit1c68a34463f9eb94da9a8289b659ce02677b865f (patch)
treefe7e75eb976d1e397fefdc5e20b70111dfb527ae /config.h
parent535c18afdaceaf79759621ccaeee4ec99da9cf5d (diff)
downloadnsxiv-1c68a34463f9eb94da9a8289b659ce02677b865f.tar.zst
Renamed key/mouse commands to indicate supported modes
Diffstat (limited to 'config.h')
-rw-r--r--config.h180
1 files changed, 92 insertions, 88 deletions
diff --git a/config.h b/config.h
index dd9efe8..442b606 100644
--- a/config.h
+++ b/config.h
@@ -1,25 +1,29 @@
#ifdef _WINDOW_CONFIG
-/* default window dimensions (overwritten via -g option): */
-enum { WIN_WIDTH = 800, WIN_HEIGHT = 600 };
+/* default window dimensions (overwritten via -g option): */
+enum {
+ WIN_WIDTH = 800,
+ WIN_HEIGHT = 600
+};
-/* default color for window background: *
- * (see X(7) "COLOR NAMES" section for valid values) */
+/* default color for window background: */
static const char * const BG_COLOR = "#777777";
-/* default color for thumbnail selection: */
+/* default color for thumbnail selection: */
static const char * const SEL_COLOR = "#DDDDDD";
+/* (see X(7) section "COLOR NAMES" for valid values) */
#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 */
+/* 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
+ */
static const scalemode_t SCALE_MODE = SCALE_DOWN;
-/* levels (percent) to use when zooming via '-' and '+': */
+/* levels (percent) to use when zooming via '-' and '+': */
static const float zoom_levels[] = {
12.5, 25.0, 50.0, 75.0,
100.0, 150.0, 200.0, 400.0, 800.0
@@ -28,92 +32,92 @@ static const float zoom_levels[] = {
#endif
#ifdef _THUMBS_CONFIG
-/* default dimension of thumbnails (width == height): */
+/* default dimension of thumbnails (width == height): */
enum { THUMB_SIZE = 60 };
#endif
#ifdef _MAPPINGS_CONFIG
-/* keyboard mappings for image and thumbnail mode: */
+/* keyboard mappings for image and thumbnail mode: */
static const keymap_t keys[] = {
- /* ctrl key function argument */
- { False, XK_q, quit, (arg_t) None },
- { False, XK_r, reload, (arg_t) None },
- { False, XK_f, toggle_fullscreen, (arg_t) None },
- { False, XK_a, toggle_antialias, (arg_t) None },
- { False, XK_A, toggle_alpha, (arg_t) None },
- { False, XK_Return, switch_mode, (arg_t) None },
-
- { False, XK_g, first, (arg_t) None },
- { False, XK_G, last, (arg_t) None },
- { False, XK_n, navigate, (arg_t) +1 },
- { False, XK_space, navigate, (arg_t) +1 },
- { False, XK_p, navigate, (arg_t) -1 },
- { False, XK_BackSpace, navigate, (arg_t) -1 },
- { False, XK_bracketright, navigate, (arg_t) +10 },
- { False, XK_bracketleft, navigate, (arg_t) -10 },
-
- { False, XK_D, remove_image, (arg_t) None },
-
- { False, XK_h, move, (arg_t) DIR_LEFT },
- { False, XK_Left, move, (arg_t) DIR_LEFT },
- { False, XK_j, move, (arg_t) DIR_DOWN },
- { False, XK_Down, move, (arg_t) DIR_DOWN },
- { False, XK_k, move, (arg_t) DIR_UP },
- { False, XK_Up, move, (arg_t) DIR_UP },
- { False, XK_l, move, (arg_t) DIR_RIGHT },
- { False, XK_Right, move, (arg_t) DIR_RIGHT },
-
- { True, XK_h, pan_screen, (arg_t) DIR_LEFT },
- { True, XK_Left, pan_screen, (arg_t) DIR_LEFT },
- { True, XK_j, pan_screen, (arg_t) DIR_DOWN },
- { True, XK_Down, pan_screen, (arg_t) DIR_DOWN },
- { True, XK_k, pan_screen, (arg_t) DIR_UP },
- { True, XK_Up, pan_screen, (arg_t) DIR_UP },
- { True, XK_l, pan_screen, (arg_t) DIR_RIGHT },
- { True, XK_Right, pan_screen, (arg_t) DIR_RIGHT },
-
- { False, XK_H, pan_edge, (arg_t) DIR_LEFT },
- { False, XK_J, pan_edge, (arg_t) DIR_DOWN },
- { False, XK_K, pan_edge, (arg_t) DIR_UP },
- { False, XK_L, pan_edge, (arg_t) DIR_RIGHT },
-
- { False, XK_plus, zoom, (arg_t) +1 },
- { False, XK_equal, zoom, (arg_t) +1 },
- { False, XK_KP_Add, zoom, (arg_t) +1 },
- { False, XK_minus, zoom, (arg_t) -1 },
- { False, XK_KP_Subtract, zoom, (arg_t) -1 },
- { False, XK_0, zoom, (arg_t) None },
- { False, XK_KP_0, zoom, (arg_t) None },
- { False, XK_w, fit_to_win, (arg_t) None },
- { False, XK_W, fit_to_img, (arg_t) None },
-
- { False, XK_less, rotate, (arg_t) DIR_LEFT },
- { False, XK_greater, rotate, (arg_t) DIR_RIGHT },
-
- /* open the current image with given program: */
- { True, XK_g, open_with, (arg_t) "gimp" },
-
- /* run shell command line on the current file,
- * '#' is replaced by filename: */
- { True, XK_less, run_command, (arg_t) "mogrify -rotate -90 #" },
- { True, XK_greater, run_command, (arg_t) "mogrify -rotate +90 #" },
- { True, XK_comma, run_command, (arg_t) "jpegtran -rotate 270 -copy all -outfile # #" },
- { True, XK_period, run_command, (arg_t) "jpegtran -rotate 90 -copy all -outfile # #" },
+ /* ctrl key function argument */
+ { False, XK_q, it_quit, (arg_t) None },
+ { False, XK_Return, it_switch_mode, (arg_t) None },
+ { False, XK_f, it_toggle_fullscreen, (arg_t) None },
+
+ { False, XK_r, it_reload_image, (arg_t) None },
+ { False, XK_D, it_remove_image, (arg_t) None },
+
+ { False, XK_n, i_navigate, (arg_t) +1 },
+ { False, XK_space, i_navigate, (arg_t) +1 },
+ { False, XK_p, i_navigate, (arg_t) -1 },
+ { False, XK_BackSpace, i_navigate, (arg_t) -1 },
+ { False, XK_bracketright, i_navigate, (arg_t) +10 },
+ { False, XK_bracketleft, i_navigate, (arg_t) -10 },
+ { False, XK_g, it_first, (arg_t) None },
+ { False, XK_G, it_last, (arg_t) None },
+
+ { False, XK_h, it_move, (arg_t) DIR_LEFT },
+ { False, XK_Left, it_move, (arg_t) DIR_LEFT },
+ { False, XK_j, it_move, (arg_t) DIR_DOWN },
+ { False, XK_Down, it_move, (arg_t) DIR_DOWN },
+ { False, XK_k, it_move, (arg_t) DIR_UP },
+ { False, XK_Up, it_move, (arg_t) DIR_UP },
+ { False, XK_l, it_move, (arg_t) DIR_RIGHT },
+ { False, XK_Right, it_move, (arg_t) DIR_RIGHT },
+
+ { True, XK_h, i_pan_screen, (arg_t) DIR_LEFT },
+ { True, XK_Left, i_pan_screen, (arg_t) DIR_LEFT },
+ { True, XK_j, i_pan_screen, (arg_t) DIR_DOWN },
+ { True, XK_Down, i_pan_screen, (arg_t) DIR_DOWN },
+ { True, XK_k, i_pan_screen, (arg_t) DIR_UP },
+ { True, XK_Up, i_pan_screen, (arg_t) DIR_UP },
+ { True, XK_l, i_pan_screen, (arg_t) DIR_RIGHT },
+ { True, XK_Right, i_pan_screen, (arg_t) DIR_RIGHT },
+
+ { False, XK_H, i_pan_edge, (arg_t) DIR_LEFT },
+ { False, XK_J, i_pan_edge, (arg_t) DIR_DOWN },
+ { False, XK_K, i_pan_edge, (arg_t) DIR_UP },
+ { False, XK_L, i_pan_edge, (arg_t) DIR_RIGHT },
+
+ { False, XK_plus, i_zoom, (arg_t) +1 },
+ { False, XK_equal, i_zoom, (arg_t) +1 },
+ { False, XK_KP_Add, i_zoom, (arg_t) +1 },
+ { False, XK_minus, i_zoom, (arg_t) -1 },
+ { False, XK_KP_Subtract, i_zoom, (arg_t) -1 },
+ { False, XK_0, i_zoom, (arg_t) None },
+ { False, XK_KP_0, i_zoom, (arg_t) None },
+ { False, XK_w, i_fit_to_win, (arg_t) None },
+ { False, XK_W, i_fit_to_img, (arg_t) None },
+
+ { False, XK_less, i_rotate, (arg_t) DIR_LEFT },
+ { False, XK_greater, i_rotate, (arg_t) DIR_RIGHT },
+
+ { False, XK_a, i_toggle_antialias, (arg_t) None },
+ { False, XK_A, i_toggle_alpha, (arg_t) None },
+
+ /* open current image with given program: */
+ { True, XK_g, it_open_with, (arg_t) "gimp" },
+
+ /* run shell command line on current file ('#' is replaced by file path: */
+ { True, XK_less, it_shell_cmd, (arg_t) "mogrify -rotate -90 #" },
+ { True, XK_greater, it_shell_cmd, (arg_t) "mogrify -rotate +90 #" },
+ { True, XK_comma, it_shell_cmd, (arg_t) "jpegtran -rotate 270 -copy all -outfile # #" },
+ { True, XK_period, it_shell_cmd, (arg_t) "jpegtran -rotate 90 -copy all -outfile # #" },
};
-/* mouse button mappings for image mode: */
+/* mouse button mappings for image mode: */
static const button_t buttons[] = {
- /* ctrl shift button function argument */
- { False, False, Button1, navigate, (arg_t) +1 },
- { False, False, Button3, navigate, (arg_t) -1 },
- { False, False, Button2, drag, (arg_t) None },
- { False, False, Button4, move, (arg_t) DIR_UP },
- { False, False, Button5, move, (arg_t) DIR_DOWN },
- { False, True, Button4, move, (arg_t) DIR_LEFT },
- { False, True, Button5, move, (arg_t) DIR_RIGHT },
- { True, False, Button4, zoom, (arg_t) +1 },
- { True, False, Button5, zoom, (arg_t) -1 },
+ /* ctrl shift button function argument */
+ { False, False, Button1, i_navigate, (arg_t) +1 },
+ { False, False, Button3, i_navigate, (arg_t) -1 },
+ { False, False, Button2, i_drag, (arg_t) None },
+ { False, False, Button4, it_move, (arg_t) DIR_UP },
+ { False, False, Button5, it_move, (arg_t) DIR_DOWN },
+ { False, True, Button4, it_move, (arg_t) DIR_LEFT },
+ { False, True, Button5, it_move, (arg_t) DIR_RIGHT },
+ { True, False, Button4, i_zoom, (arg_t) +1 },
+ { True, False, Button5, i_zoom, (arg_t) -1 },
};
#endif