Fix Pacbox controls for D2 touchscreen
[Rockbox.git] / apps / gui / buttonbar.h
blobe7a366420c634a177b083717357c06675d9e1ac9
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 by Kevin Ferrare
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 ****************************************************************************/
20 #ifndef _GUI_BUTTONBAR_H_
21 #define _GUI_BUTTONBAR_H_
22 #include "config.h"
23 #include "button.h"
24 #if CONFIG_KEYPAD == RECORDER_PAD
26 #define HAS_BUTTONBAR
27 #define BUTTONBAR_HEIGHT 8
28 #define BUTTONBAR_MAX_BUTTONS 3
29 #define BUTTONBAR_CAPTION_LENGTH 8
30 #include "screen_access.h"
32 struct gui_buttonbar
34 char caption[BUTTONBAR_MAX_BUTTONS][BUTTONBAR_CAPTION_LENGTH];
35 struct screen * display;
39 * Initializes the buttonbar
40 * - buttonbar : the buttonbar
42 extern void gui_buttonbar_init(struct gui_buttonbar * buttonbar);
45 * Attach the buttonbar to a screen
46 * - buttonbar : the buttonbar
47 * - display : the display to attach the buttonbar
49 extern void gui_buttonbar_set_display(struct gui_buttonbar * buttonbar,
50 struct screen * display);
53 * Set the caption of the items of the buttonbar
54 * - buttonbar : the buttonbar
55 * - caption1,2,3 : the first, second and thirds items of the bar
57 extern void gui_buttonbar_set(struct gui_buttonbar * buttonbar,
58 const char *caption1,
59 const char *caption2,
60 const char *caption3);
63 * Disable the buttonbar
64 * - buttonbar : the buttonbar
66 extern void gui_buttonbar_unset(struct gui_buttonbar * buttonbar);
69 * Draw the buttonbar on it's attached screen
70 * - buttonbar : the buttonbar
72 extern void gui_buttonbar_draw(struct gui_buttonbar * buttonbar);
75 * Returns true if the buttonbar has something to display, false otherwise
76 * - buttonbar : the buttonbar
78 extern bool gui_buttonbar_isset(struct gui_buttonbar * buttonbar);
80 #endif /* CONFIG_KEYPAD == RECORDER_PAD */
81 #endif /* _GUI_BUTTONBAR_H_ */