Code

main: do_input_event() returns bool
[ncmpc.git] / src / keyboard.c
1 /* ncmpc (Ncurses MPD Client)
2  * (c) 2004-2017 The Music Player Daemon Project
3  * Project homepage: http://musicpd.org
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
20 #include "keyboard.h"
21 #include "command.h"
22 #include "ncmpc.h"
23 #include "Compiler.h"
25 #include <glib.h>
27 #include <unistd.h>
29 static gboolean
30 keyboard_event(gcc_unused GIOChannel *source,
31                gcc_unused GIOCondition condition,
32                gcc_unused gpointer data)
33 {
34         begin_input_event();
36         command_t cmd = get_keyboard_command();
37         if (cmd != CMD_NONE)
38                 if (!do_input_event(cmd))
39                         return FALSE;
41         end_input_event();
42         return TRUE;
43 }
45 void
46 keyboard_init(void)
47 {
48         GIOChannel *channel = g_io_channel_unix_new(STDIN_FILENO);
49         g_io_add_watch(channel, G_IO_IN, keyboard_event, NULL);
50         g_io_channel_unref(channel);
51 }