From 083e7d451b5ca220a7f54af5867bfe7fa0f24790 Mon Sep 17 00:00:00 2001 From: Robert Hak Date: Mon, 6 May 2002 08:41:49 +0000 Subject: Initial creation. This removes alot of the cursor and menuing overhead from the calling routines git-svn-id: svn://svn.rockbox.org/rockbox/trunk@464 a1c6a512-1295-4272-9138-f99709370657 --- uisimulator/menu.h | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 uisimulator/menu.h (limited to 'uisimulator/menu.h') diff --git a/uisimulator/menu.h b/uisimulator/menu.h new file mode 100644 index 0000000000..25dfd393a2 --- /dev/null +++ b/uisimulator/menu.h @@ -0,0 +1,50 @@ +/*************************************************************************** + * __________ __ ___. + * 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__ + +struct Main_Menu_Items { + 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); +void execute_menu_item(void); + +#endif /* End __MENU_H__ */ + + + + + -- cgit v1.2.3