2002-05-06 08:41:49 +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-05-06 08:47:10 +00:00
|
|
|
struct main_menu_items {
|
2002-05-06 08:41:49 +00:00
|
|
|
int menu_id;
|
|
|
|
const char *menu_desc;
|
|
|
|
void (*function) (void);
|
|
|
|
};
|
|
|
|
|
|
|
|
int get_line_height(void);
|
|
|
|
|
|
|
|
/* Cursor calls */
|
|
|
|
void put_cursor(int target);
|
|
|
|
void put_cursor_menu_top(void);
|
|
|
|
void put_cursor_menu_bottom(void);
|
|
|
|
void move_cursor_up(void);
|
|
|
|
void move_cursor_down(void);
|
|
|
|
int is_cursor_menu_top(void);
|
|
|
|
int is_cursor_menu_bottom(void);
|
|
|
|
|
|
|
|
/* Menu calls */
|
|
|
|
void add_menu_item(int location, char *string);
|
|
|
|
void menu_init(void);
|
2002-05-12 13:58:50 +00:00
|
|
|
void menu_draw(void);
|
2002-05-06 08:41:49 +00:00
|
|
|
void execute_menu_item(void);
|
|
|
|
|
|
|
|
#endif /* End __MENU_H__ */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|