root/sweep/trunk/src/callbacks.h

Revision 557, 6.5 kB (checked in by kickback, 4 years ago)

sweep: revert entire tree back to revision 530 state to facilitate quick bug fix release

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 /*
2  * Sweep, a sound wave editor.
3  *
4  * Copyright (C) 2000 Conrad Parker
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef __CALLBACKS_H__
22 #define __CALLBACKS_H__
23
24 #include <gtk/gtk.h>
25
26 void
27 sample_new_empty_cb (GtkWidget * widget, gpointer data);
28
29 void
30 sample_new_copy_cb (GtkWidget * widget, gpointer data);
31
32 void
33 view_new_all_cb (GtkWidget * widget, gpointer data);
34
35 void
36 view_new_cb (GtkWidget * widget, gpointer data);
37
38 void
39 view_close_cb (GtkWidget * widget, gpointer data);
40
41 void
42 exit_cb (GtkWidget * widget, gpointer data);
43
44 void
45 set_tool_cb (GtkWidget * widget, gpointer data);
46
47 void
48 view_set_tool_cb (GtkWidget * widget, gpointer data);
49
50 void
51 repeater_released_cb (GtkWidget * widget, gpointer data);
52
53 void
54 zoom_in_cb (GtkWidget * widget, gpointer data);
55
56 void
57 zoom_out_cb (GtkWidget * widget, gpointer data);
58
59 void
60 zoom_in_pressed_cb (GtkWidget * widget, gpointer data);
61
62 void
63 zoom_out_pressed_cb (GtkWidget * widget, gpointer data);
64
65 void
66 zoom_to_sel_cb (GtkWidget * widget, gpointer data);
67
68 void
69 zoom_left_cb (GtkWidget * widget, gpointer data);
70
71 void
72 zoom_right_cb (GtkWidget * widget, gpointer data);
73
74 void
75 zoom_all_cb (GtkWidget * widget, gpointer data);
76
77 void
78 zoom_2_1_cb (GtkWidget * widget, gpointer data);
79
80 void
81 zoom_norm_cb (GtkWidget * widget, gpointer data);
82
83 void
84 zoom_1to1_cb (GtkWidget * widget, gpointer data);
85
86 void
87 zoom_center_cb (GtkWidget * widget, gpointer data);
88
89 void
90 zoom_combo_changed_cb (GtkWidget * widget, gpointer data);
91
92 void
93 sample_set_color_cb (GtkWidget * widget, gpointer data);
94
95 void
96 device_config_cb (GtkWidget * widget, gpointer data);
97
98 void
99 follow_toggled_cb (GtkWidget * widget, gpointer data);
100
101 void
102 follow_toggle_cb (GtkWidget * widget, gpointer data);
103
104 void
105 loop_toggled_cb (GtkWidget * widget, gpointer data);
106
107 void
108 loop_toggle_cb (GtkWidget * widget, gpointer data);
109
110 void
111 playrev_toggled_cb (GtkWidget * widget, gpointer data);
112
113 void
114 playrev_toggle_cb (GtkWidget * widget, gpointer data);
115
116 void
117 mute_toggled_cb (GtkWidget * widget, gpointer data);
118
119 void
120 mute_toggle_cb (GtkWidget * widget, gpointer data);
121
122 void
123 monitor_toggled_cb (GtkWidget * widget, gpointer data);
124
125 void
126 monitor_toggle_cb (GtkWidget * widget, gpointer data);
127
128 void
129 play_view_button_cb (GtkWidget * widget, gpointer data);
130
131 void
132 play_view_sel_button_cb (GtkWidget * widget, gpointer data);
133
134 void
135 play_view_cb (GtkWidget * widget, gpointer data);
136
137 void
138 play_view_all_once_cb (GtkWidget * widget, gpointer data);
139
140 void
141 play_view_all_loop_cb (GtkWidget * widget, gpointer data);
142
143 void
144 play_view_sel_cb (GtkWidget * widget, gpointer data);
145
146 void
147 play_view_sel_once_cb (GtkWidget * widget, gpointer data);
148
149 void
150 play_view_sel_loop_cb (GtkWidget * widget, gpointer data);
151
152 void
153 pause_playback_cb (GtkWidget * widget, gpointer data);
154
155 void
156 stop_playback_cb (GtkWidget * widget, gpointer data);
157
158 void
159 preview_cut_cb (GtkWidget * widget, gpointer data);
160
161 void
162 preroll_cb (GtkWidget * widget, gpointer data);
163
164 void
165 show_rec_dialog_cb (GtkWidget * widget, gpointer data);
166
167 void
168 page_back_cb (GtkWidget * widget, gpointer data);
169
170 void
171 page_fwd_cb (GtkWidget * widget, gpointer data);
172
173 void
174 rewind_pressed_cb (GtkWidget * widget, gpointer data);
175
176 void
177 ffwd_pressed_cb (GtkWidget * widget, gpointer data);
178
179 void
180 goto_start_cb (GtkWidget * widget, gpointer data);
181
182 void
183 goto_start_of_view_cb (GtkWidget * widget, gpointer data);
184
185 void
186 goto_end_of_view_cb (GtkWidget * widget, gpointer data);
187
188 void
189 goto_end_cb (GtkWidget * widget, gpointer data);
190
191 void
192 sd_sel_changed_cb (GtkWidget * widget);
193
194 void
195 sd_win_changed_cb (GtkWidget * widget);
196
197 void
198 adj_changed_cb (GtkWidget * widget, gpointer data);
199
200 void
201 adj_value_changed_cb (GtkWidget * widget, gpointer data);
202
203 void
204 select_invert_cb (GtkWidget * widget, gpointer data);
205
206 void
207 select_all_cb (GtkWidget * widget, gpointer data);
208
209 void
210 select_none_cb (GtkWidget * widget, gpointer data);
211
212 void
213 selection_halve_cb (GtkWidget * widget, gpointer data);
214
215 void
216 selection_double_cb (GtkWidget * widget, gpointer data);
217
218 void
219 select_shift_left_cb (GtkWidget * widget, gpointer data);
220
221 void
222 select_shift_right_cb (GtkWidget * widget, gpointer data);
223
224 void
225 show_undo_dialog_cb (GtkWidget * widget, gpointer data);
226
227 void
228 undo_cb (GtkWidget * widget, gpointer data);
229
230 void
231 redo_cb (GtkWidget * widget, gpointer data);
232
233 void
234 cancel_cb (GtkWidget * widget, gpointer data);
235
236 void
237 copy_cb (GtkWidget * widget, gpointer data);
238
239 void
240 cut_cb (GtkWidget * widget, gpointer data);
241
242 void
243 clear_cb (GtkWidget * widget, gpointer data);
244
245 void
246 delete_cb (GtkWidget * widget, gpointer data);
247
248 void
249 crop_cb (GtkWidget * widget, gpointer data);
250
251 void
252 paste_cb (GtkWidget * widget, gpointer data);
253
254 void
255 paste_mix_cb (GtkWidget * widget, gpointer data);
256
257 void
258 paste_xfade_cb (GtkWidget * widget, gpointer data);
259
260 void
261 paste_as_new_cb (GtkWidget * widget, gpointer data);
262
263 void
264 reverse_cb (GtkWidget * widget, gpointer data);
265
266 void
267 normalise_cb (GtkWidget * widget, gpointer data);
268
269 void
270 show_info_dialog_cb (GtkWidget * widget, gpointer data);
271
272 void
273 close_window_cb(GtkAccelGroup *accel_group,
274                                              GObject *acceleratable,
275                                              guint keyval,
276                                              GdkModifierType modifier);
277                                                                                          
278 void
279 hide_window_cb(GtkAccelGroup *accel_group,
280                                              GObject *acceleratable,
281                                              guint keyval,
282                                              GdkModifierType modifier);
283                                                                                          
284 void 
285 hack_max_label_width_cb (GtkWidget *widget,
286                                                         GtkStyle *previous_style,
287                             gpointer user_data);
288                                                        
289 void 
290 hack_max_combo_width_cb (GtkWidget *widget,
291                                                         GtkStyle *previous_style,
292                             gpointer user_data);
293 #if GTK_CHECK_VERSION(2, 10, 0)
294 void
295 recent_chooser_menu_activated_cb(GtkRecentChooser *chooser,
296                                  gpointer          user_data);
297 #endif
298
299 #endif /* __CALLBACKS_H__ */
Note: See TracBrowser for help on using the browser.