1 /*
2  * GQradio
3  * (C) 2002 John Ellis
4  *
5  * Author: John Ellis
6  *
7  * This software is released under the GNU General Public License (GNU GPL).
8  * Please read the included file COPYING for more information.
9  * This software comes with no warranty of any kind, use at your own risk!
10  */
11 
12 #ifndef DISPLAY_H
13 #define DISPLAY_H
14 
15 
16 void display_register_widgets(UIData *ui);
17 
18 void display_update_status(void);
19 void display_set_preset_scan(gint set);
20 void display_set_mode(gint set);
21 void display_set_frequency(guint32 freq);
22 void display_hide_minor_digits(gint hide);
23 
24 void display_increment_scanner(gint reset);
25 void display_update_preset(gint flash, gint n);
26 
27 void display_preset_list_update(gint n);
28 
29 void display_set_description(const gchar *text);
30 
31 void display_set_volume(void);
32 void display_set_balance(void);
33 
34 void display_scroll_preset_list(gint direction_up);
35 
36 
37 #endif
38 
39 
40 
41