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