upgrade libvpx+lv2, fix dbl tap play bug, add multi nest/unnest clips, add del top...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / mwindow.h
1 /*
2  * CINELERRA
3  * Copyright (C) 1997-2014 Adam Williams <broadcast at earthling dot net>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  *
19  */
20
21 #ifndef MWINDOW_H
22 #define MWINDOW_H
23
24 #include <stdio.h>
25 #include <stdint.h>
26
27 #include "apatchgui.h"
28 #include "arraylist.h"
29 #include "asset.inc"
30 #include "assets.inc"
31 #include "audiodevice.inc"
32 #include "autos.inc"
33 #include "awindow.inc"
34 #include "batchrender.inc"
35 #include "bcwindowbase.inc"
36 #include "bdcreate.inc"
37 #include "brender.inc"
38 #include "cache.inc"
39 #include "channel.inc"
40 #include "channeldb.inc"
41 #include "commercials.inc"
42 #include "cwindow.inc"
43 #include "bchash.inc"
44 #include "devicedvbinput.inc"
45 #include "devicempeginput.inc"
46 #include "dvdcreate.inc"
47 #include "edit.inc"
48 #include "edl.inc"
49 #include "edlsession.inc"
50 #include "exportedl.inc"
51 #include "filesystem.inc"
52 #include "filexml.inc"
53 #include "framecache.inc"
54 #include "gwindow.inc"
55 #include "indexable.inc"
56 #include "keyframegui.inc"
57 #include "levelwindow.inc"
58 #include "loadmode.inc"
59 #include "mainerror.inc"
60 #include "mainindexes.inc"
61 #include "mainprogress.inc"
62 #include "mainsession.inc"
63 #include "mainundo.inc"
64 #include "maxchannels.h"
65 #include "mixersalign.inc"
66 #include "mutex.inc"
67 #include "mwindow.inc"
68 #include "mwindowgui.inc"
69 #include "new.inc"
70 #include "patchbay.inc"
71 #include "playback3d.inc"
72 #include "playbackengine.inc"
73 #include "plugin.inc"
74 #include "pluginfclient.inc"
75 #include "pluginserver.inc"
76 #include "pluginset.inc"
77 #include "preferences.inc"
78 #include "preferencesthread.inc"
79 #include "proxy.inc"
80 #include "record.inc"
81 #include "recordlabel.inc"
82 #include "render.inc"
83 #include "sharedlocation.inc"
84 #include "sighandler.inc"
85 #include "splashgui.inc"
86 #include "shuttle.inc"
87 #include "theme.inc"
88 #include "thread.h"
89 #include "threadloader.inc"
90 #include "timebar.inc"
91 #include "timebomb.h"
92 #include "tipwindow.inc"
93 #include "track.inc"
94 #include "tracking.inc"
95 #include "tracks.inc"
96 #include "transition.inc"
97 #include "transportque.inc"
98 #include "videowindow.inc"
99 #include "vpatchgui.h"
100 #include "vwindow.inc"
101 #include "zwindow.inc"
102 #include "wwindow.inc"
103 #include "wavecache.inc"
104
105 #define FONT_SEARCHPATH "fonts"
106
107
108 class MWindow : public Thread
109 {
110 public:
111         MWindow();
112         ~MWindow();
113
114 // ======================================== initialization commands
115         void create_objects(int want_gui,
116                 int want_new,
117                 char *config_path);
118         void show_splash();
119         void hide_splash();
120         void start();
121         void run();
122
123         int run_script(FileXML *script);
124         int new_project();
125         int delete_project(int flash = 1);
126         void quit();
127         int restart() { return restart_status; }
128
129         int load_defaults();
130         int save_defaults();
131         int set_filename(const char *filename);
132 // Total vertical pixels in timeline
133         int get_tracks_height();
134 // Total horizontal pixels in timeline
135         int get_tracks_width();
136 // Show windows
137         void show_vwindow();
138         void show_awindow();
139         void show_lwindow();
140         void show_cwindow();
141         void show_gwindow();
142         void hide_gwindow();
143         void restore_windows();
144         void load_layout(const char *layout);
145         void save_layout(const char *layout);
146         void delete_layout(const char *layout);
147         int tile_windows(int window_config);
148         char *get_cwindow_display();
149         void set_screens(int value);
150         int asset_to_edl(EDL *new_edl,
151                 Asset *new_asset,
152                 RecordLabels *labels = 0);
153
154 // Entry point to insert assets and insert edls.  Called by TrackCanvas
155 // and AssetPopup when assets are dragged in from AWindow.
156 // Takes the drag vectors from MainSession and
157 // pastes either assets or clips depending on which is full.
158 // Returns 1 if the vectors were full
159         int paste_assets(double position, Track *dest_track, int overwrite);
160
161 // Insert the assets at a point in the EDL.  Called by menueffects,
162 // render, and CWindow drop but recording calls paste_edls directly for
163 // labels.
164         void load_assets(ArrayList<Indexable*> *new_assets,
165                 double position,
166                 int load_mode,
167                 Track *first_track /* = 0 */,
168                 RecordLabels *labels /* = 0 */,
169                 int edit_labels,
170                 int edit_plugins,
171                 int edit_autos,
172                 int overwrite);
173         int paste_edls(ArrayList<EDL*> *new_edls,
174                 int load_mode,
175                 Track *first_track /* = 0 */,
176                 double current_position /* = -1 */,
177                 int edit_labels,
178                 int edit_plugins,
179                 int edit_autos,
180                 int overwrite);
181 // Reset everything for a load
182         void update_project(int load_mode);
183         void update_vwindow();
184 // Fit selected time to horizontal display range
185         void fit_selection();
186 // Fit selected autos to the vertical display range
187         void fit_autos(int all);
188         void change_currentautorange(int autogrouptype, int increment, int changemax);
189         void expand_autos(int changeall, int domin, int domax);
190         void shrink_autos(int changeall, int domin, int domax);
191 // move the window to include the cursor
192         void find_cursor();
193 // Search plugindb and put results in argument
194         static void search_plugindb(int do_audio,
195                 int do_video,
196                 int is_realtime,
197                 int is_transition,
198                 int is_theme,
199                 ArrayList<PluginServer*> &results);
200 // Find the plugin whose title matches title and return it
201         static PluginServer* scan_plugindb(char *title,
202                 int data_type);
203         static void fix_plugin_title(char *title);
204         static int plugin_exists(const char *plugin_path, ArrayList<PluginServer*> &plugins);
205         static int plugin_exists(char *plugin_path);
206         void dump_plugindb(FILE *fp);
207         void stop_playback(int wait);
208         void stop_transport();
209         void undo_before(const char *description = "", void *creator = 0);
210         void undo_after(const char *description, uint32_t load_flags, int changes_made = 1);
211
212         void handle_mixers(EDL *edl, int command, int wait_tracking,
213                 int use_inout, int toggle_audio, int loop_play, float speed);
214         ZWindow *create_mixer(Indexable *indexable, double position);
215         void create_mixers(double position = 0);
216         void refresh_mixers(int dir=1);
217         void stop_mixers();
218         void close_mixers(int destroy=1);
219         void open_mixers();
220         ZWindow *get_mixer(Mixer *&mixer);
221         void del_mixer(ZWindow *zwindow);
222         int mixer_track_active(Track *track);
223         void update_mixer_tracks();
224         void start_mixer();
225         int select_zwindow(ZWindow *zwindow);
226         void tile_mixers();
227         int load_filenames(ArrayList<char*> *filenames,
228                 int load_mode = LOADMODE_REPLACE,
229 // Cause the project filename on the top of the window to be updated.
230 // Not wanted for loading backups.
231                 int update_filename = 1);
232
233
234 // Print out plugins which are referenced in the EDL but not loaded.
235         void test_plugins(EDL *new_edl, char *path);
236
237         int interrupt_indexes();  // Stop index building
238
239         int redraw_time_dependancies();     // after reconfiguring the time format, sample rate, frame rate
240
241 // =========================================== movement
242
243         void next_time_format();
244         void prev_time_format();
245         void time_format_common();
246         int reposition_timebar(int new_pixel, int new_height);
247         int expand_sample();
248         int zoom_in_sample();
249         int zoom_sample(int64_t zoom_sample);
250         void zoom_autos(float min, float max);
251         void zoom_amp(int64_t zoom_amp);
252         void zoom_track(int64_t zoom_track);
253         int fit_sample();
254         int move_left(int64_t distance = 0);
255         int move_right(int64_t distance = 0);
256         void move_up(int64_t distance = 0);
257         void move_down(int64_t distance = 0);
258         int find_selection(double position, int scroll_display = 0);
259         void toggle_camera_xyz();
260         void toggle_projector_xyz();
261         double get_position();
262         void set_position(double position);
263
264 // seek to labels
265 // shift_down must be passed by the caller because different windows call
266 // into this
267         int next_label(int shift_down);
268         int prev_label(int shift_down);
269 // seek to edit handles
270         int next_edit_handle(int shift_down);
271         int prev_edit_handle(int shift_down);
272 // seek to keyframes
273         int nearest_plugin_keyframe(int shift_down, int dir);
274 // offset is pixels to add to track_start
275         void trackmovement(int offset, int pane_number);
276 // view_start is pixels
277         int samplemovement(int64_t view_start, int pane_number);
278         void select_all();
279         int goto_start();
280         int goto_end();
281         int goto_position(double position);
282         int expand_y();
283         int zoom_in_y();
284         int expand_t();
285         int zoom_in_t();
286         void split_x();
287         void split_y();
288         void crop_video();
289         void update_plugins();
290 // Call after every edit operation
291         void save_backup();
292         void load_backup();
293         void show_plugin(Plugin *plugin);
294         void hide_plugin(Plugin *plugin, int lock);
295         void hide_plugins();
296         void delete_plugin(PluginServer *plugin);
297 // Update plugins with configuration changes.
298 // Called by TrackCanvas::cursor_motion_event.
299         void update_plugin_guis(int do_keyframe_guis = 1);
300         void update_plugin_states();
301         void update_plugin_titles();
302 // Called by Attachmentpoint during playback.
303 // Searches for matching plugin and renders data in it.
304         void render_plugin_gui(void *data, Plugin *plugin);
305         void render_plugin_gui(void *data, int size, Plugin *plugin);
306
307 // Called from PluginVClient::process_buffer
308 // Returns 1 if a GUI for the plugin is open so OpenGL routines can determine if
309 // they can run.
310         int plugin_gui_open(Plugin *plugin);
311
312         void show_keyframe_gui(Plugin *plugin);
313         void hide_keyframe_guis();
314         void hide_keyframe_gui(Plugin *plugin);
315         void update_keyframe_guis();
316         int get_hash_color(Edit *edit);
317         int get_hash_color(int v);
318         int get_group_color(int v);
319         int get_title_color(Edit *edit);
320
321 // ============================= editing commands ========================
322
323 // Map each recordable audio track to the desired pattern
324         void map_audio(int pattern);
325         void remap_audio(int pattern);
326         enum
327         {
328                 AUDIO_5_1_TO_2,
329                 AUDIO_1_TO_1
330         };
331         void add_audio_track_entry(int above, Track *dst);
332         int add_audio_track(int above, Track *dst);
333         void add_clip_to_edl(EDL *edl);
334         void add_video_track_entry(Track *dst = 0);
335         int add_video_track(int above, Track *dst);
336         void add_subttl_track_entry(Track *dst = 0);
337         int add_subttl_track(int above, Track *dst);
338
339         void asset_to_all();
340         void asset_to_size();
341         void asset_to_rate();
342 // Entry point for clear operations.
343         void clear_entry();
344 // Clears active region in EDL.
345 // If clear_handle, edit boundaries are cleared if the range is 0.
346 // Called by paste, record, menueffects, render, and CWindow drop.
347         void clear(int clear_handle);
348         void clear_labels();
349         int clear_labels(double start, double end);
350         void concatenate_tracks();
351         int copy_flags(int copy_flags=COPY_CLIPBOARD);
352         void copy();
353         int copy(double start, double end);
354         void cut();
355         void blade(double position);
356         void cut(double start, double end, double new_position=-1);
357 // cut edit from current position to handle/label
358         void cut_left_edit();
359         void cut_right_edit();
360         void cut_left_label();
361         void cut_right_label();
362
363 // Calculate aspect ratio from pixel counts
364         static int create_aspect_ratio(float &w, float &h, int width, int height);
365 // Calculate defaults path
366         static void create_defaults_path(char *string, const char *config_file);
367
368         void delete_track(Track *track);
369         void delete_tracks();
370         int feather_edits(int64_t feather_samples, int audio, int video);
371         int64_t get_feather(int audio, int video);
372         float get_aspect_ratio();
373         void insert(double position, FileXML *file,
374                 int edit_labels, int edit_plugins, int edit_autos,
375                 EDL *parent_edl, Track *first_track, int overwrite);
376
377 // TrackCanvas calls this to insert multiple effects from the drag_pluginservers
378 // into pluginset_highlighted.
379         void insert_effects_canvas(double start, double length);
380
381 // CWindow calls this to insert multiple effects from
382 // the drag_pluginservers array.
383         void insert_effects_cwindow(Track *dest_track);
384
385 // Attach new effect to all recordable tracks
386 // single_standalone - attach 1 standalone on the first track and share it with
387 // other tracks
388         void insert_effect(char *title,
389                 SharedLocation *shared_location,
390                 int data_type, int plugin_type, int single_standalone);
391
392 // This is called multiple times by the above functions.
393 // It can't sync parameters.
394         void insert_effect(char *title,
395                 SharedLocation *shared_location,
396                 Track *track, PluginSet *plugin_set,
397                 double start, double length, int plugin_type);
398
399         void match_output_size(Track *track);
400         void delete_edit(Edit *edit, const char *msg, int collapse=0);
401         void delete_edits(ArrayList<Edit*> *edits, const char *msg, int collapse=0);
402         void delete_edits(int collapse=0);
403         void cut_selected_edits(int collapse, int packed);
404 // Move edit to new position
405         void move_edits(ArrayList<Edit*> *edits, Track *track, double position,
406                 int mode); // mode: 0 - mute and overwrite,  1 - cut and paste
407         void selected_edits_to_clipboard(int packed);
408         void paste_clipboard(Track *first_track, double position, int overwrite,
409                 int edit_edits, int edit_labels, int edit_autos, int edit_plugins);
410         void move_group(EDL *group, Track *first_track, double position, int overwrite);
411 // Move effect to position
412         void move_effect(Plugin *plugin, Track *track, int64_t position);
413         void move_effect(Plugin *plugin, PluginSet *plugin_set, int64_t position);
414         void move_plugins_up(PluginSet *plugin_set);
415         void move_plugins_down(PluginSet *plugin_set);
416         void move_track_down(Track *track);
417         void move_tracks_down();
418         void move_track_up(Track *track);
419         void move_tracks_up();
420         void mute_selection();
421         void new_folder(const char *new_folder, int is_clips);
422         void delete_folder(char *folder);
423 // For clipboard commands
424         void paste();
425         void paste(double start, Track *first_track, int clear_selection, int overwrite);
426 // For splice and overwrite
427         void overwrite(EDL *source, int all);
428         void splice(EDL *source, int all);
429         int paste(double start, double end, FileXML *file,
430                 int edit_labels, int edit_plugins, int edit_autos,
431                 Track *first_track, int overwrite);
432         int paste_output(int64_t startproject, int64_t endproject,
433                 int64_t startsource_sample, int64_t endsource_sample,
434                 int64_t startsource_frame, int64_t endsource_frame,
435                 Asset *asset, RecordLabels *new_labels);
436         void paste_silence();
437
438 // Detach single transition
439         void detach_transition(Transition *transition);
440 // Detach all transitions in selection
441         void detach_transitions();
442 // Attach dragged transition
443         void paste_transition();
444 // Attach transition to all edits in selection
445         void paste_transitions(int track_type, char *title);
446 // Attach transition dragged onto CWindow
447         void paste_transition_cwindow(Track *dest_track);
448 // Attach default transition to single edit
449         void paste_audio_transition();
450         void paste_video_transition();
451         void shuffle_edits();
452         void reverse_edits();
453         void align_edits();
454         void set_edit_length(double length);
455 // Set length of single transition
456         void set_transition_length(Transition *transition, double length);
457 // Set length in seconds of all transitions in active range
458         void set_transition_length(double length);
459
460         void remove_indexfile(Indexable *indexable);
461         void rebuild_indices();
462 // Asset removal from caches
463         void reset_caches();
464         void remove_asset_from_caches(Asset *asset);
465         void remove_assets_from_project(int push_undo /* = 0 */,
466                 int redraw /* 1 */,
467                 ArrayList<Indexable*> *drag_assets /* mwindow->session->drag_assets */,
468                 ArrayList<EDL*> *drag_clips /* mwindow->session->drag_clips */);
469         void remove_assets_from_disk();
470         void resize_track(Track *track, int w, int h);
471
472         void set_automation_mode(int mode);
473         void set_keyframe_type(int mode);
474         void set_auto_keyframes(int value);
475         void set_auto_visibility(Autos *autos, int value);
476         void set_labels_follow_edits(int value);
477
478 // Update the editing mode
479         int set_editing_mode(int new_editing_mode);
480         void toggle_editing_mode();
481         void set_inpoint();
482         void set_outpoint();
483         void unset_inoutpoint();
484         void toggle_loop_playback();
485         void trim_selection();
486 // Synchronize EDL settings with all playback engines depending on current
487 // operation.  Doesn't redraw anything.
488         void sync_parameters(int change_type = CHANGE_PARAMS);
489         void save_clip(EDL *new_edl, const char *txt);
490         void to_clip(EDL *edl, const char *txt, int all);
491         int toggle_label();
492         void undo_entry(BC_WindowBase *calling_window_gui);
493         void redo_entry(BC_WindowBase *calling_window_gui);
494         void save_undo_data();
495         void load_undo_data();
496         int copy_target(const char *path, const char *target);
497         int link_target(const char *real_path, const char *link_path, int relative);
498         void save_project(const char *dir, int save_mode, int overwrite, int reload);
499
500         int cut_automation();
501         int copy_automation();
502         int paste_automation();
503         void clear_automation();
504         int cut_default_keyframe();
505         int copy_default_keyframe();
506 // Use paste_automation to paste the default keyframe in other position.
507 // Use paste_default_keyframe to replace the default keyframe with whatever is
508 // in the clipboard.
509         int paste_default_keyframe();
510         int clear_default_keyframe();
511
512         FloatAuto* get_float_auto(PatchGUI *patch,int idx);
513         IntAuto* get_int_auto(PatchGUI *patch,int idx);
514         PanAuto* get_pan_auto(PatchGUI *patch);
515         PatchGUI *get_patchgui(Track *track);
516
517         int modify_edithandles();
518         int modify_pluginhandles();
519         void finish_modify_handles();
520         void rescale_proxy(EDL *clip, int orig_scale, int new_scale);
521         void add_proxy(int use_scaler,
522                 ArrayList<Indexable*> *orig_assets,
523                 ArrayList<Indexable*> *proxy_assets);
524         int render_proxy(ArrayList<Indexable *> &new_idxbls);
525         void beep(double freq, double secs, double gain);
526         int enable_proxy();
527         int disable_proxy();
528         int to_proxy(Asset *asset, int new_scale, int new_use_scaler);
529         ProxyBeep *proxy_beep;
530
531         void dump_plugins(FILE *fp=stdout);
532         void dump_edl(FILE *fp=stdout);
533         void dump_undo(FILE *fp=stdout);
534         void dump_exe(FILE *fp=stdout);
535         static void trap_hook(FILE *fp, void *vp);
536
537         void reset_android_remote();
538
539 // Send new EDL to caches
540         void age_caches();
541         int optimize_assets();            // delete unused assets from the cache and assets
542
543         void select_point(double position);
544         int set_loop_boundaries();         // toggle loop playback and set boundaries for loop playback
545
546
547         Playback3D *playback_3d;
548         SplashGUI *splash_window;
549
550 // Main undo stack
551         MainUndo *undo;
552         int undo_command;
553
554         BC_Hash *defaults;
555         Assets *assets;
556 // CICaches for drawing timeline only
557         CICache *audio_cache, *video_cache;
558 // Frame cache for drawing timeline only.
559 // Cache drawing doesn't wait for file decoding.
560         FrameCache *frame_cache;
561         WaveCache *wave_cache;
562         Preferences *preferences;
563         PreferencesThread *preferences_thread;
564         MainSession *session;
565         Theme *theme;
566         MainIndexes *mainindexes;
567         MainProgress *mainprogress;
568         BRender *brender;
569         char cin_lang[4];
570         int brender_active;
571         const char *default_standard;
572         static Commercials *commercials;
573         int commercial_active;
574         int has_commercials();
575 // copy of edl created in speed_before, used in speed_after to normalize_speed
576         EDL *speed_edl;
577
578 // Menu items
579         ArrayList<ColormodelItem*> colormodels;
580         ArrayList<InterlacemodeItem*>          interlace_project_modes;
581         ArrayList<InterlacemodeItem*>          interlace_asset_modes;
582         ArrayList<InterlacefixmethodItem*>     interlace_asset_fixmethods;
583
584         int reset_meters();
585         void resync_guis();
586
587         int select_asset(Asset *asset, int vstream, int astream, int delete_tracks);
588         int select_asset(int vtrack, int delete_tracks);
589
590 // Channel DB for playback only.  Record channel DB's are in record.C
591         ChannelDB *channeldb_buz;
592         ChannelDB *channeldb_v4l2jpeg;
593
594 // ====================================== plugins ==============================
595
596 // Contains file descriptors for all the dlopens
597         static ArrayList<PluginServer*> *plugindb;
598 // Currently visible plugins
599         int64_t plugin_visibility;
600         ArrayList<PluginServer*> *plugin_guis;
601 // GUI Plugins to delete
602         ArrayList<PluginServer*> *dead_plugins;
603 // Keyframe editors
604         ArrayList<KeyFrameThread*> *keyframe_threads;
605
606 // Adjust sample position to line up with frames.
607         int fix_timing(int64_t &samples_out,
608                 int64_t &frames_out,
609                 int64_t samples_in);
610
611
612         CreateBD_Thread *create_bd;
613         CreateDVD_Thread *create_dvd;
614         BatchRenderThread *batch_render;
615         Render *render;
616
617         ExportEDL *exportedl;
618
619
620 // Master edl
621         EDL *edl;
622 // Main Window GUI
623         MWindowGUI *gui;
624 // Compositor
625         CWindow *cwindow;
626 // Viewer
627         Mutex *vwindows_lock;
628         ArrayList<VWindow*> vwindows;
629 // Mixer
630         Mutex *zwindows_lock;
631         ArrayList<ZWindow*> zwindows;
632         MixersAlign *mixers_align;
633
634 // Asset manager
635         AWindow *awindow;
636 // Automation window
637         GWindow *gwindow;
638 // Tip of the day
639         TipWindow *twindow;
640 // Warning window
641         WWindow *wwindow;
642         void show_warning(int *do_warning, const char *text);
643         int wait_warning();
644 // Levels
645         LevelWindow *lwindow;
646         Mutex *run_lock;
647 // Lock during creation and destruction of GUI
648         Mutex *plugin_gui_lock;
649         Mutex *dead_plugin_lock;
650         Mutex *keyframe_gui_lock;
651 // Lock during creation and destruction of brender so playback doesn't use it.
652         Mutex *brender_lock;
653 // Initialize shared memory
654         void init_shm(const char *pfn, int64_t min);
655 // Initialize channel DB's for playback
656         void init_channeldb();
657         void init_render();
658         void init_exportedl();
659 // These three happen synchronously with each other
660 // Make sure this is called after synchronizing EDL's.
661         void init_brender();
662 // Restart brender after testing its existence
663         void restart_brender();
664 // Stops brender after testing its existence
665         void stop_brender();
666 // This one happens asynchronously of the others.  Used by playback to
667 // see what frame is background rendered.
668         int brender_available(int position);
669         void set_brender_active(int v, int update=1);
670         int put_commercial();
671         void activate_commercial() { commercial_active = 1; }
672         void commit_commercial();
673         void undo_commercial();
674         void cut_commercials();
675         void update_gui(int changed_edl);
676         int paste_subtitle_text(char *text, double start, double end);
677
678         void init_error();
679         void finit_error();
680         static void init_defaults(BC_Hash* &defaults, char *config_path);
681         void check_language();
682         const char *default_std();
683         void fill_preset_defaults(const char *preset, EDLSession *session);
684         const char *get_preset_name(int index);
685         void init_edl();
686         void init_awindow();
687         void init_gwindow();
688         void init_tipwindow();
689 // Used by MWindow and RenderFarmClient
690         static void get_plugin_path(char *path, const char *plug_dir, const char *fs_path);
691         static int init_plugins(MWindow *mwindow, Preferences *preferences);
692         static int init_ladspa_plugins(MWindow *mwindow, Preferences *preferences);
693         static void init_plugin_tips(ArrayList<PluginServer*> &plugins, const char *lang);
694         static int check_plugin_index(ArrayList<PluginServer*> &plugins,
695                 const char *plug_dir, const char *plug_path);
696         static void init_plugin_index(MWindow *mwindow, Preferences *preferences,
697                 FILE *fp, const char *plugin_dir);
698         static int init_ladspa_index(MWindow *mwindow, Preferences *preferences,
699                 FILE *fp, const char *plugin_dir);
700         static void scan_plugin_index(MWindow *mwindow, Preferences *preferences,
701                 FILE *fp, const char *plug_dir, const char *plug_path, int &idx);
702         static void init_ffmpeg();
703         static void init_ffmpeg_index(MWindow *mwindow, Preferences *preferences, FILE *fp);
704         static int load_plugin_index(MWindow *mwindow, FILE *fp, const char *plugin_dir);
705         static PluginServer *new_ffmpeg_server(MWindow *mwindow, const char *name);
706         static int init_lv2_index(MWindow *mwindow, Preferences *preferences, FILE *fp);
707         static PluginServer *new_lv2_server(MWindow *mwindow, const char *name);
708         static void remove_plugin_index();
709
710         void init_preferences();
711         void init_signals();
712         void init_shuttle();
713         void init_theme();
714         void init_compositor();
715         void init_levelwindow();
716 // Called when creating a new viewer to view footage
717         VWindow* get_viewer(int start_it, int idx=-1);
718         void init_cache();
719         void init_menus();
720         void init_indexes();
721         void init_gui();
722         void init_3d();
723         void init_playbackcursor();
724         void init_commercials();
725         static void add_plugins(ArrayList<PluginServer*> &plugins);
726         static void delete_plugins();
727         void speed_before();
728         int speed_after(int done);
729         int normalize_speed(EDL *old_edl, EDL *new_edl);
730 //
731         void clean_indexes();
732 //      TimeBomb timebomb;
733         SigHandler *sighandler;
734         int restart_status;
735         int screens;
736         int in_destructor;
737         Shuttle *shuttle;
738 };
739
740 #endif