add nested proxy path, rework perpetual session load/save strategy, build cleanups
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / mwindow.h
index be468ac9249c107e99fa2f3bab8f056e445f75e1..c35d62babae47154ac10316a372e39d464792cf6 100644 (file)
@@ -39,6 +39,7 @@
 #include "channel.inc"
 #include "channeldb.inc"
 #include "commercials.inc"
+#include "convert.inc"
 #include "cwindow.inc"
 #include "bchash.inc"
 #include "devicedvbinput.inc"
@@ -71,6 +72,7 @@
 #include "playback3d.inc"
 #include "playbackengine.inc"
 #include "plugin.inc"
+#include "pluginclient.inc"
 #include "pluginfclient.inc"
 #include "pluginserver.inc"
 #include "pluginset.inc"
@@ -88,7 +90,6 @@
 #include "thread.h"
 #include "threadloader.inc"
 #include "timebar.inc"
-#include "timebomb.h"
 #include "tipwindow.inc"
 #include "track.inc"
 #include "tracking.inc"
 #include "zwindow.inc"
 #include "wwindow.inc"
 #include "wavecache.inc"
+#include "wintv.inc"
+#include "x10tv.inc"
 
 #define FONT_SEARCHPATH "fonts"
 
+class StackItem
+{
+public:
+       EDL *edl, *new_edl;
+       Indexable *idxbl;
+       MainUndo *undo;
+       int64_t mtime;
+};
+
+class Stack : public ArrayList<StackItem>
+{
+public:
+};
+
+
+#define BEEP_SAMPLE_RATE 48000
+
+class Beeper : public Thread
+{
+public:
+       typedef int16_t audio_data_t;
+       Beeper(MWindow *mwindow);
+       ~Beeper();
+
+       void run();
+       void start();
+       void stop(int wait);
+       void tone(double freq, double secs, double gain);
+
+       MWindow *mwindow;
+       double freq, secs, gain;
+       AudioDevice *audio;
+       int playing_audio, interrupted;
+       int audio_pos;
+};
+
 
 class MWindow : public Thread
 {
@@ -115,6 +154,7 @@ public:
        void create_objects(int want_gui,
                int want_new,
                char *config_path);
+       int uses_opengl();
        void show_splash();
        void hide_splash();
        void start();
@@ -133,6 +173,12 @@ public:
        int get_tracks_height();
 // Total horizontal pixels in timeline
        int get_tracks_width();
+// session stack
+       void stack_push(EDL *edl, Indexable *idxbl);
+       void stack_pop();
+       void clip_to_media();
+       void media_to_clip();
+       int create_ref(Asset *asset, EDL *ref);
 // Show windows
        void show_vwindow();
        void show_awindow();
@@ -180,6 +226,7 @@ public:
                int overwrite);
 // Reset everything for a load
        void update_project(int load_mode);
+       void update_preferences(Preferences *prefs);
        void update_vwindow();
 // Fit selected time to horizontal display range
        void fit_selection();
@@ -215,7 +262,7 @@ public:
        void create_mixers(double position = 0);
        void refresh_mixers(int dir=1);
        void stop_mixers();
-       void close_mixers(int destroy=1);
+       void close_mixers(int result=1);
        void open_mixers();
        ZWindow *get_mixer(Mixer *&mixer);
        void del_mixer(ZWindow *zwindow);
@@ -226,13 +273,13 @@ public:
        void tile_mixers();
        int load_filenames(ArrayList<char*> *filenames,
                int load_mode = LOADMODE_REPLACE,
+               int edl_mode = LOADMODE_EDL_CLIP,
 // Cause the project filename on the top of the window to be updated.
 // Not wanted for loading backups.
                int update_filename = 1);
 
-
 // Print out plugins which are referenced in the EDL but not loaded.
-       void test_plugins(EDL *new_edl, char *path);
+       void test_plugins(EDL *new_edl, const char *path);
 
        int interrupt_indexes();  // Stop index building
 
@@ -285,8 +332,9 @@ public:
        int zoom_in_t();
        void split_x();
        void split_y();
-       void crop_video();
+       void crop_video(int mode);
        void update_plugins();
+       void get_backup_path(char *path, int len);
 // Call after every edit operation
        void save_backup();
        void load_backup();
@@ -303,11 +351,16 @@ public:
 // Searches for matching plugin and renders data in it.
        void render_plugin_gui(void *data, Plugin *plugin);
        void render_plugin_gui(void *data, int size, Plugin *plugin);
+       void reset_plugin_gui_frames(Plugin *plugin);
+       void render_plugin_gui_frames(PluginClientFrames *frames, Plugin *plugin);
+       double get_tracking_position();
+       int get_tracking_direction();
 
 // Called from PluginVClient::process_buffer
 // Returns 1 if a GUI for the plugin is open so OpenGL routines can determine if
 // they can run.
        int plugin_gui_open(Plugin *plugin);
