2011-08-19 15:02:10 +02:00
|
|
|
/* sxiv: commands.h
|
2012-02-15 19:16:24 +01:00
|
|
|
* Copyright (c) 2012 Bert Muennich <be.muennich at googlemail.com>
|
2011-07-26 18:01:29 +02:00
|
|
|
*
|
2011-09-03 23:11:45 +02:00
|
|
|
* This program 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 01:18:26 +02:00
|
|
|
*
|
2011-09-03 23:11:45 +02:00
|
|
|
* This program 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.
|
2011-08-18 01:18:26 +02:00
|
|
|
*
|
2011-09-03 23:11:45 +02:00
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2011-07-26 18:01:29 +02:00
|
|
|
*/
|
|
|
|
|
2011-08-19 15:02:10 +02:00
|
|
|
#ifndef COMMANDS_H
|
|
|
|
#define COMMANDS_H
|
2011-07-26 18:01:29 +02:00
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
2011-09-11 21:01:24 +02:00
|
|
|
#include "types.h"
|
|
|
|
|
2011-08-12 17:14:14 +02:00
|
|
|
typedef void* arg_t;
|
2011-09-11 21:01:24 +02:00
|
|
|
typedef bool (*command_f)(arg_t);
|
2011-07-26 18:01:29 +02:00
|
|
|
|
|
|
|
typedef struct {
|
2011-09-11 21:01:24 +02:00
|
|
|
bool ctrl;
|
2011-07-26 18:01:29 +02:00
|
|
|
KeySym ksym;
|
2011-08-19 13:06:19 +02:00
|
|
|
command_f cmd;
|
2011-07-26 18:01:29 +02:00
|
|
|
arg_t arg;
|
|
|
|
} keymap_t;
|
|
|
|
|
|
|
|
typedef struct {
|
2011-09-11 21:01:24 +02:00
|
|
|
bool ctrl;
|
|
|
|
bool shift;
|
2011-07-26 18:01:29 +02:00
|
|
|
unsigned int button;
|
2011-08-19 13:06:19 +02:00
|
|
|
command_f cmd;
|
2011-07-26 18:01:29 +02:00
|
|
|
arg_t arg;
|
|
|
|
} button_t;
|
|
|
|
|
2011-09-11 21:01:24 +02:00
|
|
|
bool it_quit(arg_t);
|
|
|
|
bool it_switch_mode(arg_t);
|
|
|
|
bool it_toggle_fullscreen(arg_t);
|
2012-02-15 22:33:39 +01:00
|
|
|
bool it_toggle_bar(arg_t);
|
2011-09-11 21:01:24 +02:00
|
|
|
bool it_reload_image(arg_t);
|
|
|
|
bool it_remove_image(arg_t);
|
|
|
|
bool i_navigate(arg_t);
|
|
|
|
bool it_first(arg_t);
|
2011-10-16 16:08:55 +02:00
|
|
|
bool it_n_or_last(arg_t);
|
2011-09-11 21:01:24 +02:00
|
|
|
bool i_navigate_frame(arg_t);
|
|
|
|
bool i_toggle_animation(arg_t);
|
2011-10-27 16:21:01 +02:00
|
|
|
bool it_scroll_move(arg_t);
|
|
|
|
bool it_scroll_screen(arg_t);
|
|
|
|
bool i_scroll_to_edge(arg_t);
|
2011-09-11 21:01:24 +02:00
|
|
|
bool i_drag(arg_t);
|
|
|
|
bool i_zoom(arg_t);
|
2011-10-16 17:58:53 +02:00
|
|
|
bool i_set_zoom(arg_t);
|
2011-09-11 21:01:24 +02:00
|
|
|
bool i_fit_to_win(arg_t);
|
|
|
|
bool i_fit_to_img(arg_t);
|
|
|
|
bool i_rotate(arg_t);
|
|
|
|
bool i_toggle_slideshow(arg_t);
|
|
|
|
bool i_adjust_slideshow(arg_t);
|
2011-10-16 18:58:32 +02:00
|
|
|
bool i_reset_slideshow(arg_t);
|
2011-09-11 21:01:24 +02:00
|
|
|
bool i_toggle_antialias(arg_t);
|
|
|
|
bool it_toggle_alpha(arg_t);
|
|
|
|
bool it_open_with(arg_t);
|
|
|
|
bool it_shell_cmd(arg_t);
|
2011-07-26 18:01:29 +02:00
|
|
|
|
2011-08-19 15:02:10 +02:00
|
|
|
#endif /* COMMANDS_H */
|