LiVES  3.0.2
callbacks.h
Go to the documentation of this file.
1 // callbacks.h
2 // LiVES
3 // (c) G. Finch <salsaman+lives@gmail.com> 2003 - 2017
4 // Released under the GPL 3 or later
5 // see file ../COPYING for licensing details
6 
7 #ifndef HAS_LIVES_CALLBACKS_H
8 #define HAS_LIVES_CALLBACKS_H
9 
10 #include "interface.h"
11 
12 void lives_exit(int signum);
13 
14 void lives_notify(int msgnumber, const char *msgstring);
15 
16 void lives_notify_int(int msgnumber, int msgint);
17 
18 void on_effects_paused(LiVESButton *, livespointer);
19 
20 void on_cancel_keep_button_clicked(LiVESButton *, livespointer);
21 
22 void on_cleardisk_activate(LiVESWidget *, livespointer);
23 
24 void on_cleardisk_advanced_clicked(LiVESWidget *, livespointer);
25 
26 void popup_lmap_errors(LiVESMenuItem *, livespointer);
27 
28 void switch_clip(int type, int newclip, boolean force);
29 
30 void switch_clip_activate(LiVESMenuItem *, livespointer);
31 
32 void on_details_button_clicked(void);
33 
34 boolean on_LiVES_delete_event(LiVESWidget *, LiVESXEvent *, livespointer);
35 
36 void on_open_activate(LiVESMenuItem *, livespointer);
37 
38 void on_open_sel_activate(LiVESMenuItem *, livespointer);
39 
40 void on_open_loc_activate(LiVESMenuItem *, livespointer);
41 
42 void on_open_utube_activate(LiVESMenuItem *, livespointer);
43 
44 void on_stop_clicked(LiVESMenuItem *, livespointer);
45 
46 #ifdef LIBAV_TRANSCODE
47 void on_transcode_activate(LiVESMenuItem *, livespointer);
48 #endif
49 
50 void on_save_selection_activate(LiVESMenuItem *, livespointer);
51 
52 void on_save_as_activate(LiVESMenuItem *, livespointer);
53 
54 void on_show_clipboard_info_activate(LiVESMenuItem *, livespointer);
55 
56 void on_close_activate(LiVESMenuItem *, livespointer);
57 
58 void on_import_proj_activate(LiVESMenuItem *, livespointer);
59 
60 void on_export_proj_activate(LiVESMenuItem *, livespointer);
61 
62 void on_export_theme_activate(LiVESMenuItem *, livespointer);
63 
64 void on_import_theme_activate(LiVESMenuItem *, livespointer);
65 
66 void on_quit_activate(LiVESMenuItem *, livespointer);
67 
68 void on_undo_activate(LiVESWidget *, livespointer);
69 
70 void on_redo_activate(LiVESWidget *, livespointer);
71 
72 void on_paste_as_new_activate(LiVESMenuItem *, livespointer);
73 
74 void on_copy_activate(LiVESMenuItem *, livespointer);
75 
76 void on_cut_activate(LiVESMenuItem *, livespointer);
77 
78 void on_insert_pre_activate(LiVESMenuItem *, livespointer);
79 
80 void on_insert_activate(LiVESButton *, livespointer);
81 
82 void on_merge_activate(LiVESMenuItem *, livespointer);
83 
84 void on_delete_activate(LiVESMenuItem *, livespointer);
85 
86 void on_select_all_activate(LiVESWidget *, livespointer);
87 
88 void on_select_new_activate(LiVESMenuItem *, livespointer);
89 
90 void on_select_last_activate(LiVESMenuItem *, livespointer);
91 
92 void on_select_to_end_activate(LiVESMenuItem *, livespointer);
93 
94 void on_select_from_start_activate(LiVESMenuItem *, livespointer);
95 
96 void on_lock_selwidth_activate(LiVESMenuItem *, livespointer);
97 
98 void on_playall_activate(LiVESMenuItem *, livespointer);
99 
100 void on_playsel_activate(LiVESMenuItem *, livespointer);
101 
102 void on_playclip_activate(LiVESMenuItem *, livespointer);
103 
104 void on_stop_activate(LiVESMenuItem *, livespointer);
105 
106 void on_rev_clipboard_activate(LiVESMenuItem *, livespointer);
107 
108 void on_encoder_entry_changed(LiVESCombo *, livespointer ptr);
109 
110 void on_show_file_info_activate(LiVESMenuItem *, livespointer);
111 
112 void on_about_activate(LiVESMenuItem *, livespointer);
113 
114 void show_manual_activate(LiVESMenuItem *, livespointer);
115 
116 void email_author_activate(LiVESMenuItem *, livespointer);
117 
118 void donate_activate(LiVESMenuItem *, livespointer);
119 
120 void report_bug_activate(LiVESMenuItem *, livespointer);
121 
122 void suggest_feature_activate(LiVESMenuItem *, livespointer);
123 
124 void help_translate_activate(LiVESMenuItem *, livespointer);
125 
126 void on_ok_button1_clicked(LiVESButton *, livespointer);
127 
128 void on_ok_file_open_clicked(LiVESFileChooser *, LiVESSList *fnames);
129 
130 void open_sel_range_activate(void);
131 
132 void on_location_select(LiVESButton *, livespointer);
133 
135 
136 void on_opensel_range_ok_clicked(LiVESButton *, livespointer);
137 
138 void on_open_sel_ok_button_clicked(LiVESButton *, livespointer);
139 
140 void on_save_textview_clicked(LiVESButton *, livespointer);
141 
142 void on_filechooser_cancel_clicked(LiVESWidget *);
143 
144 void on_full_screen_pressed(LiVESButton *, livespointer);
145 
146 void on_full_screen_activate(LiVESMenuItem *, livespointer);
147 
148 void on_double_size_pressed(LiVESButton *, livespointer);
149 
150 void on_double_size_activate(LiVESMenuItem *, livespointer);
151 
152 void on_sepwin_pressed(LiVESButton *, livespointer);
153 
154 void on_sepwin_activate(LiVESMenuItem *, livespointer);
155 
156 void on_fade_pressed(LiVESButton *, livespointer);
157 
158 void on_fade_activate(LiVESMenuItem *, livespointer);
159 
160 void on_loop_video_activate(LiVESMenuItem *, livespointer);
161 
162 void on_mute_button_activate(LiVESMenuItem *, livespointer);
163 
164 void on_mute_activate(LiVESMenuItem *, livespointer);
165 
166 void on_resize_activate(LiVESMenuItem *, livespointer);
167 
168 void on_rename_activate(LiVESMenuItem *, livespointer);
169 
170 void on_rename_clip_name(LiVESButton *, livespointer);
171 
172 void on_spinbutton_start_value_changed(LiVESSpinButton *, livespointer);
173 
174 void on_spinbutton_end_value_changed(LiVESSpinButton *, livespointer);
175 
176 void on_open_new_audio_clicked(LiVESFileChooser *, livespointer opt_filename);
177 
178 void on_load_audio_activate(LiVESMenuItem *, livespointer);
179 
180 void on_load_subs_activate(LiVESMenuItem *, livespointer);
181 
182 void on_save_subs_activate(LiVESMenuItem *, livespointer entry_widget);
183 
184 void on_erase_subs_activate(LiVESMenuItem *, livespointer);
185 
186 void on_insfitaudio_toggled(LiVESToggleButton *, livespointer);
187 
188 void on_resize_hsize_value_changed(LiVESSpinButton *, livespointer);
189 
190 void on_resize_vsize_value_changed(LiVESSpinButton *, livespointer);
191 
192 void on_resize_ok_clicked(LiVESButton *, livespointer);
193 
194 void on_spin_value_changed(LiVESSpinButton *, livespointer);
195 
196 void on_spin_start_value_changed(LiVESSpinButton *, livespointer user_data);
197 
198 void on_spin_step_value_changed(LiVESSpinButton *, livespointer);
199 
200 void on_spin_end_value_changed(LiVESSpinButton *, livespointer);
201 
202 EXPOSE_FN_PROTOTYPE(expose_vid_event);
203 
204 EXPOSE_FN_PROTOTYPE(expose_laud_event);
205 
206 EXPOSE_FN_PROTOTYPE(expose_raud_event);
207 
208 void on_preview_clicked(LiVESButton *, livespointer);
209 
210 void on_recent_activate(LiVESMenuItem *, livespointer);
211 
212 boolean config_event(LiVESWidget *, LiVESXEventConfigure *, livespointer);
213 
214 void changed_fps_during_pb(LiVESSpinButton *, livespointer);
215 
216 boolean on_mouse_scroll(LiVESWidget *, LiVESXEventScroll *, livespointer);
217 
218 boolean on_mouse_sel_update(LiVESWidget *, LiVESXEventMotion *, livespointer);
219 
220 boolean on_mouse_sel_reset(LiVESWidget *, LiVESXEventButton *, livespointer);
221 
222 boolean on_mouse_sel_start(LiVESWidget *, LiVESXEventButton *, livespointer);
223 
224 void on_load_cdtrack_activate(LiVESMenuItem *, livespointer);
225 
226 void on_load_cdtrack_ok_clicked(LiVESButton *, livespointer);
227 
228 void on_eject_cd_activate(LiVESMenuItem *, livespointer);
229 
230 void on_slower_pressed(LiVESButton *, livespointer);
231 
232 void on_faster_pressed(LiVESButton *, livespointer);
233 
234 void on_back_pressed(LiVESButton *, livespointer);
235 
236 void on_forward_pressed(LiVESButton *, livespointer);
237 
238 boolean dirchange_callback(LiVESAccelGroup *, LiVESObject *, uint32_t, LiVESXModifierType, livespointer area_enum);
239 
240 void on_capture_activate(LiVESMenuItem *, livespointer);
241 
242 void on_capture2_activate(void);
243 
244 void on_select_invert_activate(LiVESMenuItem *, livespointer);
245 
246 void on_warn_mask_toggled(LiVESToggleButton *, livespointer);
247 
248 boolean frame_context(LiVESWidget *, LiVESXEventButton *, livespointer which);
249 
250 void on_fs_preview_clicked(LiVESWidget *, livespointer);
251 
252 void on_restore_activate(LiVESMenuItem *, livespointer);
253 
254 void on_backup_activate(LiVESMenuItem *, livespointer);
255 
256 void on_record_perf_activate(LiVESMenuItem *, livespointer);
257 
258 boolean record_toggle_callback(LiVESAccelGroup *, LiVESObject *, uint32_t keyval, LiVESXModifierType mod, livespointer);
259 
260 boolean fps_reset_callback(LiVESAccelGroup *, LiVESObject *, uint32_t keyval, LiVESXModifierType mod, livespointer);
261 
262 boolean mute_audio_callback(LiVESAccelGroup *, LiVESObject *, uint32_t keyval, LiVESXModifierType mod, livespointer);
263 
264 boolean on_stop_activate_by_del(LiVESWidget *, LiVESXEvent *, livespointer);
265 
266 void on_pause_clicked(void);
267 
268 void on_select_start_only_activate(LiVESMenuItem *, livespointer);
269 
270 void on_select_end_only_activate(LiVESMenuItem *, livespointer);
271 
272 void on_filesel_button_clicked(LiVESButton *, livespointer);
273 
274 void on_filesel_complex_clicked(LiVESButton *, LiVESEntry *);
275 
276 void on_filesel_complex_ok_clicked(LiVESButton *, LiVESEntry *entry);
277 
278 void on_encoder_ofmt_changed(LiVESCombo *, livespointer);
279 
280 void on_ok_export_audio_clicked(LiVESButton *, livespointer);
281 
282 void on_append_audio_activate(LiVESMenuItem *, livespointer);
283 
284 void on_rb_audrec_time_toggled(LiVESToggleButton *, livespointer);
285 
286 void on_recaudclip_activate(LiVESMenuItem *, livespointer);
287 
288 void on_recaudsel_activate(LiVESMenuItem *, livespointer);
289 
290 void on_recaudclip_ok_clicked(LiVESButton *, livespointer);
291 
292 #if GTK_CHECK_VERSION(2, 14, 0)
293 void on_volume_slider_value_changed(LiVESScaleButton *, livespointer);
294 #else
295 void on_volume_slider_value_changed(LiVESRange *, livespointer);
296 #endif
297 
298 void on_fade_audio_activate(LiVESMenuItem *, livespointer);
299 
300 void on_resample_video_activate(LiVESMenuItem *, livespointer);
301 
302 void on_resample_vid_ok(LiVESButton *, LiVESEntry *entry);
303 
304 void on_trim_audio_activate(LiVESMenuItem *, livespointer);
305 
306 void on_resample_audio_activate(LiVESMenuItem *, livespointer);
307 
308 void on_export_audio_activate(LiVESMenuItem *, livespointer);
309 
310 void on_resaudio_ok_clicked(LiVESButton *, LiVESEntry *entry);
311 
312 void on_cancel_opensel_clicked(LiVESButton *, livespointer);
313 
314 void end_fs_preview(void);
315 
316 void on_sticky_activate(LiVESMenuItem *, livespointer);
317 
318 void on_resaudw_asamps_changed(LiVESWidget *, livespointer);
319 
320 void on_insertwsound_toggled(LiVESToggleButton *, livespointer);
321 
322 void on_showfct_activate(LiVESMenuItem *, livespointer);
323 
324 void on_boolean_toggled(LiVESObject *, livespointer);
325 
326 void on_audio_toggled(LiVESWidget *, livespointer);
327 
328 void on_showsubs_toggled(LiVESObject *, livespointer);
329 
330 void on_show_messages_activate(LiVESMenuItem *, livespointer);
331 
332 #ifdef ENABLE_GIW_3
333 void on_hrule_value_changed(LiVESWidget *widget, livespointer user_data);
334 #else
335 boolean on_hrule_update(LiVESWidget *, LiVESXEventMotion *, livespointer);
336 boolean on_hrule_set(LiVESWidget *, LiVESXEventButton *, livespointer);
337 boolean on_hrule_reset(LiVESWidget *, LiVESXEventButton *, livespointer);
338 #endif
339 
340 void on_rewind_activate(LiVESMenuItem *, livespointer);
341 
342 void on_loop_button_activate(LiVESMenuItem *, livespointer);
343 
344 void on_loop_cont_activate(LiVESMenuItem *, livespointer);
345 
346 void on_show_file_comments_activate(LiVESMenuItem *, livespointer);
347 
348 void on_toolbar_hide(LiVESButton *, livespointer);
349 
350 void on_toy_activate(LiVESMenuItem *, livespointer old_toy_p);
351 
352 void autolives_toggle(LiVESMenuItem *, livespointer);
353 
354 void on_preview_spinbutton_changed(LiVESSpinButton *, livespointer);
355 
356 boolean prevclip_callback(LiVESAccelGroup *, LiVESObject *, uint32_t, LiVESXModifierType, livespointer);
357 
358 boolean nextclip_callback(LiVESAccelGroup *, LiVESObject *, uint32_t, LiVESXModifierType, livespointer);
359 
360 boolean freeze_callback(LiVESAccelGroup *, LiVESObject *, uint32_t, LiVESXModifierType, livespointer);
361 
362 boolean storeclip_callback(LiVESAccelGroup *, LiVESObject *, uint32_t, LiVESXModifierType, livespointer);
363 
364 boolean nervous_callback(LiVESAccelGroup *, LiVESObject *, uint32_t, LiVESXModifierType, livespointer);
365 
366 boolean show_sync_callback(LiVESAccelGroup *, LiVESObject *, uint32_t, LiVESXModifierType, livespointer clip_number);
367 
368 boolean on_save_set_activate(LiVESMenuItem *, livespointer);
369 
370 void on_save_set_ok(void);
371 
372 char *on_load_set_activate(LiVESMenuItem *, livespointer);
373 
374 boolean reload_set(const char *set_name);
375 
376 void on_open_vcd_activate(LiVESMenuItem *, livespointer int_type);
377 
378 void on_load_vcd_ok_clicked(LiVESButton *, livespointer);
379 
380 void on_ping_pong_activate(LiVESMenuItem *, livespointer);
381 
382 void on_show_keys_activate(LiVESMenuItem *, livespointer);
383 
384 void on_vj_reset_activate(LiVESMenuItem *, livespointer);
385 
386 void on_vj_realize_activate(LiVESMenuItem *, livespointer);
387 
388 void on_prv_link_toggled(LiVESToggleButton *, livespointer);
389 
390 boolean on_del_audio_activate(LiVESMenuItem *, livespointer);
391 
392 boolean on_ins_silence_activate(LiVESMenuItem *, livespointer);
393 
394 void on_ins_silence_details_clicked(LiVESButton *, livespointer);
395 
396 void on_lerrors_close_clicked(LiVESButton *, livespointer);
397 
398 void on_lerrors_clear_clicked(LiVESButton *, livespointer);
399 
400 void on_lerrors_delete_clicked(LiVESButton *, livespointer);
401 
402 #ifdef GUI_GTK
403 void drag_from_outside(LiVESWidget *, GdkDragContext *, int x, int y,
404  GtkSelectionData *, uint32_t info, uint32_t time, livespointer);
405 
406 #endif
407 
408 #endif
void on_loop_cont_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:7214
void on_append_audio_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:10406
boolean on_mouse_scroll(LiVESWidget *, LiVESXEventScroll *, livespointer)
Definition: callbacks.c:9393
boolean on_hrule_update(LiVESWidget *, LiVESXEventMotion *, livespointer)
Definition: callbacks.c:9595
void on_resaudio_ok_clicked(LiVESButton *, LiVESEntry *entry)
Definition: resample.c:745
void on_capture_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:9990
void on_restore_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:1737
void on_close_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:1128
void on_toy_activate(LiVESMenuItem *, livespointer old_toy_p)
Definition: callbacks.c:8512
void on_show_messages_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:5577
void on_cut_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:2807
void on_open_new_audio_clicked(LiVESFileChooser *, livespointer opt_filename)
Definition: callbacks.c:7652
void on_loop_button_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:7204
void on_select_from_start_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:3964
void on_sticky_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:7123
boolean config_event(LiVESWidget *, LiVESXEventConfigure *, livespointer)
Definition: callbacks.c:8989
void lives_notify(int msgnumber, const char *msgstring)
Definition: callbacks.c:51
void on_erase_subs_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:7586
void on_export_proj_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:1333
void on_showsubs_toggled(LiVESObject *, livespointer)
Definition: callbacks.c:7163
void on_save_textview_clicked(LiVESButton *, livespointer)
Definition: callbacks.c:6432
void on_show_file_comments_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:5686
void on_save_set_ok(void)
void on_save_subs_activate(LiVESMenuItem *, livespointer entry_widget)
Definition: callbacks.c:7564
void on_spin_step_value_changed(LiVESSpinButton *, livespointer)
Definition: callbacks.c:7396
void on_filechooser_cancel_clicked(LiVESWidget *)
Definition: callbacks.c:6482
void on_save_selection_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:1112
void on_fs_preview_clicked(LiVESWidget *, livespointer)
Definition: callbacks.c:5911
void on_show_keys_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:5523
void on_cancel_keep_button_clicked(LiVESButton *, livespointer)
Definition: callbacks.c:6507
void on_select_all_activate(LiVESWidget *, livespointer)
Definition: callbacks.c:3873
boolean prevclip_callback(LiVESAccelGroup *, LiVESObject *, uint32_t, LiVESXModifierType, livespointer)
Definition: callbacks.c:4557
void on_import_theme_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:1586
void report_bug_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:5843
void on_paste_as_new_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:2822
void on_spinbutton_end_value_changed(LiVESSpinButton *, livespointer)
Definition: callbacks.c:8690
void on_resize_activate(LiVESMenuItem *, livespointer)
void on_insfitaudio_toggled(LiVESToggleButton *, livespointer)
Definition: callbacks.c:4481
void on_load_audio_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:7621
void on_open_vcd_activate(LiVESMenuItem *, livespointer int_type)
Definition: callbacks.c:741
void on_resample_vid_ok(LiVESButton *, LiVESEntry *entry)
Definition: resample.c:965
void on_rb_audrec_time_toggled(LiVESToggleButton *, livespointer)
Definition: callbacks.c:10969
void on_select_end_only_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:3900
void on_effects_paused(LiVESButton *, livespointer)
Definition: callbacks.c:9015
void on_cancel_opensel_clicked(LiVESButton *, livespointer)
Definition: callbacks.c:6495
void on_playall_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:3985
void help_translate_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:5853
void on_double_size_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:6820
void on_select_invert_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:3906
void on_boolean_toggled(LiVESObject *, livespointer)
Definition: callbacks.c:7177
void on_playclip_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:4054
boolean reload_set(const char *set_name)
Definition: callbacks.c:5034
void on_load_cdtrack_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:7999
void on_fade_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:7142
void on_load_vcd_ok_clicked(LiVESButton *, livespointer)
Definition: callbacks.c:8297
void on_full_screen_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:6663
void on_stop_clicked(LiVESMenuItem *, livespointer)
Definition: callbacks.c:1061
boolean show_sync_callback(LiVESAccelGroup *, LiVESObject *, uint32_t, LiVESXModifierType, livespointer clip_number)
Definition: callbacks.c:9915
void on_ok_button1_clicked(LiVESButton *, livespointer)
void on_pause_clicked(void)
Definition: callbacks.c:4283
void on_volume_slider_value_changed(LiVESRange *, livespointer)
void on_vj_reset_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:5543
void on_details_button_clicked(void)
Definition: callbacks.c:6646
void on_recaudclip_ok_clicked(LiVESButton *, livespointer)
Definition: callbacks.c:11041
void on_showfct_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:7109
void on_import_proj_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:1245
void on_opensel_range_ok_clicked(LiVESButton *, livespointer)
Definition: callbacks.c:6372
void on_filesel_button_clicked(LiVESButton *, livespointer)
Definition: callbacks.c:565
void on_forward_pressed(LiVESButton *, livespointer)
Definition: callbacks.c:9829
void on_loop_video_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:7196
void on_select_last_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:3922
void on_ins_silence_details_clicked(LiVESButton *, livespointer)
Definition: callbacks.c:11432
void on_redo_activate(LiVESWidget *, livespointer)
Definition: callbacks.c:2496
boolean storeclip_callback(LiVESAccelGroup *, LiVESObject *, uint32_t, LiVESXModifierType, livespointer)
Definition: callbacks.c:9957
void on_mute_button_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:7280
boolean on_hrule_set(LiVESWidget *, LiVESXEventButton *, livespointer)
Definition: callbacks.c:9646
boolean freeze_callback(LiVESAccelGroup *, LiVESObject *, uint32_t, LiVESXModifierType, livespointer)
Definition: callbacks.c:9843
void on_ok_export_audio_clicked(LiVESButton *, livespointer)
void on_prv_link_toggled(LiVESToggleButton *, livespointer)
Definition: callbacks.c:8615
void on_export_audio_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:10330
void on_resample_video_activate(LiVESMenuItem *, livespointer)
Definition: resample.c:958
void changed_fps_during_pb(LiVESSpinButton *, livespointer)
Definition: callbacks.c:9340
void donate_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:5858
void on_fade_pressed(LiVESButton *, livespointer)
Definition: callbacks.c:7135
boolean on_mouse_sel_update(LiVESWidget *, LiVESXEventMotion *, livespointer)
Definition: callbacks.c:9439
boolean record_toggle_callback(LiVESAccelGroup *, LiVESObject *, uint32_t keyval, LiVESXModifierType mod, livespointer)
Definition: callbacks.c:4226
void suggest_feature_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:5848
boolean on_mouse_sel_reset(LiVESWidget *, LiVESXEventButton *, livespointer)
Definition: callbacks.c:9476
void on_stop_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:4252
void on_spinbutton_start_value_changed(LiVESSpinButton *, livespointer)
Definition: callbacks.c:8629
void on_ping_pong_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:7254
void on_insert_activate(LiVESButton *, livespointer)
Definition: callbacks.c:2940
void on_quit_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:1793
void on_mute_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:7296
void on_spin_start_value_changed(LiVESSpinButton *, livespointer user_data)
Definition: callbacks.c:7376
boolean on_hrule_reset(LiVESWidget *, LiVESXEventButton *, livespointer)
Definition: callbacks.c:9615
void on_encoder_ofmt_changed(LiVESCombo *, livespointer)
Definition: callbacks.c:10256
void on_sepwin_pressed(LiVESButton *, livespointer)
Definition: callbacks.c:6913
void switch_clip_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:5745
void on_insert_pre_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:2929
void on_vj_realize_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:5528
void on_fade_audio_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:10669
void on_sepwin_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:6924
void open_sel_range_activate(void)
Definition: callbacks.c:6391
void email_author_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:5838
void on_undo_activate(LiVESWidget *, livespointer)
Definition: callbacks.c:1953
char * on_load_set_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:4990
boolean on_save_set_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:4638
void on_select_new_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:3939
void on_preview_spinbutton_changed(LiVESSpinButton *, livespointer)
Definition: callbacks.c:8590
void on_cleardisk_advanced_clicked(LiVESWidget *, livespointer)
Definition: callbacks.c:5503
void on_eject_cd_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:8015
void on_preview_clicked(LiVESButton *, livespointer)
Definition: callbacks.c:9121
void on_open_utube_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:801
boolean on_del_audio_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:10802
boolean on_stop_activate_by_del(LiVESWidget *, LiVESXEvent *, livespointer)
void switch_clip(int type, int newclip, boolean force)
Definition: callbacks.c:5699
void on_recaudsel_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:11001
boolean on_mouse_sel_start(LiVESWidget *, LiVESXEventButton *, livespointer)
Definition: callbacks.c:9489
void on_recaudclip_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:10984
boolean dirchange_callback(LiVESAccelGroup *, LiVESObject *, uint32_t, LiVESXModifierType, livespointer area_enum)
Definition: callbacks.c:4496
void on_slower_pressed(LiVESButton *, livespointer)
Definition: callbacks.c:9725
void on_lerrors_close_clicked(LiVESButton *, livespointer)
void on_backup_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:1712
void on_open_sel_ok_button_clicked(LiVESButton *, livespointer)
void on_rev_clipboard_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:7436
void on_spin_value_changed(LiVESSpinButton *, livespointer)
Definition: callbacks.c:7357
void on_lock_selwidth_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:3972
boolean on_ins_silence_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:11283
void on_load_subs_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:7483
void on_insertwsound_toggled(LiVESToggleButton *, livespointer)
Definition: callbacks.c:4471
void on_recent_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:825
void on_audio_toggled(LiVESWidget *, livespointer)
Definition: callbacks.c:7183
void on_back_pressed(LiVESButton *, livespointer)
Definition: callbacks.c:9815
void on_rename_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:8361
void on_resize_ok_clicked(LiVESButton *, livespointer)
void on_open_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:6245
void on_spin_end_value_changed(LiVESSpinButton *, livespointer)
Definition: callbacks.c:7416
void on_playsel_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:4018
EXPOSE_FN_PROTOTYPE(expose_vid_event)
void on_warn_mask_toggled(LiVESToggleButton *, livespointer)
Definition: dialogs.c:55
void on_merge_activate(LiVESMenuItem *, livespointer)
Definition: merge.c:280
void on_encoder_entry_changed(LiVESCombo *, livespointer ptr)
Definition: callbacks.c:4289
boolean mute_audio_callback(LiVESAccelGroup *, LiVESObject *, uint32_t keyval, LiVESXModifierType mod, livespointer)
Definition: callbacks.c:7290
void on_resample_audio_activate(LiVESMenuItem *, livespointer)
Definition: resample.c:734
void on_full_screen_pressed(LiVESButton *, livespointer)
Definition: callbacks.c:6655
void on_open_loc_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:771
void on_delete_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:3636
boolean on_LiVES_delete_event(LiVESWidget *, LiVESXEvent *, livespointer)
void on_ok_file_open_clicked(LiVESFileChooser *, LiVESSList *fnames)
Definition: callbacks.c:6273
void on_show_file_info_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:5582
void on_filesel_complex_clicked(LiVESButton *, LiVESEntry *)
Definition: callbacks.c:667
boolean frame_context(LiVESWidget *, LiVESXEventButton *, livespointer which)
Definition: callbacks.c:9665
void show_manual_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:5833
Definition: interface.h:207
void on_utube_select(lives_remote_clip_request_t *req)
Definition: callbacks.c:898
void drag_from_outside(LiVESWidget *widget, GdkDragContext *dcon, int x, int y, GtkSelectionData *data, uint32_t info, uint32_t time, livespointer user_data)
Definition: callbacks.c:6329
void on_export_theme_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:1409
void on_copy_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:2683
void on_load_cdtrack_ok_clicked(LiVESButton *, livespointer)
Definition: callbacks.c:8034
void on_resize_vsize_value_changed(LiVESSpinButton *, livespointer)
void on_record_perf_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:4086
void lives_notify_int(int msgnumber, int msgint)
Definition: callbacks.c:79
void on_show_clipboard_info_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:5691
void autolives_toggle(LiVESMenuItem *, livespointer)
Definition: callbacks.c:8367
void on_lerrors_clear_clicked(LiVESButton *, livespointer)
Definition: callbacks.c:11470
void end_fs_preview(void)
Definition: callbacks.c:6403
void on_cleardisk_activate(LiVESWidget *, livespointer)
Definition: callbacks.c:5354
void on_open_sel_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:683
void on_toolbar_hide(LiVESButton *, livespointer)
Definition: callbacks.c:9983
void popup_lmap_errors(LiVESMenuItem *, livespointer)
Definition: callbacks.c:8310
boolean nervous_callback(LiVESAccelGroup *, LiVESObject *, uint32_t, LiVESXModifierType, livespointer)
Definition: callbacks.c:9908
void on_double_size_pressed(LiVESButton *, livespointer)
Definition: callbacks.c:6814
void on_select_to_end_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:3956
void lives_exit(int signum)
Definition: callbacks.c:135
void on_save_as_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:1095
void on_location_select(LiVESButton *, livespointer)
Definition: callbacks.c:875
void on_resaudw_asamps_changed(LiVESWidget *, livespointer)
Definition: resample.c:939
void on_lerrors_delete_clicked(LiVESButton *, livespointer)
Definition: callbacks.c:11497
void on_resize_hsize_value_changed(LiVESSpinButton *, livespointer)
void on_select_start_only_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:3894
void on_rename_clip_name(LiVESButton *, livespointer)
Definition: callbacks.c:8482
void on_rewind_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:4238
void on_about_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:5763
void on_faster_pressed(LiVESButton *, livespointer)
Definition: callbacks.c:9768
void on_filesel_complex_ok_clicked(LiVESButton *, LiVESEntry *entry)
void on_capture2_activate(void)
Definition: callbacks.c:10211
boolean nextclip_callback(LiVESAccelGroup *, LiVESObject *, uint32_t, LiVESXModifierType, livespointer)
Definition: callbacks.c:4598
boolean fps_reset_callback(LiVESAccelGroup *, LiVESObject *, uint32_t keyval, LiVESXModifierType mod, livespointer)
Definition: callbacks.c:4528
void on_trim_audio_activate(LiVESMenuItem *, livespointer)
Definition: callbacks.c:10575