annotate src/modplug/gui/interface.cxx @ 3047:4434b4c4a715

ported EsounD plugin
author Andrew O. Shadoura <bugzilla@tut.by>
date Fri, 17 Apr 2009 16:17:10 +0300
parents 13a0e4377c20
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1 /*
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
2 * DO NOT EDIT THIS FILE - it is generated by Glade.
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
3 */
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
4
2271
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
5 #ifdef HAVE_CONFIG_H
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
6 # include <config.h>
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
7 #endif
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
8
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
9 #include <sys/types.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
10 #include <sys/stat.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
11 #include <unistd.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
12 #include <string.h>
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
13 #include <stdio.h>
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
14
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
15 #include <gdk/gdkkeysyms.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
16 #include <gtk/gtk.h>
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
17
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
18 #include "callbacks.h"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
19 #include "interface.h"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
20 #include "support.h"
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
21
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
22 #define GLADE_HOOKUP_OBJECT(component,widget,name) \
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
23 g_object_set_data_full (G_OBJECT (component), name, \
3035
13a0e4377c20 Don't use deprecated gtk functions
Tomasz Mon <desowin@gmail.com>
parents: 2271
diff changeset
24 g_object_ref (widget), (GDestroyNotify) g_object_unref)
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
25
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
26 #define GLADE_HOOKUP_OBJECT_NO_REF(component,widget,name) \
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
27 g_object_set_data (G_OBJECT (component), name, widget)
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
28
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
29 GtkWidget*
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
30 create_Config (void)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
31 {
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
32 GtkWidget *Config;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
33 GtkWidget *vbox2;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
34 GtkWidget *notebook1;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
35 GtkWidget *vbox3;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
36 GtkWidget *hbox2;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
37 GtkWidget *frame1;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
38 GtkWidget *vbox4;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
39 GtkWidget *bit16;
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
40 GSList *bit16_group = NULL;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
41 GtkWidget *bit8;
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
42 GtkWidget *xlabel2;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
43 GtkWidget *frame2;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
44 GtkWidget *vbox5;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
45 GtkWidget *stereo;
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
46 GSList *stereo_group = NULL;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
47 GtkWidget *mono;
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
48 GtkWidget *label3;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
49 GtkWidget *hbox14;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
50 GtkWidget *frame9;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
51 GtkWidget *vbox15;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
52 GtkWidget *resampNearest;
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
53 GSList *resampNearest_group = NULL;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
54 GtkWidget *resampLinear;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
55 GtkWidget *resampSpline;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
56 GtkWidget *resampPolyphase;
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
57 GtkWidget *label4;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
58 GtkWidget *frame3;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
59 GtkWidget *vbox6;
2271
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
60 GtkWidget *samp48;
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
61 GSList *samp48_group = NULL;
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
62 GtkWidget *samp44;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
63 GtkWidget *samp22;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
64 GtkWidget *samp11;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
65 GtkWidget *label5;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
66 GtkWidget *label2;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
67 GtkWidget *vbox7;
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
68 GtkWidget *hbox15;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
69 GtkWidget *frame5;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
70 GtkWidget *vbox20;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
71 GtkWidget *fxReverb;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
72 GtkWidget *table1;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
73 GtkWidget *fxReverbDepth;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
74 GtkWidget *fxReverbDelay;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
75 GtkWidget *xlabel3;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
76 GtkWidget *xlabel4;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
77 GtkWidget *label6;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
78 GtkWidget *frame6;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
79 GtkWidget *vbox21;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
80 GtkWidget *fxBassBoost;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
81 GtkWidget *table2;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
82 GtkWidget *fxBassAmount;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
83 GtkWidget *fxBassRange;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
84 GtkWidget *xlabel5;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
85 GtkWidget *xlabel6;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
86 GtkWidget *label7;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
87 GtkWidget *hbox16;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
88 GtkWidget *frame7;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
89 GtkWidget *vbox22;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
90 GtkWidget *fxSurround;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
91 GtkWidget *table3;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
92 GtkWidget *fxSurroundDepth;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
93 GtkWidget *fxSurroundDelay;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
94 GtkWidget *xlabel7;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
95 GtkWidget *label8;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
96 GtkWidget *xlabel8;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
97 GtkWidget *frame10;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
98 GtkWidget *vbox16;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
99 GtkWidget *fxPreamp;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
100 GtkWidget *hbox11;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
101 GtkWidget *label19;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
102 GtkWidget *fxPreampLevel;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
103 GtkWidget *label20;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
104 GtkWidget *label9;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
105 GtkWidget *label10;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
106 GtkWidget *vbox19;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
107 GtkWidget *frame4;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
108 GtkWidget *hbox3;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
109 GtkWidget *vbox8;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
110 GtkWidget *fxUseFilename;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
111 GtkWidget *fxFastInfo;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
112 GtkWidget *vbox9;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
113 GtkWidget *fxNR;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
114 GtkWidget *fxAmigaMOD;
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
115 GtkWidget *label21;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
116 GtkWidget *frame11;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
117 GtkWidget *vbox17;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
118 GtkWidget *fxNoLoop;
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
119 GSList *fxNoLoop_group = NULL;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
120 GtkWidget *hbox13;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
121 GtkWidget *fxLoopFinite;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
122 GtkObject *fxLoopCount_adj;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
123 GtkWidget *fxLoopCount;
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
124 GtkWidget *xlabel21;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
125 GtkWidget *fxLoopForever;
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
126 GtkWidget *label22;
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
127 GtkWidget *xlabel22;
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
128 GtkWidget *hbuttonbox2;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
129 GtkWidget *config_ok;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
130 GtkWidget *config_apply;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
131 GtkWidget *config_cancel;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
132
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
133 Config = gtk_window_new (GTK_WINDOW_TOPLEVEL);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
134 gtk_widget_set_name (Config, "Config");
2271
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
135 gtk_widget_set_size_request (Config, 500, -1);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
136 gtk_window_set_title (GTK_WINDOW (Config), _("ModPlug Configuration"));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
137 gtk_window_set_resizable (GTK_WINDOW (Config), FALSE);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
138
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
139 vbox2 = gtk_vbox_new (FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
140 gtk_widget_set_name (vbox2, "vbox2");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
141 gtk_widget_show (vbox2);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
142 gtk_container_add (GTK_CONTAINER (Config), vbox2);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
143
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
144 notebook1 = gtk_notebook_new ();
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
145 gtk_widget_set_name (notebook1, "notebook1");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
146 gtk_widget_show (notebook1);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
147 gtk_box_pack_start (GTK_BOX (vbox2), notebook1, TRUE, TRUE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
148 gtk_container_set_border_width (GTK_CONTAINER (notebook1), 4);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
149
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
150 vbox3 = gtk_vbox_new (FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
151 gtk_widget_set_name (vbox3, "vbox3");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
152 gtk_widget_show (vbox3);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
153 gtk_container_add (GTK_CONTAINER (notebook1), vbox3);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
154 gtk_container_set_border_width (GTK_CONTAINER (vbox3), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
155
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
156 hbox2 = gtk_hbox_new (FALSE, 2);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
157 gtk_widget_set_name (hbox2, "hbox2");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
158 gtk_widget_show (hbox2);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
159 gtk_box_pack_start (GTK_BOX (vbox3), hbox2, FALSE, TRUE, 0);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
160
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
161 frame1 = gtk_frame_new (NULL);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
162 gtk_widget_set_name (frame1, "frame1");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
163 gtk_widget_show (frame1);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
164 gtk_box_pack_start (GTK_BOX (hbox2), frame1, TRUE, TRUE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
165 gtk_container_set_border_width (GTK_CONTAINER (frame1), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
166
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
167 vbox4 = gtk_vbox_new (FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
168 gtk_widget_set_name (vbox4, "vbox4");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
169 gtk_widget_show (vbox4);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
170 gtk_container_add (GTK_CONTAINER (frame1), vbox4);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
171 gtk_container_set_border_width (GTK_CONTAINER (vbox4), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
172
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
173 bit16 = gtk_radio_button_new_with_mnemonic (NULL, _("16 bit"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
174 gtk_widget_set_name (bit16, "bit16");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
175 gtk_widget_show (bit16);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
176 gtk_box_pack_start (GTK_BOX (vbox4), bit16, FALSE, FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
177 gtk_radio_button_set_group (GTK_RADIO_BUTTON (bit16), bit16_group);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
178 bit16_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (bit16));
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
179
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
180 bit8 = gtk_radio_button_new_with_mnemonic (NULL, _("8 bit"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
181 gtk_widget_set_name (bit8, "bit8");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
182 gtk_widget_show (bit8);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
183 gtk_box_pack_start (GTK_BOX (vbox4), bit8, FALSE, FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
184 gtk_radio_button_set_group (GTK_RADIO_BUTTON (bit8), bit16_group);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
185 bit16_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (bit8));
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
186
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
187 xlabel2 = gtk_label_new (_("Resolution"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
188 gtk_widget_set_name (xlabel2, "xlabel2");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
189 gtk_widget_show (xlabel2);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
190 gtk_frame_set_label_widget (GTK_FRAME (frame1), xlabel2);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
191
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
192 frame2 = gtk_frame_new (NULL);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
193 gtk_widget_set_name (frame2, "frame2");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
194 gtk_widget_show (frame2);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
195 gtk_box_pack_start (GTK_BOX (hbox2), frame2, TRUE, TRUE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
196 gtk_container_set_border_width (GTK_CONTAINER (frame2), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
197
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
198 vbox5 = gtk_vbox_new (FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
199 gtk_widget_set_name (vbox5, "vbox5");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
200 gtk_widget_show (vbox5);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
201 gtk_container_add (GTK_CONTAINER (frame2), vbox5);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
202 gtk_container_set_border_width (GTK_CONTAINER (vbox5), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
203
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
204 stereo = gtk_radio_button_new_with_mnemonic (NULL, _("Stereo"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
205 gtk_widget_set_name (stereo, "stereo");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
206 gtk_widget_show (stereo);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
207 gtk_box_pack_start (GTK_BOX (vbox5), stereo, FALSE, FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
208 gtk_radio_button_set_group (GTK_RADIO_BUTTON (stereo), stereo_group);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
209 stereo_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (stereo));
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
210
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
211 mono = gtk_radio_button_new_with_mnemonic (NULL, _("Mono (downmix)"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
212 gtk_widget_set_name (mono, "mono");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
213 gtk_widget_show (mono);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
214 gtk_box_pack_start (GTK_BOX (vbox5), mono, FALSE, FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
215 gtk_radio_button_set_group (GTK_RADIO_BUTTON (mono), stereo_group);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
216 stereo_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (mono));
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
217
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
218 label3 = gtk_label_new (_("Channels"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
219 gtk_widget_set_name (label3, "label3");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
220 gtk_widget_show (label3);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
221 gtk_frame_set_label_widget (GTK_FRAME (frame2), label3);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
222
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
223 hbox14 = gtk_hbox_new (FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
224 gtk_widget_set_name (hbox14, "hbox14");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
225 gtk_widget_show (hbox14);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
226 gtk_box_pack_start (GTK_BOX (vbox3), hbox14, FALSE, TRUE, 0);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
227
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
228 frame9 = gtk_frame_new (NULL);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
229 gtk_widget_set_name (frame9, "frame9");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
230 gtk_widget_show (frame9);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
231 gtk_box_pack_start (GTK_BOX (hbox14), frame9, TRUE, TRUE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
232 gtk_container_set_border_width (GTK_CONTAINER (frame9), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
233
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
234 vbox15 = gtk_vbox_new (FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
235 gtk_widget_set_name (vbox15, "vbox15");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
236 gtk_widget_show (vbox15);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
237 gtk_container_add (GTK_CONTAINER (frame9), vbox15);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
238 gtk_container_set_border_width (GTK_CONTAINER (vbox15), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
239
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
240 resampNearest = gtk_radio_button_new_with_mnemonic (NULL, _("Nearest (fastest)"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
241 gtk_widget_set_name (resampNearest, "resampNearest");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
242 gtk_widget_show (resampNearest);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
243 gtk_box_pack_start (GTK_BOX (vbox15), resampNearest, FALSE, FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
244 gtk_radio_button_set_group (GTK_RADIO_BUTTON (resampNearest), resampNearest_group);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
245 resampNearest_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (resampNearest));
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
246
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
247 resampLinear = gtk_radio_button_new_with_mnemonic (NULL, _("Linear (fast)"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
248 gtk_widget_set_name (resampLinear, "resampLinear");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
249 gtk_widget_show (resampLinear);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
250 gtk_box_pack_start (GTK_BOX (vbox15), resampLinear, FALSE, FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
251 gtk_radio_button_set_group (GTK_RADIO_BUTTON (resampLinear), resampNearest_group);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
252 resampNearest_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (resampLinear));
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
253
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
254 resampSpline = gtk_radio_button_new_with_mnemonic (NULL, _("Spline (good quality)"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
255 gtk_widget_set_name (resampSpline, "resampSpline");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
256 gtk_widget_show (resampSpline);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
257 gtk_box_pack_start (GTK_BOX (vbox15), resampSpline, FALSE, FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
258 gtk_radio_button_set_group (GTK_RADIO_BUTTON (resampSpline), resampNearest_group);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
259 resampNearest_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (resampSpline));
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
260
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
261 resampPolyphase = gtk_radio_button_new_with_mnemonic (NULL, _("8-tap Fir (extremely high quality)"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
262 gtk_widget_set_name (resampPolyphase, "resampPolyphase");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
263 gtk_widget_show (resampPolyphase);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
264 gtk_box_pack_start (GTK_BOX (vbox15), resampPolyphase, FALSE, FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
265 gtk_radio_button_set_group (GTK_RADIO_BUTTON (resampPolyphase), resampNearest_group);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
266 resampNearest_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (resampPolyphase));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
267
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
268 label4 = gtk_label_new (_("Resampling"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
269 gtk_widget_set_name (label4, "label4");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
270 gtk_widget_show (label4);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
271 gtk_frame_set_label_widget (GTK_FRAME (frame9), label4);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
272
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
273 frame3 = gtk_frame_new (NULL);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
274 gtk_widget_set_name (frame3, "frame3");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
275 gtk_widget_show (frame3);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
276 gtk_box_pack_start (GTK_BOX (hbox14), frame3, TRUE, TRUE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
277 gtk_container_set_border_width (GTK_CONTAINER (frame3), 2);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
278
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
279 vbox6 = gtk_vbox_new (FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
280 gtk_widget_set_name (vbox6, "vbox6");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
281 gtk_widget_show (vbox6);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
282 gtk_container_add (GTK_CONTAINER (frame3), vbox6);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
283 gtk_container_set_border_width (GTK_CONTAINER (vbox6), 2);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
284
2271
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
285 samp48 = gtk_radio_button_new_with_mnemonic (NULL, _("48 kHz"));
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
286 gtk_widget_set_name (samp48, "samp48");
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
287 gtk_widget_show (samp48);
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
288 gtk_box_pack_start (GTK_BOX (vbox6), samp48, FALSE, FALSE, 0);
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
289 gtk_radio_button_set_group (GTK_RADIO_BUTTON (samp48), samp48_group);
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
290 samp48_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (samp48));
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
291
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
292 samp44 = gtk_radio_button_new_with_mnemonic (NULL, _("44 kHz"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
293 gtk_widget_set_name (samp44, "samp44");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
294 gtk_widget_show (samp44);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
295 gtk_box_pack_start (GTK_BOX (vbox6), samp44, FALSE, FALSE, 0);
2271
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
296 gtk_radio_button_set_group (GTK_RADIO_BUTTON (samp44), samp48_group);
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
297 samp48_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (samp44));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
298
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
299 samp22 = gtk_radio_button_new_with_mnemonic (NULL, _("22 kHz"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
300 gtk_widget_set_name (samp22, "samp22");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
301 gtk_widget_show (samp22);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
302 gtk_box_pack_start (GTK_BOX (vbox6), samp22, FALSE, FALSE, 0);
2271
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
303 gtk_radio_button_set_group (GTK_RADIO_BUTTON (samp22), samp48_group);
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
304 samp48_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (samp22));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
305
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
306 samp11 = gtk_radio_button_new_with_mnemonic (NULL, _("11 kHz"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
307 gtk_widget_set_name (samp11, "samp11");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
308 gtk_widget_show (samp11);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
309 gtk_box_pack_start (GTK_BOX (vbox6), samp11, FALSE, FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
310 gtk_button_set_focus_on_click (GTK_BUTTON (samp11), FALSE);
2271
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
311 gtk_radio_button_set_group (GTK_RADIO_BUTTON (samp11), samp48_group);
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
312 samp48_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (samp11));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
313
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
314 label5 = gtk_label_new (_("Sampling Rate"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
315 gtk_widget_set_name (label5, "label5");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
316 gtk_widget_show (label5);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
317 gtk_frame_set_label_widget (GTK_FRAME (frame3), label5);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
318
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
319 label2 = gtk_label_new (_("Quality"));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
320 gtk_widget_set_name (label2, "label2");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
321 gtk_widget_show (label2);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
322 gtk_notebook_set_tab_label (GTK_NOTEBOOK (notebook1), gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook1), 0), label2);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
323 gtk_label_set_justify (GTK_LABEL (label2), GTK_JUSTIFY_CENTER);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
324
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
325 vbox7 = gtk_vbox_new (FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
326 gtk_widget_set_name (vbox7, "vbox7");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
327 gtk_widget_show (vbox7);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
328 gtk_container_add (GTK_CONTAINER (notebook1), vbox7);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
329 gtk_container_set_border_width (GTK_CONTAINER (vbox7), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
330
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
331 hbox15 = gtk_hbox_new (FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
332 gtk_widget_set_name (hbox15, "hbox15");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
333 gtk_widget_show (hbox15);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
334 gtk_box_pack_start (GTK_BOX (vbox7), hbox15, FALSE, TRUE, 0);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
335
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
336 frame5 = gtk_frame_new (NULL);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
337 gtk_widget_set_name (frame5, "frame5");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
338 gtk_widget_show (frame5);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
339 gtk_box_pack_start (GTK_BOX (hbox15), frame5, TRUE, TRUE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
340 gtk_container_set_border_width (GTK_CONTAINER (frame5), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
341
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
342 vbox20 = gtk_vbox_new (FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
343 gtk_widget_set_name (vbox20, "vbox20");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
344 gtk_widget_show (vbox20);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
345 gtk_container_add (GTK_CONTAINER (frame5), vbox20);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
346 gtk_container_set_border_width (GTK_CONTAINER (vbox20), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
347
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
348 fxReverb = gtk_check_button_new_with_mnemonic (_("Enable"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
349 gtk_widget_set_name (fxReverb, "fxReverb");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
350 gtk_widget_show (fxReverb);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
351 gtk_box_pack_start (GTK_BOX (vbox20), fxReverb, FALSE, FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
352 gtk_container_set_border_width (GTK_CONTAINER (fxReverb), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
353 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fxReverb), TRUE);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
354
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
355 table1 = gtk_table_new (2, 2, FALSE);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
356 gtk_widget_set_name (table1, "table1");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
357 gtk_widget_show (table1);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
358 gtk_box_pack_start (GTK_BOX (vbox20), table1, TRUE, TRUE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
359 gtk_container_set_border_width (GTK_CONTAINER (table1), 2);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
360 gtk_table_set_row_spacings (GTK_TABLE (table1), 4);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
361 gtk_table_set_col_spacings (GTK_TABLE (table1), 4);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
362
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
363 fxReverbDepth = gtk_hscale_new (GTK_ADJUSTMENT (gtk_adjustment_new (30, 0, 100, 0, 0, 0)));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
364 gtk_widget_set_name (fxReverbDepth, "fxReverbDepth");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
365 gtk_widget_show (fxReverbDepth);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
366 gtk_table_attach (GTK_TABLE (table1), fxReverbDepth, 1, 2, 0, 1,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
367 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
368 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), 0, 0);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
369
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
370 fxReverbDelay = gtk_hscale_new (GTK_ADJUSTMENT (gtk_adjustment_new (90, 40, 200, 0, 0, 0)));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
371 gtk_widget_set_name (fxReverbDelay, "fxReverbDelay");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
372 gtk_widget_show (fxReverbDelay);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
373 gtk_table_attach (GTK_TABLE (table1), fxReverbDelay, 1, 2, 1, 2,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
374 (GtkAttachOptions) (GTK_FILL),
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
375 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), 0, 0);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
376
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
377 xlabel3 = gtk_label_new (_("Depth"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
378 gtk_widget_set_name (xlabel3, "xlabel3");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
379 gtk_widget_show (xlabel3);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
380 gtk_table_attach (GTK_TABLE (table1), xlabel3, 0, 1, 0, 1,
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
381 (GtkAttachOptions) (0),
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
382 (GtkAttachOptions) (0), 0, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
383 gtk_label_set_justify (GTK_LABEL (xlabel3), GTK_JUSTIFY_CENTER);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
384
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
385 xlabel4 = gtk_label_new (_("Delay"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
386 gtk_widget_set_name (xlabel4, "xlabel4");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
387 gtk_widget_show (xlabel4);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
388 gtk_table_attach (GTK_TABLE (table1), xlabel4, 0, 1, 1, 2,
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
389 (GtkAttachOptions) (0),
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
390 (GtkAttachOptions) (0), 0, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
391 gtk_label_set_justify (GTK_LABEL (xlabel4), GTK_JUSTIFY_CENTER);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
392
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
393 label6 = gtk_label_new (_("Reverb"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
394 gtk_widget_set_name (label6, "label6");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
395 gtk_widget_show (label6);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
396 gtk_frame_set_label_widget (GTK_FRAME (frame5), label6);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
397
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
398 frame6 = gtk_frame_new (NULL);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
399 gtk_widget_set_name (frame6, "frame6");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
400 gtk_widget_show (frame6);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
401 gtk_box_pack_start (GTK_BOX (hbox15), frame6, TRUE, TRUE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
402 gtk_container_set_border_width (GTK_CONTAINER (frame6), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
403
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
404 vbox21 = gtk_vbox_new (FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
405 gtk_widget_set_name (vbox21, "vbox21");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
406 gtk_widget_show (vbox21);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
407 gtk_container_add (GTK_CONTAINER (frame6), vbox21);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
408 gtk_container_set_border_width (GTK_CONTAINER (vbox21), 2);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
409
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
410 fxBassBoost = gtk_check_button_new_with_mnemonic (_("Enable"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
411 gtk_widget_set_name (fxBassBoost, "fxBassBoost");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
412 gtk_widget_show (fxBassBoost);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
413 gtk_box_pack_start (GTK_BOX (vbox21), fxBassBoost, FALSE, FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
414 gtk_container_set_border_width (GTK_CONTAINER (fxBassBoost), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
415 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fxBassBoost), TRUE);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
416
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
417 table2 = gtk_table_new (2, 2, FALSE);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
418 gtk_widget_set_name (table2, "table2");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
419 gtk_widget_show (table2);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
420 gtk_box_pack_start (GTK_BOX (vbox21), table2, TRUE, TRUE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
421 gtk_container_set_border_width (GTK_CONTAINER (table2), 2);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
422 gtk_table_set_row_spacings (GTK_TABLE (table2), 4);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
423 gtk_table_set_col_spacings (GTK_TABLE (table2), 4);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
424
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
425 fxBassAmount = gtk_hscale_new (GTK_ADJUSTMENT (gtk_adjustment_new (30, 0, 100, 0, 0, 0)));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
426 gtk_widget_set_name (fxBassAmount, "fxBassAmount");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
427 gtk_widget_show (fxBassAmount);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
428 gtk_table_attach (GTK_TABLE (table2), fxBassAmount, 1, 2, 0, 1,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
429 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
430 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), 0, 0);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
431
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
432 fxBassRange = gtk_hscale_new (GTK_ADJUSTMENT (gtk_adjustment_new (30, 10, 100, 0, 0, 0)));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
433 gtk_widget_set_name (fxBassRange, "fxBassRange");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
434 gtk_widget_show (fxBassRange);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
435 gtk_table_attach (GTK_TABLE (table2), fxBassRange, 1, 2, 1, 2,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
436 (GtkAttachOptions) (GTK_FILL),
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
437 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), 0, 0);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
438
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
439 xlabel5 = gtk_label_new (_("Amount"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
440 gtk_widget_set_name (xlabel5, "xlabel5");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
441 gtk_widget_show (xlabel5);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
442 gtk_table_attach (GTK_TABLE (table2), xlabel5, 0, 1, 0, 1,
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
443 (GtkAttachOptions) (0),
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
444 (GtkAttachOptions) (0), 0, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
445 gtk_label_set_justify (GTK_LABEL (xlabel5), GTK_JUSTIFY_CENTER);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
446
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
447 xlabel6 = gtk_label_new (_("Range"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
448 gtk_widget_set_name (xlabel6, "xlabel6");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
449 gtk_widget_show (xlabel6);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
450 gtk_table_attach (GTK_TABLE (table2), xlabel6, 0, 1, 1, 2,
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
451 (GtkAttachOptions) (0),
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
452 (GtkAttachOptions) (0), 0, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
453 gtk_label_set_justify (GTK_LABEL (xlabel6), GTK_JUSTIFY_CENTER);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
454
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
455 label7 = gtk_label_new (_("Bass Boost"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
456 gtk_widget_set_name (label7, "label7");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
457 gtk_widget_show (label7);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
458 gtk_frame_set_label_widget (GTK_FRAME (frame6), label7);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
459
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
460 hbox16 = gtk_hbox_new (FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
461 gtk_widget_set_name (hbox16, "hbox16");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
462 gtk_widget_show (hbox16);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
463 gtk_box_pack_start (GTK_BOX (vbox7), hbox16, FALSE, TRUE, 0);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
464
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
465 frame7 = gtk_frame_new (NULL);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
466 gtk_widget_set_name (frame7, "frame7");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
467 gtk_widget_show (frame7);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
468 gtk_box_pack_start (GTK_BOX (hbox16), frame7, TRUE, TRUE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
469 gtk_container_set_border_width (GTK_CONTAINER (frame7), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
470
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
471 vbox22 = gtk_vbox_new (FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
472 gtk_widget_set_name (vbox22, "vbox22");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
473 gtk_widget_show (vbox22);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
474 gtk_container_add (GTK_CONTAINER (frame7), vbox22);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
475
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
476 fxSurround = gtk_check_button_new_with_mnemonic (_("Enable"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
477 gtk_widget_set_name (fxSurround, "fxSurround");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
478 gtk_widget_show (fxSurround);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
479 gtk_box_pack_start (GTK_BOX (vbox22), fxSurround, FALSE, FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
480 gtk_container_set_border_width (GTK_CONTAINER (fxSurround), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
481 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fxSurround), TRUE);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
482
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
483 table3 = gtk_table_new (2, 2, FALSE);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
484 gtk_widget_set_name (table3, "table3");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
485 gtk_widget_show (table3);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
486 gtk_box_pack_start (GTK_BOX (vbox22), table3, TRUE, TRUE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
487 gtk_container_set_border_width (GTK_CONTAINER (table3), 2);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
488 gtk_table_set_row_spacings (GTK_TABLE (table3), 4);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
489 gtk_table_set_col_spacings (GTK_TABLE (table3), 4);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
490
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
491 fxSurroundDepth = gtk_hscale_new (GTK_ADJUSTMENT (gtk_adjustment_new (20, 0, 100, 0, 0, 0)));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
492 gtk_widget_set_name (fxSurroundDepth, "fxSurroundDepth");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
493 gtk_widget_show (fxSurroundDepth);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
494 gtk_table_attach (GTK_TABLE (table3), fxSurroundDepth, 1, 2, 0, 1,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
495 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL),
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
496 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), 0, 0);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
497
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
498 fxSurroundDelay = gtk_hscale_new (GTK_ADJUSTMENT (gtk_adjustment_new (20, 5, 40, 0, 0, 0)));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
499 gtk_widget_set_name (fxSurroundDelay, "fxSurroundDelay");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
500 gtk_widget_show (fxSurroundDelay);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
501 gtk_table_attach (GTK_TABLE (table3), fxSurroundDelay, 1, 2, 1, 2,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
502 (GtkAttachOptions) (GTK_FILL),
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
503 (GtkAttachOptions) (GTK_EXPAND | GTK_FILL), 0, 0);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
504
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
505 xlabel7 = gtk_label_new (_("Depth"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
506 gtk_widget_set_name (xlabel7, "xlabel7");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
507 gtk_widget_show (xlabel7);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
508 gtk_table_attach (GTK_TABLE (table3), xlabel7, 0, 1, 0, 1,
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
509 (GtkAttachOptions) (0),
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
510 (GtkAttachOptions) (0), 0, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
511 gtk_label_set_justify (GTK_LABEL (xlabel7), GTK_JUSTIFY_CENTER);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
512
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
513 label8 = gtk_label_new (_("Delay"));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
514 gtk_widget_set_name (label8, "label8");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
515 gtk_widget_show (label8);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
516 gtk_table_attach (GTK_TABLE (table3), label8, 0, 1, 1, 2,
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
517 (GtkAttachOptions) (0),
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
518 (GtkAttachOptions) (0), 0, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
519 gtk_label_set_justify (GTK_LABEL (label8), GTK_JUSTIFY_CENTER);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
520
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
521 xlabel8 = gtk_label_new (_("Surround"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
522 gtk_widget_set_name (xlabel8, "xlabel8");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
523 gtk_widget_show (xlabel8);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
524 gtk_frame_set_label_widget (GTK_FRAME (frame7), xlabel8);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
525
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
526 frame10 = gtk_frame_new (NULL);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
527 gtk_widget_set_name (frame10, "frame10");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
528 gtk_widget_show (frame10);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
529 gtk_box_pack_start (GTK_BOX (hbox16), frame10, TRUE, TRUE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
530 gtk_container_set_border_width (GTK_CONTAINER (frame10), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
531
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
532 vbox16 = gtk_vbox_new (FALSE, 2);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
533 gtk_widget_set_name (vbox16, "vbox16");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
534 gtk_widget_show (vbox16);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
535 gtk_container_add (GTK_CONTAINER (frame10), vbox16);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
536 gtk_container_set_border_width (GTK_CONTAINER (vbox16), 4);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
537
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
538 fxPreamp = gtk_check_button_new_with_mnemonic (_("Enable"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
539 gtk_widget_set_name (fxPreamp, "fxPreamp");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
540 gtk_widget_show (fxPreamp);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
541 gtk_box_pack_start (GTK_BOX (vbox16), fxPreamp, FALSE, FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
542 gtk_container_set_border_width (GTK_CONTAINER (fxPreamp), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
543
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
544 hbox11 = gtk_hbox_new (FALSE, 4);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
545 gtk_widget_set_name (hbox11, "hbox11");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
546 gtk_widget_show (hbox11);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
547 gtk_box_pack_start (GTK_BOX (vbox16), hbox11, TRUE, TRUE, 0);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
548
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
549 label19 = gtk_label_new (_("Volume"));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
550 gtk_widget_set_name (label19, "label19");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
551 gtk_widget_show (label19);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
552 gtk_box_pack_start (GTK_BOX (hbox11), label19, FALSE, FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
553 gtk_label_set_justify (GTK_LABEL (label19), GTK_JUSTIFY_CENTER);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
554
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
555 fxPreampLevel = gtk_hscale_new (GTK_ADJUSTMENT (gtk_adjustment_new (0, -3, 3, 1, 0, 0)));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
556 gtk_widget_set_name (fxPreampLevel, "fxPreampLevel");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
557 gtk_widget_show (fxPreampLevel);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
558 gtk_box_pack_start (GTK_BOX (hbox11), fxPreampLevel, TRUE, TRUE, 0);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
559
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
560 label20 = gtk_label_new (_("Note: Setting the preamp\ntoo high may cause clipping\n(annoying clicks and pops)!"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
561 gtk_widget_set_name (label20, "label20");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
562 gtk_widget_show (label20);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
563 gtk_box_pack_start (GTK_BOX (vbox16), label20, FALSE, FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
564 gtk_label_set_justify (GTK_LABEL (label20), GTK_JUSTIFY_CENTER);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
565
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
566 label9 = gtk_label_new (_("Preamp"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
567 gtk_widget_set_name (label9, "label9");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
568 gtk_widget_show (label9);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
569 gtk_frame_set_label_widget (GTK_FRAME (frame10), label9);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
570
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
571 label10 = gtk_label_new (_("Effects"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
572 gtk_widget_set_name (label10, "label10");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
573 gtk_widget_show (label10);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
574 gtk_notebook_set_tab_label (GTK_NOTEBOOK (notebook1), gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook1), 1), label10);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
575 gtk_label_set_justify (GTK_LABEL (label10), GTK_JUSTIFY_CENTER);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
576
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
577 vbox19 = gtk_vbox_new (FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
578 gtk_widget_set_name (vbox19, "vbox19");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
579 gtk_widget_show (vbox19);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
580 gtk_container_add (GTK_CONTAINER (notebook1), vbox19);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
581 gtk_container_set_border_width (GTK_CONTAINER (vbox19), 2);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
582
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
583 frame4 = gtk_frame_new (NULL);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
584 gtk_widget_set_name (frame4, "frame4");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
585 gtk_widget_show (frame4);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
586 gtk_box_pack_start (GTK_BOX (vbox19), frame4, FALSE, TRUE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
587 gtk_container_set_border_width (GTK_CONTAINER (frame4), 2);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
588
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
589 hbox3 = gtk_hbox_new (FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
590 gtk_widget_set_name (hbox3, "hbox3");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
591 gtk_widget_show (hbox3);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
592 gtk_container_add (GTK_CONTAINER (frame4), hbox3);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
593 gtk_container_set_border_width (GTK_CONTAINER (hbox3), 2);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
594
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
595 vbox8 = gtk_vbox_new (FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
596 gtk_widget_set_name (vbox8, "vbox8");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
597 gtk_widget_show (vbox8);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
598 gtk_box_pack_start (GTK_BOX (hbox3), vbox8, TRUE, TRUE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
599
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
600 fxUseFilename = gtk_check_button_new_with_mnemonic (_("Use Filename as Song Title"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
601 gtk_widget_set_name (fxUseFilename, "fxUseFilename");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
602 gtk_widget_show (fxUseFilename);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
603 gtk_box_pack_start (GTK_BOX (vbox8), fxUseFilename, FALSE, FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
604
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
605 fxFastInfo = gtk_check_button_new_with_mnemonic (_("Fast Playlist Info"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
606 gtk_widget_set_name (fxFastInfo, "fxFastInfo");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
607 gtk_widget_show (fxFastInfo);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
608 gtk_box_pack_start (GTK_BOX (vbox8), fxFastInfo, FALSE, FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
609 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fxFastInfo), TRUE);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
610
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
611 vbox9 = gtk_vbox_new (FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
612 gtk_widget_set_name (vbox9, "vbox9");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
613 gtk_widget_show (vbox9);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
614 gtk_box_pack_start (GTK_BOX (hbox3), vbox9, TRUE, TRUE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
615
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
616 fxNR = gtk_check_button_new_with_mnemonic (_("Noise Reduction"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
617 gtk_widget_set_name (fxNR, "fxNR");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
618 gtk_widget_show (fxNR);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
619 gtk_box_pack_start (GTK_BOX (vbox9), fxNR, FALSE, FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
620 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fxNR), TRUE);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
621
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
622 fxAmigaMOD = gtk_check_button_new_with_mnemonic (_("Play Amiga MOD"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
623 gtk_widget_set_name (fxAmigaMOD, "fxAmigaMOD");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
624 gtk_widget_show (fxAmigaMOD);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
625 gtk_box_pack_start (GTK_BOX (vbox9), fxAmigaMOD, FALSE, FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
626 gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (fxAmigaMOD), TRUE);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
627
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
628 label21 = gtk_label_new (_("General"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
629 gtk_widget_set_name (label21, "label21");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
630 gtk_widget_show (label21);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
631 gtk_frame_set_label_widget (GTK_FRAME (frame4), label21);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
632
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
633 frame11 = gtk_frame_new (NULL);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
634 gtk_widget_set_name (frame11, "frame11");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
635 gtk_widget_show (frame11);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
636 gtk_box_pack_start (GTK_BOX (vbox19), frame11, FALSE, TRUE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
637 gtk_container_set_border_width (GTK_CONTAINER (frame11), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
638
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
639 vbox17 = gtk_vbox_new (FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
640 gtk_widget_set_name (vbox17, "vbox17");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
641 gtk_widget_show (vbox17);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
642 gtk_container_add (GTK_CONTAINER (frame11), vbox17);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
643 gtk_container_set_border_width (GTK_CONTAINER (vbox17), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
644
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
645 fxNoLoop = gtk_radio_button_new_with_mnemonic (NULL, _("Don't loop"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
646 gtk_widget_set_name (fxNoLoop, "fxNoLoop");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
647 gtk_widget_show (fxNoLoop);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
648 gtk_box_pack_start (GTK_BOX (vbox17), fxNoLoop, FALSE, FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
649 gtk_radio_button_set_group (GTK_RADIO_BUTTON (fxNoLoop), fxNoLoop_group);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
650 fxNoLoop_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (fxNoLoop));
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
651
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
652 hbox13 = gtk_hbox_new (FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
653 gtk_widget_set_name (hbox13, "hbox13");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
654 gtk_widget_show (hbox13);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
655 gtk_box_pack_start (GTK_BOX (vbox17), hbox13, FALSE, FALSE, 0);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
656
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
657 fxLoopFinite = gtk_radio_button_new_with_mnemonic (NULL, _("Loop"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
658 gtk_widget_set_name (fxLoopFinite, "fxLoopFinite");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
659 gtk_widget_show (fxLoopFinite);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
660 gtk_box_pack_start (GTK_BOX (hbox13), fxLoopFinite, FALSE, FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
661 gtk_radio_button_set_group (GTK_RADIO_BUTTON (fxLoopFinite), fxNoLoop_group);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
662 fxNoLoop_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (fxLoopFinite));
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
663
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
664 fxLoopCount_adj = gtk_adjustment_new (1, 0, 100, 1, 10, 10);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
665 fxLoopCount = gtk_spin_button_new (GTK_ADJUSTMENT (fxLoopCount_adj), 1, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
666 gtk_widget_set_name (fxLoopCount, "fxLoopCount");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
667 gtk_widget_show (fxLoopCount);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
668 gtk_box_pack_start (GTK_BOX (hbox13), fxLoopCount, FALSE, TRUE, 0);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
669
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
670 xlabel21 = gtk_label_new (_("time(s)"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
671 gtk_widget_set_name (xlabel21, "xlabel21");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
672 gtk_widget_show (xlabel21);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
673 gtk_box_pack_start (GTK_BOX (hbox13), xlabel21, FALSE, FALSE, 0);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
674 gtk_label_set_justify (GTK_LABEL (xlabel21), GTK_JUSTIFY_CENTER);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
675
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
676 fxLoopForever = gtk_radio_button_new_with_mnemonic (NULL, _("Loop forever"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
677 gtk_widget_set_name (fxLoopForever, "fxLoopForever");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
678 gtk_widget_show (fxLoopForever);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
679 gtk_box_pack_start (GTK_BOX (vbox17), fxLoopForever, FALSE, FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
680 gtk_radio_button_set_group (GTK_RADIO_BUTTON (fxLoopForever), fxNoLoop_group);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
681 fxNoLoop_group = gtk_radio_button_get_group (GTK_RADIO_BUTTON (fxLoopForever));
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
682
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
683 label22 = gtk_label_new (_("Looping"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
684 gtk_widget_set_name (label22, "label22");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
685 gtk_widget_show (label22);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
686 gtk_frame_set_label_widget (GTK_FRAME (frame11), label22);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
687
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
688 xlabel22 = gtk_label_new (_("Misc"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
689 gtk_widget_set_name (xlabel22, "xlabel22");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
690 gtk_widget_show (xlabel22);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
691 gtk_notebook_set_tab_label (GTK_NOTEBOOK (notebook1), gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook1), 2), xlabel22);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
692 gtk_label_set_justify (GTK_LABEL (xlabel22), GTK_JUSTIFY_CENTER);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
693
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
694 hbuttonbox2 = gtk_hbutton_box_new ();
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
695 gtk_widget_set_name (hbuttonbox2, "hbuttonbox2");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
696 gtk_widget_show (hbuttonbox2);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
697 gtk_box_pack_start (GTK_BOX (vbox2), hbuttonbox2, TRUE, TRUE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
698 gtk_container_set_border_width (GTK_CONTAINER (hbuttonbox2), 4);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
699 gtk_button_box_set_layout (GTK_BUTTON_BOX (hbuttonbox2), GTK_BUTTONBOX_END);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
700 gtk_box_set_spacing (GTK_BOX (hbuttonbox2), 8);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
701
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
702 config_ok = gtk_button_new_with_mnemonic (_("OK"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
703 gtk_widget_set_name (config_ok, "config_ok");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
704 gtk_widget_show (config_ok);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
705 gtk_container_add (GTK_CONTAINER (hbuttonbox2), config_ok);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
706 GTK_WIDGET_SET_FLAGS (config_ok, GTK_CAN_DEFAULT);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
707
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
708 config_apply = gtk_button_new_with_mnemonic (_("Apply"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
709 gtk_widget_set_name (config_apply, "config_apply");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
710 gtk_widget_show (config_apply);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
711 gtk_container_add (GTK_CONTAINER (hbuttonbox2), config_apply);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
712 GTK_WIDGET_SET_FLAGS (config_apply, GTK_CAN_DEFAULT);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
713
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
714 config_cancel = gtk_button_new_with_mnemonic (_("Cancel"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
715 gtk_widget_set_name (config_cancel, "config_cancel");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
716 gtk_widget_show (config_cancel);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
717 gtk_container_add (GTK_CONTAINER (hbuttonbox2), config_cancel);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
718 GTK_WIDGET_SET_FLAGS (config_cancel, GTK_CAN_DEFAULT);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
719
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
720 g_signal_connect ((gpointer) Config, "delete_event",
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
721 G_CALLBACK (hide_window),
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
722 NULL);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
723 g_signal_connect ((gpointer) config_ok, "clicked",
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
724 G_CALLBACK (on_config_ok_clicked),
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
725 NULL);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
726 g_signal_connect ((gpointer) config_apply, "clicked",
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
727 G_CALLBACK (on_config_apply_clicked),
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
728 NULL);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
729 g_signal_connect ((gpointer) config_cancel, "clicked",
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
730 G_CALLBACK (on_config_cancel_clicked),
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
731 NULL);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
732
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
733 /* Store pointers to all widgets, for use by lookup_widget(). */
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
734 GLADE_HOOKUP_OBJECT_NO_REF (Config, Config, "Config");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
735 GLADE_HOOKUP_OBJECT (Config, vbox2, "vbox2");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
736 GLADE_HOOKUP_OBJECT (Config, notebook1, "notebook1");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
737 GLADE_HOOKUP_OBJECT (Config, vbox3, "vbox3");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
738 GLADE_HOOKUP_OBJECT (Config, hbox2, "hbox2");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
739 GLADE_HOOKUP_OBJECT (Config, frame1, "frame1");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
740 GLADE_HOOKUP_OBJECT (Config, vbox4, "vbox4");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
741 GLADE_HOOKUP_OBJECT (Config, bit16, "bit16");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
742 GLADE_HOOKUP_OBJECT (Config, bit8, "bit8");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
743 GLADE_HOOKUP_OBJECT (Config, xlabel2, "xlabel2");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
744 GLADE_HOOKUP_OBJECT (Config, frame2, "frame2");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
745 GLADE_HOOKUP_OBJECT (Config, vbox5, "vbox5");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
746 GLADE_HOOKUP_OBJECT (Config, stereo, "stereo");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
747 GLADE_HOOKUP_OBJECT (Config, mono, "mono");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
748 GLADE_HOOKUP_OBJECT (Config, label3, "label3");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
749 GLADE_HOOKUP_OBJECT (Config, hbox14, "hbox14");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
750 GLADE_HOOKUP_OBJECT (Config, frame9, "frame9");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
751 GLADE_HOOKUP_OBJECT (Config, vbox15, "vbox15");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
752 GLADE_HOOKUP_OBJECT (Config, resampNearest, "resampNearest");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
753 GLADE_HOOKUP_OBJECT (Config, resampLinear, "resampLinear");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
754 GLADE_HOOKUP_OBJECT (Config, resampSpline, "resampSpline");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
755 GLADE_HOOKUP_OBJECT (Config, resampPolyphase, "resampPolyphase");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
756 GLADE_HOOKUP_OBJECT (Config, label4, "label4");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
757 GLADE_HOOKUP_OBJECT (Config, frame3, "frame3");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
758 GLADE_HOOKUP_OBJECT (Config, vbox6, "vbox6");
2271
4b53cd5812e2 Re-added 48kHz support to the GUI
Christian Birchinger <joker@netswarm.net>
parents: 2082
diff changeset
759 GLADE_HOOKUP_OBJECT (Config, samp48, "samp48");
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
760 GLADE_HOOKUP_OBJECT (Config, samp44, "samp44");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
761 GLADE_HOOKUP_OBJECT (Config, samp22, "samp22");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
762 GLADE_HOOKUP_OBJECT (Config, samp11, "samp11");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
763 GLADE_HOOKUP_OBJECT (Config, label5, "label5");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
764 GLADE_HOOKUP_OBJECT (Config, label2, "label2");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
765 GLADE_HOOKUP_OBJECT (Config, vbox7, "vbox7");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
766 GLADE_HOOKUP_OBJECT (Config, hbox15, "hbox15");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
767 GLADE_HOOKUP_OBJECT (Config, frame5, "frame5");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
768 GLADE_HOOKUP_OBJECT (Config, vbox20, "vbox20");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
769 GLADE_HOOKUP_OBJECT (Config, fxReverb, "fxReverb");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
770 GLADE_HOOKUP_OBJECT (Config, table1, "table1");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
771 GLADE_HOOKUP_OBJECT (Config, fxReverbDepth, "fxReverbDepth");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
772 GLADE_HOOKUP_OBJECT (Config, fxReverbDelay, "fxReverbDelay");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
773 GLADE_HOOKUP_OBJECT (Config, xlabel3, "xlabel3");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
774 GLADE_HOOKUP_OBJECT (Config, xlabel4, "xlabel4");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
775 GLADE_HOOKUP_OBJECT (Config, label6, "label6");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
776 GLADE_HOOKUP_OBJECT (Config, frame6, "frame6");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
777 GLADE_HOOKUP_OBJECT (Config, vbox21, "vbox21");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
778 GLADE_HOOKUP_OBJECT (Config, fxBassBoost, "fxBassBoost");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
779 GLADE_HOOKUP_OBJECT (Config, table2, "table2");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
780 GLADE_HOOKUP_OBJECT (Config, fxBassAmount, "fxBassAmount");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
781 GLADE_HOOKUP_OBJECT (Config, fxBassRange, "fxBassRange");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
782 GLADE_HOOKUP_OBJECT (Config, xlabel5, "xlabel5");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
783 GLADE_HOOKUP_OBJECT (Config, xlabel6, "xlabel6");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
784 GLADE_HOOKUP_OBJECT (Config, label7, "label7");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
785 GLADE_HOOKUP_OBJECT (Config, hbox16, "hbox16");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
786 GLADE_HOOKUP_OBJECT (Config, frame7, "frame7");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
787 GLADE_HOOKUP_OBJECT (Config, vbox22, "vbox22");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
788 GLADE_HOOKUP_OBJECT (Config, fxSurround, "fxSurround");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
789 GLADE_HOOKUP_OBJECT (Config, table3, "table3");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
790 GLADE_HOOKUP_OBJECT (Config, fxSurroundDepth, "fxSurroundDepth");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
791 GLADE_HOOKUP_OBJECT (Config, fxSurroundDelay, "fxSurroundDelay");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
792 GLADE_HOOKUP_OBJECT (Config, xlabel7, "xlabel7");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
793 GLADE_HOOKUP_OBJECT (Config, label8, "label8");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
794 GLADE_HOOKUP_OBJECT (Config, xlabel8, "xlabel8");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
795 GLADE_HOOKUP_OBJECT (Config, frame10, "frame10");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
796 GLADE_HOOKUP_OBJECT (Config, vbox16, "vbox16");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
797 GLADE_HOOKUP_OBJECT (Config, fxPreamp, "fxPreamp");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
798 GLADE_HOOKUP_OBJECT (Config, hbox11, "hbox11");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
799 GLADE_HOOKUP_OBJECT (Config, label19, "label19");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
800 GLADE_HOOKUP_OBJECT (Config, fxPreampLevel, "fxPreampLevel");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
801 GLADE_HOOKUP_OBJECT (Config, label20, "label20");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
802 GLADE_HOOKUP_OBJECT (Config, label9, "label9");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
803 GLADE_HOOKUP_OBJECT (Config, label10, "label10");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
804 GLADE_HOOKUP_OBJECT (Config, vbox19, "vbox19");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
805 GLADE_HOOKUP_OBJECT (Config, frame4, "frame4");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
806 GLADE_HOOKUP_OBJECT (Config, hbox3, "hbox3");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
807 GLADE_HOOKUP_OBJECT (Config, vbox8, "vbox8");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
808 GLADE_HOOKUP_OBJECT (Config, fxUseFilename, "fxUseFilename");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
809 GLADE_HOOKUP_OBJECT (Config, fxFastInfo, "fxFastInfo");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
810 GLADE_HOOKUP_OBJECT (Config, vbox9, "vbox9");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
811 GLADE_HOOKUP_OBJECT (Config, fxNR, "fxNR");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
812 GLADE_HOOKUP_OBJECT (Config, fxAmigaMOD, "fxAmigaMOD");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
813 GLADE_HOOKUP_OBJECT (Config, label21, "label21");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
814 GLADE_HOOKUP_OBJECT (Config, frame11, "frame11");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
815 GLADE_HOOKUP_OBJECT (Config, vbox17, "vbox17");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
816 GLADE_HOOKUP_OBJECT (Config, fxNoLoop, "fxNoLoop");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
817 GLADE_HOOKUP_OBJECT (Config, hbox13, "hbox13");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
818 GLADE_HOOKUP_OBJECT (Config, fxLoopFinite, "fxLoopFinite");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
819 GLADE_HOOKUP_OBJECT (Config, fxLoopCount, "fxLoopCount");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
820 GLADE_HOOKUP_OBJECT (Config, xlabel21, "xlabel21");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
821 GLADE_HOOKUP_OBJECT (Config, fxLoopForever, "fxLoopForever");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
822 GLADE_HOOKUP_OBJECT (Config, label22, "label22");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
823 GLADE_HOOKUP_OBJECT (Config, xlabel22, "xlabel22");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
824 GLADE_HOOKUP_OBJECT (Config, hbuttonbox2, "hbuttonbox2");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
825 GLADE_HOOKUP_OBJECT (Config, config_ok, "config_ok");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
826 GLADE_HOOKUP_OBJECT (Config, config_apply, "config_apply");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
827 GLADE_HOOKUP_OBJECT (Config, config_cancel, "config_cancel");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
828
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
829 return Config;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
830 }
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
831
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
832 GtkWidget*
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
833 create_Info (void)
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
834 {
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
835 GtkWidget *Info;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
836 GtkWidget *vbox14;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
837 GtkWidget *notebook2;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
838 GtkWidget *hbox9;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
839 GtkWidget *label11;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
840 GtkWidget *info_general;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
841 GtkWidget *label13;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
842 GtkWidget *scrolledwindow1;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
843 GtkWidget *viewport1;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
844 GtkWidget *info_samples;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
845 GtkWidget *label15;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
846 GtkWidget *scrolledwindow2;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
847 GtkWidget *viewport2;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
848 GtkWidget *info_instruments;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
849 GtkWidget *label17;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
850 GtkWidget *scrolledwindow3;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
851 GtkWidget *info_message;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
852 GtkWidget *label18;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
853 GtkWidget *hbuttonbox3;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
854 GtkWidget *info_close;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
855
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
856 Info = gtk_window_new (GTK_WINDOW_TOPLEVEL);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
857 gtk_widget_set_name (Info, "Info");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
858 gtk_window_set_title (GTK_WINDOW (Info), _("MOD Info"));
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
859
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
860 vbox14 = gtk_vbox_new (FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
861 gtk_widget_set_name (vbox14, "vbox14");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
862 gtk_widget_show (vbox14);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
863 gtk_container_add (GTK_CONTAINER (Info), vbox14);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
864
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
865 notebook2 = gtk_notebook_new ();
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
866 gtk_widget_set_name (notebook2, "notebook2");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
867 gtk_widget_show (notebook2);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
868 gtk_box_pack_start (GTK_BOX (vbox14), notebook2, TRUE, TRUE, 8);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
869 gtk_container_set_border_width (GTK_CONTAINER (notebook2), 4);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
870
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
871 hbox9 = gtk_hbox_new (FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
872 gtk_widget_set_name (hbox9, "hbox9");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
873 gtk_widget_show (hbox9);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
874 gtk_container_add (GTK_CONTAINER (notebook2), hbox9);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
875 gtk_container_set_border_width (GTK_CONTAINER (hbox9), 2);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
876
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
877 label11 = gtk_label_new (_("Filename:\nTitle:\nType:\nLength:\nSpeed:\nTempo:\nSamples:\nInstruments:\nPatterns:\nChannels:"));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
878 gtk_widget_set_name (label11, "label11");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
879 gtk_widget_show (label11);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
880 gtk_box_pack_start (GTK_BOX (hbox9), label11, FALSE, FALSE, 4);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
881
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
882 info_general = gtk_label_new (_("---\n---\n---\n---\n---\n---\n---\n---\n---\n---"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
883 gtk_widget_set_name (info_general, "info_general");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
884 gtk_widget_show (info_general);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
885 gtk_box_pack_start (GTK_BOX (hbox9), info_general, FALSE, FALSE, 4);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
886
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
887 label13 = gtk_label_new (_("General"));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
888 gtk_widget_set_name (label13, "label13");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
889 gtk_widget_show (label13);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
890 gtk_notebook_set_tab_label (GTK_NOTEBOOK (notebook2), gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook2), 0), label13);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
891 gtk_label_set_justify (GTK_LABEL (label13), GTK_JUSTIFY_CENTER);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
892
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
893 scrolledwindow1 = gtk_scrolled_window_new (NULL, NULL);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
894 gtk_widget_set_name (scrolledwindow1, "scrolledwindow1");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
895 gtk_widget_show (scrolledwindow1);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
896 gtk_container_add (GTK_CONTAINER (notebook2), scrolledwindow1);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
897 gtk_container_set_border_width (GTK_CONTAINER (scrolledwindow1), 6);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
898 GTK_WIDGET_UNSET_FLAGS (scrolledwindow1, GTK_CAN_FOCUS);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
899 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolledwindow1), GTK_POLICY_NEVER, GTK_POLICY_ALWAYS);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
900
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
901 viewport1 = gtk_viewport_new (NULL, NULL);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
902 gtk_widget_set_name (viewport1, "viewport1");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
903 gtk_widget_show (viewport1);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
904 gtk_container_add (GTK_CONTAINER (scrolledwindow1), viewport1);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
905
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
906 info_samples = gtk_label_new ("");
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
907 gtk_widget_set_name (info_samples, "info_samples");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
908 gtk_widget_show (info_samples);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
909 gtk_container_add (GTK_CONTAINER (viewport1), info_samples);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
910 gtk_misc_set_alignment (GTK_MISC (info_samples), 7.45058e-09, 7.45058e-09);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
911
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
912 label15 = gtk_label_new (_("Samples"));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
913 gtk_widget_set_name (label15, "label15");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
914 gtk_widget_show (label15);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
915 gtk_notebook_set_tab_label (GTK_NOTEBOOK (notebook2), gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook2), 1), label15);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
916 gtk_label_set_justify (GTK_LABEL (label15), GTK_JUSTIFY_CENTER);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
917
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
918 scrolledwindow2 = gtk_scrolled_window_new (NULL, NULL);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
919 gtk_widget_set_name (scrolledwindow2, "scrolledwindow2");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
920 gtk_widget_show (scrolledwindow2);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
921 gtk_container_add (GTK_CONTAINER (notebook2), scrolledwindow2);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
922 gtk_container_set_border_width (GTK_CONTAINER (scrolledwindow2), 6);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
923 GTK_WIDGET_UNSET_FLAGS (scrolledwindow2, GTK_CAN_FOCUS);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
924 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolledwindow2), GTK_POLICY_NEVER, GTK_POLICY_ALWAYS);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
925
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
926 viewport2 = gtk_viewport_new (NULL, NULL);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
927 gtk_widget_set_name (viewport2, "viewport2");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
928 gtk_widget_show (viewport2);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
929 gtk_container_add (GTK_CONTAINER (scrolledwindow2), viewport2);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
930
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
931 info_instruments = gtk_label_new ("");
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
932 gtk_widget_set_name (info_instruments, "info_instruments");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
933 gtk_widget_show (info_instruments);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
934 gtk_container_add (GTK_CONTAINER (viewport2), info_instruments);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
935 gtk_misc_set_alignment (GTK_MISC (info_instruments), 1.49012e-08, 7.45058e-09);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
936
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
937 label17 = gtk_label_new (_("Instruments"));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
938 gtk_widget_set_name (label17, "label17");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
939 gtk_widget_show (label17);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
940 gtk_notebook_set_tab_label (GTK_NOTEBOOK (notebook2), gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook2), 2), label17);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
941 gtk_label_set_justify (GTK_LABEL (label17), GTK_JUSTIFY_CENTER);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
942
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
943 scrolledwindow3 = gtk_scrolled_window_new (NULL, NULL);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
944 gtk_widget_set_name (scrolledwindow3, "scrolledwindow3");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
945 gtk_widget_show (scrolledwindow3);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
946 gtk_container_add (GTK_CONTAINER (notebook2), scrolledwindow3);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
947 GTK_WIDGET_UNSET_FLAGS (scrolledwindow3, GTK_CAN_FOCUS);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
948 gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolledwindow3), GTK_POLICY_NEVER, GTK_POLICY_ALWAYS);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
949 gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrolledwindow3), GTK_SHADOW_IN);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
950
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
951 info_message = gtk_text_view_new ();
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
952 gtk_widget_set_name (info_message, "info_message");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
953 gtk_widget_show (info_message);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
954 gtk_container_add (GTK_CONTAINER (scrolledwindow3), info_message);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
955 gtk_text_view_set_editable (GTK_TEXT_VIEW (info_message), FALSE);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
956 gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (info_message), GTK_WRAP_WORD);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
957
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
958 label18 = gtk_label_new (_("Message"));
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
959 gtk_widget_set_name (label18, "label18");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
960 gtk_widget_show (label18);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
961 gtk_notebook_set_tab_label (GTK_NOTEBOOK (notebook2), gtk_notebook_get_nth_page (GTK_NOTEBOOK (notebook2), 3), label18);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
962 gtk_label_set_justify (GTK_LABEL (label18), GTK_JUSTIFY_CENTER);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
963
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
964 hbuttonbox3 = gtk_hbutton_box_new ();
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
965 gtk_widget_set_name (hbuttonbox3, "hbuttonbox3");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
966 gtk_widget_show (hbuttonbox3);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
967 gtk_box_pack_start (GTK_BOX (vbox14), hbuttonbox3, FALSE, FALSE, 0);
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
968 gtk_container_set_border_width (GTK_CONTAINER (hbuttonbox3), 2);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
969 gtk_box_set_spacing (GTK_BOX (hbuttonbox3), 30);
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
970
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
971 info_close = gtk_button_new_with_mnemonic (_("Close"));
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
972 gtk_widget_set_name (info_close, "info_close");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
973 gtk_widget_show (info_close);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
974 gtk_container_add (GTK_CONTAINER (hbuttonbox3), info_close);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
975 GTK_WIDGET_SET_FLAGS (info_close, GTK_CAN_DEFAULT);
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
976
1603
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
977 g_signal_connect ((gpointer) Info, "delete_event",
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
978 G_CALLBACK (hide_window),
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
979 NULL);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
980 g_signal_connect ((gpointer) info_close, "clicked",
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
981 G_CALLBACK (on_info_close_clicked),
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
982 NULL);
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
983
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
984 /* Store pointers to all widgets, for use by lookup_widget(). */
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
985 GLADE_HOOKUP_OBJECT_NO_REF (Info, Info, "Info");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
986 GLADE_HOOKUP_OBJECT (Info, vbox14, "vbox14");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
987 GLADE_HOOKUP_OBJECT (Info, notebook2, "notebook2");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
988 GLADE_HOOKUP_OBJECT (Info, hbox9, "hbox9");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
989 GLADE_HOOKUP_OBJECT (Info, label11, "label11");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
990 GLADE_HOOKUP_OBJECT (Info, info_general, "info_general");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
991 GLADE_HOOKUP_OBJECT (Info, label13, "label13");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
992 GLADE_HOOKUP_OBJECT (Info, scrolledwindow1, "scrolledwindow1");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
993 GLADE_HOOKUP_OBJECT (Info, viewport1, "viewport1");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
994 GLADE_HOOKUP_OBJECT (Info, info_samples, "info_samples");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
995 GLADE_HOOKUP_OBJECT (Info, label15, "label15");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
996 GLADE_HOOKUP_OBJECT (Info, scrolledwindow2, "scrolledwindow2");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
997 GLADE_HOOKUP_OBJECT (Info, viewport2, "viewport2");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
998 GLADE_HOOKUP_OBJECT (Info, info_instruments, "info_instruments");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
999 GLADE_HOOKUP_OBJECT (Info, label17, "label17");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
1000 GLADE_HOOKUP_OBJECT (Info, scrolledwindow3, "scrolledwindow3");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
1001 GLADE_HOOKUP_OBJECT (Info, info_message, "info_message");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
1002 GLADE_HOOKUP_OBJECT (Info, label18, "label18");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
1003 GLADE_HOOKUP_OBJECT (Info, hbuttonbox3, "hbuttonbox3");
3ba928b31aac Made the GUI dialogs (fileinfo & config) bit neater.
Matti Hamalainen <ccr@tnsp.org>
parents: 1302
diff changeset
1004 GLADE_HOOKUP_OBJECT (Info, info_close, "info_close");
0
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1005
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1006 return Info;
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1007 }
13389e613d67 [svn] - initial import of audacious-plugins tree (lots to do)
nenolod
parents:
diff changeset
1008