summaryrefslogtreecommitdiff
path: root/src/ui_dispatch.h
diff options
context:
space:
mode:
authorLars-Dominik Braun <lars@6xq.net>2010-12-04 15:25:15 +0100
committerLars-Dominik Braun <lars@6xq.net>2011-02-26 13:20:14 +0100
commita79a0c3fb812efac3370c6ed73d37bb8fd1d318e (patch)
treedeaa77ab2cf6ee8c161806f7e21b2037f2c48106 /src/ui_dispatch.h
parent001bab94bba94766f22a0fab5107bbd51321b369 (diff)
downloadpianobar-a79a0c3fb812efac3370c6ed73d37bb8fd1d318e.tar.gz
pianobar-a79a0c3fb812efac3370c6ed73d37bb8fd1d318e.tar.bz2
pianobar-a79a0c3fb812efac3370c6ed73d37bb8fd1d318e.zip
Rewrite input processing
Diffstat (limited to 'src/ui_dispatch.h')
-rw-r--r--src/ui_dispatch.h105
1 files changed, 105 insertions, 0 deletions
diff --git a/src/ui_dispatch.h b/src/ui_dispatch.h
new file mode 100644
index 0000000..c5aecc5
--- /dev/null
+++ b/src/ui_dispatch.h
@@ -0,0 +1,105 @@
+/*
+Copyright (c) 2010-2011
+ Lars-Dominik Braun <lars@6xq.net>
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
+*/
+
+#ifndef _UI_DISPATCH_H
+#define _UI_DISPATCH_H
+
+/* bit-mask */
+typedef enum {
+ BAR_DC_UNDEFINED = 0,
+ BAR_DC_GLOBAL = 1, /* top-level action */
+ BAR_DC_STATION = 2, /* station selected */
+ BAR_DC_SONG = 4, /* song selected */
+} BarUiDispatchContext_t;
+
+#include "settings.h"
+#include "main.h"
+
+typedef void (*BarKeyShortcutFunc_t) (BarApp_t *, PianoStation_t *,
+ PianoSong_t *, BarUiDispatchContext_t);
+
+typedef struct {
+ BarUiDispatchContext_t context;
+ BarKeyShortcutFunc_t function;
+ char *helpText;
+ char defaultKey;
+ char *configKey;
+} BarUiDispatchAction_t;
+
+#include "ui_act.h"
+
+/* see settings.h */
+static const BarUiDispatchAction_t dispatchActions[BAR_KS_COUNT] = {
+ {BAR_DC_UNDEFINED, BarUiActHelp, NULL, '?', "act_help"},
+ {BAR_DC_SONG, BarUiActLoveSong, "love song", '+',
+ "act_songlove"},
+ {BAR_DC_SONG, BarUiActBanSong, "ban song", '-', "act_songban"},
+ {BAR_DC_STATION, BarUiActAddMusic, "add music to station", 'a',
+ "act_stationaddmusic"},
+ {BAR_DC_GLOBAL, BarUiActCreateStation, "create new station", 'c',
+ "act_stationcreate"},
+ {BAR_DC_STATION, BarUiActDeleteStation, "delete station", 'd',
+ "act_stationdelete"},
+ {BAR_DC_SONG, BarUiActExplain, "explain why this song is played", 'e',
+ "act_songexplain"},
+ {BAR_DC_GLOBAL, BarUiActStationFromGenre, "add genre station", 'g',
+ "act_stationaddbygenre"},
+ {BAR_DC_GLOBAL, BarUiActHistory, "song history", 'h', "act_history"},
+ {BAR_DC_GLOBAL | BAR_DC_STATION | BAR_DC_SONG, BarUiActSongInfo,
+ "print information about song/station", 'i',
+ "act_songinfo"},
+ {BAR_DC_GLOBAL, BarUiActAddSharedStation, "add shared station", 'j',
+ "act_addshared"},
+ {BAR_DC_SONG, BarUiActMoveSong, "move song to different station", 'm',
+ "act_songmove"},
+ {BAR_DC_GLOBAL | BAR_DC_STATION, BarUiActSkipSong, "next song", 'n', "act_songnext"},
+ {BAR_DC_GLOBAL | BAR_DC_STATION, BarUiActPause, "pause/continue", 'p', "act_songpause"},
+ {BAR_DC_GLOBAL, BarUiActQuit, "quit", 'q', "act_quit"},
+ {BAR_DC_STATION, BarUiActRenameStation, "rename station", 'r',
+ "act_stationrename"},
+ {BAR_DC_GLOBAL, BarUiActSelectStation, "change station", 's',
+ "act_stationchange"},
+ {BAR_DC_SONG, BarUiActTempBanSong, "tired (ban song for 1 month)", 't',
+ "act_songtired"},
+ {BAR_DC_GLOBAL | BAR_DC_STATION, BarUiActPrintUpcoming, "upcoming songs", 'u',
+ "act_upcoming"},
+ {BAR_DC_STATION, BarUiActSelectQuickMix, "select quickmix stations",
+ 'x', "act_stationselectquickmix"},
+ {BAR_DC_GLOBAL, BarUiActDebug, NULL, '$', "act_debug"},
+ {BAR_DC_SONG, BarUiActBookmark, "bookmark song/artist", 'b',
+ "act_bookmark"},
+ {BAR_DC_GLOBAL, BarUiActVolDown, "decrease volume", '(',
+ "act_voldown"},
+ {BAR_DC_GLOBAL, BarUiActVolUp, "increase volume", ')',
+ "act_volup"},
+ };
+
+#include <piano.h>
+#include <stdbool.h>
+#include <stdio.h>
+
+BarKeyShortcutId_t BarUiDispatch (BarApp_t *, const char, PianoStation_t *, PianoSong_t *,
+ const bool, BarUiDispatchContext_t);
+
+#endif /* _UI_DISPATCH_H */
+