annotate src/xs_genui.h @ 577:fdddab8f0c1b

Scrubbing through the filter configuration code; Configuration dialog window delete event was not handled and caused problems if WM's "close window" was used, fixed.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 20 Mar 2007 13:43:00 +0000
parents cf32867a71ed
children a437571d0fc5
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
16
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
1 #include <gtk/gtk.h>
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
2
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
3
09fc890b5d3c Added new files
Matti Hamalainen <ccr@tnsp.org>
parents:
diff changeset
4 void
257
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
5 xs_cfg_oversample_toggled (GtkToggleButton *togglebutton,
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
6 gpointer user_data);
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
7
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
8 void
77
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 42
diff changeset
9 xs_cfg_emu_sidplay1_toggled (GtkToggleButton *togglebutton,
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 42
diff changeset
10 gpointer user_data);
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 42
diff changeset
11
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 42
diff changeset
12 void
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 42
diff changeset
13 xs_cfg_emu_sidplay2_toggled (GtkToggleButton *togglebutton,
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 42
diff changeset
14 gpointer user_data);
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 42
diff changeset
15
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 42
diff changeset
16 void
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 42
diff changeset
17 xs_cfg_emu_filters_toggled (GtkToggleButton *togglebutton,
3fca0b13a80a Configuration panel tweaking
Matti Hamalainen <ccr@tnsp.org>
parents: 42
diff changeset
18 gpointer user_data);
78
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
19
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
20 void
553
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
21 xs_cfg_sp1_filter_reset (GtkButton *button,
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
22 gpointer user_data);
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
23
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
24 void
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
25 xs_cfg_sp2_filter_load (GtkButton *button,
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
26 gpointer user_data);
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
27
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
28 void
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
29 xs_cfg_sp2_filter_save (GtkButton *button,
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
30 gpointer user_data);
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
31
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
32 void
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
33 xs_cfg_sp2_filter_import (GtkButton *button,
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
34 gpointer user_data);
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
35
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
36 void
cf32867a71ed GUI updates.
Matti Hamalainen <ccr@tnsp.org>
parents: 524
diff changeset
37 xs_cfg_sp2_filter_export (GtkButton *button,
103
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
38 gpointer user_data);
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
39
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
40 void
257
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
41 xs_cfg_mintime_enable_toggled (GtkToggleButton *togglebutton,
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
42 gpointer user_data);
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
43
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
44 void
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
45 xs_cfg_mintime_changed (GtkEditable *editable,
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
46 gpointer user_data);
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
47
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
48 void
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
49 xs_cfg_maxtime_enable_toggled (GtkToggleButton *togglebutton,
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
50 gpointer user_data);
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
51
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
52 void
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
53 xs_cfg_maxtime_changed (GtkEditable *editable,
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
54 gpointer user_data);
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
55
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
56 void
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
57 xs_cfg_sld_enable_toggled (GtkToggleButton *togglebutton,
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
58 gpointer user_data);
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
59
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
60 void
103
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
61 xs_cfg_sld_dbbrowse (GtkButton *button,
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
62 gpointer user_data);
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
63
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
64 void
257
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
65 xs_cfg_stil_enable_toggled (GtkToggleButton *togglebutton,
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
66 gpointer user_data);
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
67
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
68 void
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
69 xs_cfg_stil_browse (GtkButton *button,
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
70 gpointer user_data);
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
71
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
72 void
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
73 xs_cfg_hvsc_browse (GtkButton *button,
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
74 gpointer user_data);
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
75
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
76 void
78
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
77 xs_cfg_ftitle_override_toggled (GtkToggleButton *togglebutton,
ab522ab65c85 Various fixes and improvements
Matti Hamalainen <ccr@tnsp.org>
parents: 77
diff changeset
78 gpointer user_data);
103
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
79
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
80 void
257
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
81 xs_cfg_subauto_enable_toggled (GtkToggleButton *togglebutton,
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
82 gpointer user_data);
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
83
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
84 void
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
85 xs_cfg_subauto_min_only_toggled (GtkToggleButton *togglebutton,
103
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
86 gpointer user_data);
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
87
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
88 void
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
89 xs_cfg_ok (GtkButton *button,
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
90 gpointer user_data);
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
91
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
92 void
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
93 xs_cfg_cancel (GtkButton *button,
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
94 gpointer user_data);
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
95
339
456a30b1d1d7 UI changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 334
diff changeset
96 gboolean
456a30b1d1d7 UI changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 334
diff changeset
97 xs_fileinfo_delete (GtkWidget *widget,
456a30b1d1d7 UI changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 334
diff changeset
98 GdkEvent *event,
456a30b1d1d7 UI changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 334
diff changeset
99 gpointer user_data);
456a30b1d1d7 UI changes.
Matti Hamalainen <ccr@tnsp.org>
parents: 334
diff changeset
100
103
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
101 void
257
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
102 xs_subctrl_prevsong (GtkButton *button,
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
103 gpointer user_data);
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
104
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
105 void
3318a3028de6 Latest glade-generated header.
Matti Hamalainen <ccr@tnsp.org>
parents: 202
diff changeset
106 xs_subctrl_nextsong (GtkButton *button,
103
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
107 gpointer user_data);
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
108
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
109 void
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
110 xs_fileinfo_ok (GtkButton *button,
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
111 gpointer user_data);
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
112
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
113 void
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
114 xs_cfg_sldb_fs_ok (GtkButton *button,
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
115 gpointer user_data);
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
116
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
117 void
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
118 xs_cfg_sldb_fs_cancel (GtkButton *button,
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
119 gpointer user_data);
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
120
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
121 void
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
122 xs_cfg_stil_fs_ok (GtkButton *button,
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
123 gpointer user_data);
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
124
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
125 void
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
126 xs_cfg_stil_fs_cancel (GtkButton *button,
fe83646e6baa Changed plrFillBuffer()-functions to return actual number of samples computed.
Matti Hamalainen <ccr@tnsp.org>
parents: 78
diff changeset
127 gpointer user_data);
109
578b71b62eeb Fileinfo now basically working, STIL COMMENT-fields are not yet parsed or shown.
Matti Hamalainen <ccr@tnsp.org>
parents: 103
diff changeset
128
578b71b62eeb Fileinfo now basically working, STIL COMMENT-fields are not yet parsed or shown.
Matti Hamalainen <ccr@tnsp.org>
parents: 103
diff changeset
129 void
127
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 109
diff changeset
130 xs_cfg_hvsc_fs_ok (GtkButton *button,
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 109
diff changeset
131 gpointer user_data);
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 109
diff changeset
132
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 109
diff changeset
133 void
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 109
diff changeset
134 xs_cfg_hvsc_fs_cancel (GtkButton *button,
ddb513bd2610 Improved audio format support, now supported formats are "queried" from
Matti Hamalainen <ccr@tnsp.org>
parents: 109
diff changeset
135 gpointer user_data);
577
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
136
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
137 void
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
138 xs_filter_import_fs_ok (GtkButton *button,
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
139 gpointer user_data);
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
140
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
141 void
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
142 xs_filter_import_fs_cancel (GtkButton *button,
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
143 gpointer user_data);
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
144
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
145 void
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
146 xs_filter_export_fs_ok (GtkButton *button,
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
147 gpointer user_data);
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
148
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
149 void
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
150 xs_filter_export_fs_cancel (GtkButton *button,
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
151 gpointer user_data);
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
152
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
153 void
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
154 xs_cfg_sp2_filter_delete (GtkButton *button,
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
155 gpointer user_data);
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
156
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
157 gboolean
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
158 xs_configwin_delete (GtkWidget *widget,
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
159 GdkEvent *event,
fdddab8f0c1b Scrubbing through the filter configuration code; Configuration dialog
Matti Hamalainen <ccr@tnsp.org>
parents: 553
diff changeset
160 gpointer user_data);