+       void stop_plugin_guis();
 
        void show_keyframe_gui(Plugin *plugin);
        void hide_keyframe_guis();
@@ -347,6 +400,9 @@ public:
        void clear(int clear_handle);
        void clear_labels();
        int clear_labels(double start, double end);
+       void clear_hard_edges();
+       int clear_hard_edges(double start, double end);
+       void clear_select();
        void concatenate_tracks();
        int copy_flags(int copy_flags=COPY_CLIPBOARD);
        void copy();
@@ -365,7 +421,6 @@ public:
 // Calculate defaults path
        static void create_defaults_path(char *string, const char *config_file);
 
-       void delete_track();
        void delete_track(Track *track);
        void delete_tracks();
        int feather_edits(int64_t feather_samples, int audio, int video);
@@ -462,9 +517,8 @@ public:
        void rebuild_indices();
 // Asset removal from caches
        void reset_caches();
-       void remove_asset_from_caches(Asset *asset);
-       void remove_assets_from_project(int push_undo /* = 0 */,
-               int redraw /* 1 */,
+       void remove_from_caches(Indexable *idxbl);
+       void remove_assets_from_project(int push_undo, int redraw, int delete_indexes,
                ArrayList<Indexable*> *drag_assets /* mwindow->session->drag_assets */,
                ArrayList<EDL*> *drag_clips /* mwindow->session->drag_clips */);
        void remove_assets_from_disk();
@@ -473,6 +527,7 @@ public:
        void set_automation_mode(int mode);
        void set_keyframe_type(int mode);
        void set_auto_keyframes(int value);
+       void set_span_keyframes(int value);
        void set_auto_visibility(Autos *autos, int value);
        void set_labels_follow_edits(int value);
 
@@ -494,6 +549,7 @@ public:
        void redo_entry(BC_WindowBase *calling_window_gui);
        void save_undo_data();
        void load_undo_data();
+       void remove_undo_data();
        int copy_target(const char *path, const char *target);
        int link_target(const char *real_path, const char *link_path, int relative);
        void save_project(const char *dir, int save_mode, int overwrite, int reload);
@@ -519,15 +575,14 @@ public:
        int modify_pluginhandles();
        void finish_modify_handles();
        void rescale_proxy(EDL *clip, int orig_scale, int new_scale);
-       void add_proxy(int use_scaler,
-               ArrayList<Indexable*> *orig_assets,
-               ArrayList<Indexable*> *proxy_assets);
+       void add_proxy(ArrayList<Indexable*> *orig_assets,
+                       ArrayList<Indexable*> *proxy_assets);
        int render_proxy(ArrayList<Indexable *> &new_idxbls);
        void beep(double freq, double secs, double gain);
        int enable_proxy();
        int disable_proxy();
        int to_proxy(Asset *asset, int new_scale, int new_use_scaler);
-       ProxyBeep *proxy_beep;
+       Beeper *beeper;
 
        void dump_plugins(FILE *fp=stdout);
        void dump_edl(FILE *fp=stdout);
@@ -540,6 +595,11 @@ public:
 // Send new EDL to caches
        void age_caches();
        int optimize_assets();            // delete unused assets from the cache and assets
+// render edl assets to specified format, then replace in edl
+       void start_convert(Asset *format_asset, const char *suffix,
+                       float beep, int remove_originals);
+       void finish_convert(int remove_originals);
+       ConvertRender *convert_render;
 
        void select_point(double position);
        int set_loop_boundaries();         // toggle loop playback and set boundaries for loop playback
@@ -551,6 +611,8 @@ public:
 // Main undo stack
        MainUndo *undo;
        int undo_command;
+// session stack
+       Stack stack;
 
        BC_Hash *defaults;
        Assets *assets;
@@ -580,7 +642,6 @@ public:
        ArrayList<ColormodelItem*> colormodels;
        ArrayList<InterlacemodeItem*>          interlace_project_modes;
        ArrayList<InterlacemodeItem*>          interlace_asset_modes;
-       ArrayList<InterlacefixmethodItem*>     interlace_asset_fixmethods;
 
        int reset_meters();
        void resync_guis();
@@ -598,7 +659,7 @@ public:
        static ArrayList<PluginServer*> *plugindb;
 // Currently visible plugins
        int64_t plugin_visibility;
-       ArrayList<PluginServer*> *plugin_guis;
+       PluginGUIs *plugin_guis;
 // GUI Plugins to delete
        ArrayList<PluginServer*> *dead_plugins;
 // Keyframe editors
@@ -711,6 +772,8 @@ public:
        void init_preferences();
        void init_signals();
        void init_shuttle();
+       void init_wintv();
+       void init_x10tv();
        void init_theme();
        void init_compositor();
        void init_levelwindow();
@@ -736,6 +799,8 @@ public:
        int screens;
        int in_destructor;
        Shuttle *shuttle;
+       WinTV *wintv;
+       X10TV *x10tv;
 };
 
 #endif