1
1
mirror of https://github.com/tstellar/bygfoot.git synced 2025-02-24 23:37:43 +01:00
bygfoot/src/option_gui.h
2005-03-24 13:00:01 +00:00

23 lines
416 B
C

#ifndef OPTION_GUI_H
#define OPTION_GUI_H
#include "bygfoot.h"
void
option_gui_write_bool_widgets(gint **bool_options, GtkToggleButton **bool_widgets);
void
option_gui_write_spin_widgets(gint **spin_options, GtkSpinButton **spin_widgets);
void
option_gui_write_entry_widgets(GString **entry_options, GtkEntry **entry_widgets);
void
option_gui_set_up_window(void);
void
option_gui_write_options(void);
#endif