2014-07-23 19:50:31 +00:00
|
|
|
/* Copyright 2011, 2014 Bert Muennich
|
2011-07-26 16:01:29 +00:00
|
|
|
*
|
2013-02-08 20:52:41 +00:00
|
|
|
* This file is part of sxiv.
|
2011-08-17 23:18:26 +00: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-17 23:18:26 +00: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 16:01:29 +00:00
|
|
|
*/
|
|
|
|
|
2011-08-19 13:02:10 +00:00
|
|
|
#ifndef COMMANDS_H
|
|
|
|
#define COMMANDS_H
|
2011-07-26 16:01:29 +00:00
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
|
2011-09-11 19:01:24 +00:00
|
|
|
#include "types.h"
|
|
|
|
|
2014-07-23 19:50:31 +00:00
|
|
|
typedef void* arg_t;
|
|
|
|
typedef bool (*cmd_f)(arg_t);
|
|
|
|
|
|
|
|
#define G_CMD(c) g_##c,
|
|
|
|
#define I_CMD(c) i_##c,
|
|
|
|
#define T_CMD(c) t_##c,
|
|
|
|
|
2014-01-08 21:58:27 +00:00
|
|
|
typedef enum {
|
2014-07-23 19:50:31 +00:00
|
|
|
#include "commands.lst"
|
|
|
|
CMD_COUNT
|
|
|
|
} cmd_id_t;
|
2014-01-08 21:58:27 +00:00
|
|
|
|
2014-07-23 19:50:31 +00:00
|
|
|
typedef struct {
|
|
|
|
int mode;
|
|
|
|
cmd_f func;
|
|
|
|
} cmd_t;
|
2011-07-26 16:01:29 +00:00
|
|
|
|
|
|
|
typedef struct {
|
2014-01-02 12:36:00 +00:00
|
|
|
unsigned int mask;
|
2011-07-26 16:01:29 +00:00
|
|
|
KeySym ksym;
|
2014-07-23 19:50:31 +00:00
|
|
|
cmd_id_t cmd;
|
2011-07-26 16:01:29 +00:00
|
|
|
arg_t arg;
|
|
|
|
} keymap_t;
|
|
|
|
|
|
|
|
typedef struct {
|
2014-01-02 12:36:00 +00:00
|
|
|
unsigned int mask;
|
2011-07-26 16:01:29 +00:00
|
|
|
unsigned int button;
|
2014-07-23 19:50:31 +00:00
|
|
|
cmd_id_t cmd;
|
2011-07-26 16:01:29 +00:00
|
|
|
arg_t arg;
|
|
|
|
} button_t;
|
|
|
|
|
2014-07-23 19:50:31 +00:00
|
|
|
const extern cmd_t cmds[CMD_COUNT];
|
2011-07-26 16:01:29 +00:00
|
|
|
|
2011-08-19 13:02:10 +00:00
|
|
|
#endif /* COMMANDS_H */
|