Jonathan Gordon | 101693f | 2011-11-15 13:22:02 +0000 | [diff] [blame] | 1 | /*************************************************************************** |
| 2 | * |
| 3 | * __________ __ ___. |
| 4 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ |
| 5 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / |
| 6 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < |
| 7 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ |
| 8 | * \/ \/ \/ \/ \/ |
| 9 | * $Id$ |
| 10 | * |
| 11 | * Copyright (C) 2011 Jonathan Gordon |
| 12 | * |
| 13 | * This program is free software; you can redistribute it and/or |
| 14 | * modify it under the terms of the GNU General Public License |
| 15 | * as published by the Free Software Foundation; either version 2 |
| 16 | * of the License, or (at your option) any later version. |
| 17 | * |
| 18 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY |
| 19 | * KIND, either express or implied. |
| 20 | * |
| 21 | ****************************************************************************/ |
| 22 | #ifndef __SHORTCUTS_H__ |
| 23 | #define __SHORTCUTS_H__ |
| 24 | #include <stdbool.h> |
| 25 | #include <stdlib.h> |
| 26 | |
| 27 | enum shortcut_type { |
| 28 | SHORTCUT_UNDEFINED = -1, |
| 29 | SHORTCUT_SETTING = 0, |
| 30 | SHORTCUT_FILE, |
| 31 | SHORTCUT_DEBUGITEM, |
| 32 | SHORTCUT_BROWSER, |
| 33 | SHORTCUT_PLAYLISTMENU, |
| 34 | SHORTCUT_SEPARATOR, |
Jonathan Gordon | 565191a | 2011-12-06 12:02:49 +0000 | [diff] [blame] | 35 | SHORTCUT_SHUTDOWN, |
Jonathan Gordon | 29b1ba3 | 2011-12-08 10:23:46 +0000 | [diff] [blame] | 36 | SHORTCUT_TIME, |
Jonathan Gordon | 101693f | 2011-11-15 13:22:02 +0000 | [diff] [blame] | 37 | |
| 38 | SHORTCUT_TYPE_COUNT |
| 39 | }; |
| 40 | |
Nils Wallménius | a0377bd | 2011-12-05 19:23:46 +0000 | [diff] [blame] | 41 | void shortcuts_add(enum shortcut_type type, const char* value); |
Jonathan Gordon | 101693f | 2011-11-15 13:22:02 +0000 | [diff] [blame] | 42 | void shortcuts_init(void); |
| 43 | int do_shortcut_menu(void*ignored); |
| 44 | |
| 45 | #endif |