2002-05-17 12:22:24 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 Robert E. Hak
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __MENU_H__
|
|
|
|
#define __MENU_H__
|
|
|
|
|
2002-06-14 10:39:11 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
2004-03-16 13:44:56 +00:00
|
|
|
struct menu_item {
|
2004-07-23 23:01:20 +00:00
|
|
|
unsigned char *desc; /* string or ID */
|
2002-09-24 17:22:12 +00:00
|
|
|
bool (*function) (void); /* return true if USB was connected */
|
2002-05-17 12:22:24 +00:00
|
|
|
};
|
|
|
|
|
2004-07-23 23:01:20 +00:00
|
|
|
int menu_init(const struct menu_item* mitems, int count, int (*callback)(int, int),
|
2004-03-16 13:44:56 +00:00
|
|
|
char *button1, char *button2, char *button3);
|
2002-05-26 17:03:17 +00:00
|
|
|
void menu_exit(int menu);
|
2002-05-17 12:22:24 +00:00
|
|
|
|
2002-06-14 10:39:11 +00:00
|
|
|
void put_cursorxy(int x, int y, bool on);
|
|
|
|
|
2003-01-29 08:26:11 +00:00
|
|
|
/* Returns below define, or number of selected menu item*/
|
|
|
|
int menu_show(int m);
|
|
|
|
#define MENU_ATTACHED_USB -1
|
|
|
|
#define MENU_SELECTED_EXIT -2
|
|
|
|
|
2002-09-24 17:22:12 +00:00
|
|
|
bool menu_run(int menu);
|
2004-03-12 10:20:33 +00:00
|
|
|
int menu_cursor(int menu);
|
|
|
|
char* menu_description(int menu, int position);
|
|
|
|
void menu_delete(int menu, int position);
|
|
|
|
int menu_count(int menu);
|
|
|
|
bool menu_moveup(int menu);
|
|
|
|
bool menu_movedown(int menu);
|
|
|
|
void menu_draw(int menu);
|
2004-07-23 23:01:20 +00:00
|
|
|
void menu_insert(int menu, int position, char *desc, bool (*function) (void));
|
2002-08-23 12:32:52 +00:00
|
|
|
|
2002-05-17 12:22:24 +00:00
|
|
|
#endif /* End __MENU_H__ */
|