2013-02-08 20:52:41 +00:00
|
|
|
/* Copyright 2011 Bert Muennich
|
2011-07-26 17:01:29 +01:00
|
|
|
*
|
2013-02-08 20:52:41 +00:00
|
|
|
* This file is part of sxiv.
|
2011-08-18 00:18:26 +01:00
|
|
|
*
|
2013-02-08 20:52:41 +00:00
|
|
|
* sxiv is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published
|
|
|
|
* by the Free Software Foundation; either version 2 of the License,
|
|
|
|
* or (at your option) any later version.
|
2011-08-18 00:18:26 +01:00
|
|
|
*
|
2013-02-08 20:52:41 +00:00
|
|
|
* sxiv is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with sxiv. If not, see <http://www.gnu.org/licenses/>.
|
2011-07-26 17:01:29 +01:00
|
|
|
*/
|
|
|
|
|
2011-08-19 14:02:10 +01:00
|
|
|
#ifndef COMMANDS_H
|
|
|
|
#define COMMANDS_H
|
2011-07-26 17:01:29 +01:00
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
2011-09-11 20:01:24 +01:00
|
|
|
#include "types.h"
|
|
|
|
|
2011-08-12 16:14:14 +01:00
|
|
|
typedef void* arg_t;
|
2011-09-11 20:01:24 +01:00
|
|
|
typedef bool (*command_f)(arg_t);
|
2011-07-26 17:01:29 +01:00
|
|
|
|
|
|
|
typedef struct {
|
2011-09-11 20:01:24 +01:00
|
|
|
bool ctrl;
|
2011-07-26 17:01:29 +01:00
|
|
|
KeySym ksym;
|
2011-08-19 12:06:19 +01:00
|
|
|
command_f cmd;
|
2011-07-26 17:01:29 +01:00
|
|
|
arg_t arg;
|
|
|
|
} keymap_t;
|
|
|
|
|
|
|
|
typedef struct {
|
2011-09-11 20:01:24 +01:00
|
|
|
bool ctrl;
|
|
|
|
bool shift;
|
2011-07-26 17:01:29 +01:00
|
|
|
unsigned int button;
|
2011-08-19 12:06:19 +01:00
|
|
|
command_f cmd;
|
2011-07-26 17:01:29 +01:00
|
|
|
arg_t arg;
|
|
|
|
} button_t;
|
|
|
|
|
2011-09-11 20:01:24 +01:00
|
|
|
bool it_quit(arg_t);
|
|
|
|
bool it_switch_mode(arg_t);
|
|
|
|
bool it_toggle_fullscreen(arg_t);
|
2012-02-15 21:33:39 +00:00
|
|
|
bool it_toggle_bar(arg_t);
|
2012-05-13 20:52:53 +01:00
|
|
|
bool t_reload_all(arg_t);
|
2011-09-11 20:01:24 +01:00
|
|
|
bool it_reload_image(arg_t);
|
|
|
|
bool it_remove_image(arg_t);
|
|
|
|
bool i_navigate(arg_t);
|
2012-08-16 12:40:04 +01:00
|
|
|
bool i_alternate(arg_t);
|
2011-09-11 20:01:24 +01:00
|
|
|
bool it_first(arg_t);
|
2011-10-16 15:08:55 +01:00
|
|
|
bool it_n_or_last(arg_t);
|
2011-09-11 20:01:24 +01:00
|
|
|
bool i_navigate_frame(arg_t);
|
|
|
|
bool i_toggle_animation(arg_t);
|
2013-08-10 20:18:53 +01:00
|
|
|
bool it_toggle_image_mark(arg_t);
|
2013-11-14 13:45:27 +00:00
|
|
|
bool it_reverse_marks(arg_t);
|
2013-08-10 20:18:53 +01:00
|
|
|
bool it_navigate_marked(arg_t);
|
2011-10-27 15:21:01 +01:00
|
|
|
bool it_scroll_move(arg_t);
|
|
|
|
bool it_scroll_screen(arg_t);
|
|
|
|
bool i_scroll_to_edge(arg_t);
|
2011-09-11 20:01:24 +01:00
|
|
|
bool i_drag(arg_t);
|
|
|
|
bool i_zoom(arg_t);
|
2011-10-16 16:58:53 +01:00
|
|
|
bool i_set_zoom(arg_t);
|
2011-09-11 20:01:24 +01:00
|
|
|
bool i_fit_to_win(arg_t);
|
|
|
|
bool i_fit_to_img(arg_t);
|
|
|
|
bool i_rotate(arg_t);
|
2012-05-06 08:39:45 +01:00
|
|
|
bool i_flip(arg_t);
|
2011-09-11 20:01:24 +01:00
|
|
|
bool i_toggle_antialias(arg_t);
|
2013-11-13 19:54:09 +00:00
|
|
|
bool i_change_gamma(arg_t);
|
2011-09-11 20:01:24 +01:00
|
|
|
bool it_toggle_alpha(arg_t);
|
|
|
|
bool it_open_with(arg_t);
|
|
|
|
bool it_shell_cmd(arg_t);
|
2011-07-26 17:01:29 +01:00
|
|
|
|
2011-08-19 14:02:10 +01:00
|
|
|
#endif /* COMMANDS_H */
|