upgrades to scopewindow, add blurbox, bd.sh sed tab test, tweak clk2play over window...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / mwindow.h
index b7034d8d16a9cf51f22afea4779462947ad88b65..b04acea7300b5dc36acc8c7a1eda2adc8049428b 100644 (file)
 #include "wwindow.inc"
 #include "wavecache.inc"
 #include "wintv.inc"
+#include "x10tv.inc"
 
 #define FONT_SEARCHPATH "fonts"
 
@@ -168,6 +169,7 @@ public:
        int load_defaults();
        int save_defaults();
        int set_filename(const char *filename);
+       int set_titlebar(const char *filename);
 // Total vertical pixels in timeline
        int get_tracks_height();
 // Total horizontal pixels in timeline
@@ -175,6 +177,9 @@ public:
 // session stack
        void stack_push(EDL *edl, Indexable *idxbl);
        void stack_pop();
+       int save(EDL *edl, char *filename, int stat);
+       int save(int save_as);
+       void show_plugins();
        void clip_to_media();
        void media_to_clip();
        int create_ref(Asset *asset, EDL *ref);
@@ -317,6 +322,7 @@ public:
        int prev_edit_handle(int shift_down);
 // seek to keyframes
        int nearest_plugin_keyframe(int shift_down, int dir);
+       int nearest_auto_keyframe(int shift_down, int dir);
 // offset is pixels to add to track_start
        void trackmovement(int offset, int pane_number);
 // view_start is pixels
@@ -339,6 +345,7 @@ public:
        void load_backup();
        void show_plugin(Plugin *plugin);
        void hide_plugin(Plugin *plugin, int lock);
+       void hide_plugin(int plugin_id, int lock);
        void hide_plugins();
        void delete_plugin(PluginServer *plugin);
 // Update plugins with configuration changes.
@@ -548,6 +555,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);
@@ -595,7 +603,7 @@ public:
        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);
+                       float beep, int to_proxy, int remove_originals);
        void finish_convert(int remove_originals);
        ConvertRender *convert_render;
 
@@ -771,6 +779,7 @@ public:
        void init_signals();
        void init_shuttle();
        void init_wintv();
+       void init_x10tv();
        void init_theme();
        void init_compositor();
        void init_levelwindow();
@@ -788,6 +797,7 @@ public:
        void speed_before();
        int speed_after(int done);
        int normalize_speed(EDL *old_edl, EDL *new_edl);
+       int get_cpus();
 //
        void clean_indexes();
 //     TimeBomb timebomb;
@@ -797,6 +807,7 @@ public:
        int in_destructor;
        Shuttle *shuttle;
        WinTV *wintv;
+       X10TV *x10tv;
 };
 
 #endif