1 /* -*- c-basic-offset:2; tab-width:2; indent-tabs-mode:nil -*- */
2 
3 #ifndef __MC_RADIO_H__
4 #define __MC_RADIO_H__
5 
6 #include <gtk/gtk.h>
7 
8 #define MC_RADIOS 7
9 
10 #define MC_RADIO_MOD_META_MODE 0
11 #define MC_RADIO_BELL_MODE 1
12 #define MC_RADIO_SB_MODE 2
13 #define MC_RADIO_VERTICAL_MODE 3
14 #define MC_RADIO_BOX_DRAWING 4
15 #define MC_RADIO_FONT_POLICY 5
16 #define MC_RADIO_LOG_VTSEQ 6
17 
18 GtkWidget *mc_radio_config_widget_new(int id);
19 
20 void mc_update_radio(int id);
21 
22 void mc_radio_set_callback(int id, void (*func)(void));
23 
24 int mc_radio_get_value(int id);
25 
26 #endif
27