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