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