|
61
|
1 #include <gtk/gtk.h>
|
|
|
2
|
|
|
3
|
|
|
4 typedef struct {
|
|
|
5 GtkWidget *window_main;
|
|
|
6
|
|
|
7 GtkWidget *list_vis_plugins;
|
|
|
8 GtkWidget *button_vis_plugin_conf;
|
|
|
9 GtkWidget *button_vis_plugin_about;
|
|
|
10
|
|
|
11 GtkWidget *checkbutton_vis_plugin;
|
|
|
12 GtkWidget *checkbutton_fullscreen;
|
|
|
13 GtkWidget *radiobutton_onlygl;
|
|
|
14 GtkWidget *radiobutton_onlynongl;
|
|
|
15 GtkWidget *radiobutton_all_plugins;
|
|
|
16 GtkWidget *spinbutton_fps;
|
|
|
17
|
|
|
18 GtkWidget *optionmenu_morph_plugin;
|
|
|
19 GSList *optionmenu_morph_plugin_group;
|
|
|
20 GtkWidget *button_morph_plugin_conf;
|
|
|
21 GtkWidget *button_morph_plugin_about;
|
|
|
22 GtkWidget *checkbutton_morph_random;
|
|
|
23
|
|
|
24 GtkWidget *button_ok;
|
|
|
25 GtkWidget *button_apply;
|
|
|
26 GtkWidget *button_cancel;
|
|
|
27 } ConfigWin;
|
|
|
28
|
|
|
29
|
|
|
30 ConfigWin *lv_xmms_config_gui_new (void);
|
|
|
31
|