fix popup_menu icon placement, add layout_name feature, preset edit resize wdw fix...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / mwindow.h
index a69a3a506661292a76654aa1d62655409595e604..3add4e79cb38ac02a7a0eec06164992059c3225c 100644 (file)
@@ -82,6 +82,7 @@
 #include "sharedlocation.inc"
 #include "sighandler.inc"
 #include "splashgui.inc"
+#include "shuttle.inc"
 #include "theme.inc"
 #include "thread.h"
 #include "threadloader.inc"
 
 #define FONT_SEARCHPATH "fonts"
 
-// All entry points for commands except for window locking should be here.
-// This allows scriptability.
 
 class MWindow : public Thread
 {
@@ -141,8 +140,9 @@ public:
        void show_gwindow();
        void hide_gwindow();
        void restore_windows();
-       void save_layout(int no);
-       void load_layout(int no);
+       void load_layout(const char *layout);
+       void save_layout(const char *layout);
+       void delete_layout(const char *layout);
        int tile_windows(int window_config);
        char *get_cwindow_display();
        void set_screens(int value);
@@ -187,7 +187,7 @@ public:
                int edit_labels, int edit_autos, int edit_plugins);
        void selected_edits_to_clipboard(int packed);
 // Fit selected autos to the vertical display range
-       void fit_autos(int doall);
+       void fit_autos(int all);
        void change_currentautorange(int autogrouptype, int increment, int changemax);
        void expand_autos(int changeall, int domin, int domax);
        void shrink_autos(int changeall, int domin, int domax);
@@ -209,9 +209,11 @@ public:
        void dump_plugindb(FILE *fp);
        void stop_playback(int wait);
        void stop_transport();
+       void undo_before(const char *description = "", void *creator = 0);
+       void undo_after(const char *description, uint32_t load_flags, int changes_made = 1);
 
-       void queue_mixers(EDL *edl, int command, int wait_tracking,
-               int use_inout, int update_refresh, int toggle_audio, int loop_play);
+       void handle_mixers(EDL *edl, int command, int wait_tracking,
+               int use_inout, int toggle_audio, int loop_play, float speed);
        ZWindow *create_mixer(Indexable *indexable);
        void create_mixers();
        void refresh_mixers(int dir=1);
@@ -260,6 +262,8 @@ public:
        int find_selection(double position, int scroll_display = 0);
        void toggle_camera_xyz();
        void toggle_projector_xyz();
+       double get_position();
+       void set_position(double position);
 
 // seek to labels
 // shift_down must be passed by the caller because different windows call
@@ -348,6 +352,7 @@ public:
        void clear_labels();
        int clear_labels(double start, double end);
        void concatenate_tracks();
+       int copy_flags(int copy_flags=COPY_CLIPBOARD);
        void copy();
        int copy(double start, double end);
        void cut();
@@ -403,13 +408,12 @@ public:
        void cut_selected_edits(int collapse, int packed);
 // Move edit to new position
        void move_edits(ArrayList<Edit*> *edits, Track *track, double position,
-// 0 - old style (cut and insert elswhere), 1- new style - (clear and overwrite elsewere)
-               int behaviour);
+               int mode); // mode: 0 - mute and overwrite,  1 - cut and paste
        void paste_edits(EDL *clip, Track *first_track, double position, int overwrite,
                int edit_edits, int edit_labels, int edit_autos, int edit_plugins);
        void paste_clipboard(Track *first_track, double position, int overwrite,
                int edit_edits, int edit_labels, int edit_autos, int edit_plugins);
-       void move_group(EDL *group, Track *first_track, double position);
+       void move_group(EDL *group, Track *first_track, double position, int overwrite);
 // Move effect to position
        void move_effect(Plugin *plugin, Track *track, int64_t position);
        void move_effect(Plugin *plugin, PluginSet *plugin_set, int64_t position);
@@ -473,16 +477,16 @@ public:
 
        void set_automation_mode(int mode);
        void set_keyframe_type(int mode);
-       void set_auto_keyframes(int value, int lock_mwindow, int lock_cwindow);
+       void set_auto_keyframes(int value);
        void set_auto_visibility(Autos *autos, int value);
        void set_labels_follow_edits(int value);
 
 // Update the editing mode
-       int set_editing_mode(int new_editing_mode, int lock_mwindow, int lock_cwindow);
+       int set_editing_mode(int new_editing_mode);
        void toggle_editing_mode();
-       void set_inpoint(int is_mwindow);
-       void set_outpoint(int is_mwindow);
-       void unset_inoutpoint(int is_mwindow);
+       void set_inpoint();
+       void set_outpoint();
+       void unset_inoutpoint();
        void toggle_loop_playback();
        void trim_selection();
 // Synchronize EDL settings with all playback engines depending on current
@@ -490,7 +494,7 @@ public:
        void sync_parameters(int change_type = CHANGE_PARAMS);
        void save_clip(EDL *new_edl, const char *txt);
        void to_clip(EDL *edl, const char *txt, int all);
-       int toggle_label(int is_mwindow);
+       int toggle_label();
        void undo_entry(BC_WindowBase *calling_window_gui);
        void redo_entry(BC_WindowBase *calling_window_gui);
        void save_undo_data();
@@ -551,6 +555,8 @@ public:
 
 // Main undo stack
        MainUndo *undo;
+       int undo_command;
+
        BC_Hash *defaults;
        Assets *assets;
 // CICaches for drawing timeline only
@@ -707,6 +713,7 @@ public:
 
        void init_preferences();
        void init_signals();
+       void init_shuttle();
        void init_theme();
        void init_compositor();
        void init_levelwindow();
@@ -731,6 +738,7 @@ public:
        int restart_status;
        int screens;
        int in_destructor;
+       Shuttle *shuttle;
 };
 
 #endif