removed entry for status bar
[kugel-rb.git] / apps / screensavers_menu.c
bloba7bd4d422c496d8cae1d132b1b87a553b5252f11
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 Robert Hak
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
19 #include "config.h"
21 #ifdef HAVE_LCD_BITMAP
23 #include <stdio.h>
24 #include <stdbool.h>
25 #include "lcd.h"
26 #include "menu.h"
27 #include "screensavers_menu.h"
28 #include "button.h"
29 #include "kernel.h"
30 #include "sprintf.h"
32 #include "boxes.h"
33 extern void bounce(void);
34 extern void blank(void);
36 void screensavers_menu(void)
38 int m;
40 struct menu_items items[] = {
41 { "Boxes", boxes },
42 { "Bounce", bounce },
43 { "Blank", blank },
46 m=menu_init( items, sizeof items / sizeof(struct menu_items) );
47 menu_run(m);
48 menu_exit(m);
51 #endif