Fix menu missing fit-tracks.
[ardour.git] / gtk2_ardour / ardour_ui.h
index 0eb02d88212f8dc50b7f32a0b249b86e706fdf8e..dccf5ef38a2ea18489339031e9954c7d6bed00f5 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 1999-2002 Paul Davis 
+    Copyright (C) 1999-2002 Paul Davis
 
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
@@ -59,6 +59,7 @@
 #include <ardour/ardour.h>
 #include <ardour/session.h>
 #include <ardour/configuration.h>
+#include <ardour/types.h>
 
 #include "audio_clock.h"
 #include "ardour_dialog.h"
@@ -110,18 +111,18 @@ class ARDOUR_UI : public Gtkmm2ext::UI
 
        void show ();
        bool shown() { return shown_flag; }
-       
+
        void show_splash ();
        void hide_splash ();
 
        void show_about ();
        void hide_about ();
-       
+
        void idle_load (const Glib::ustring& path);
        int load_session (const Glib::ustring& path, const Glib::ustring& snapshot, Glib::ustring mix_template = Glib::ustring());
        bool session_loaded;
-       int build_session (const Glib::ustring& path, const Glib::ustring& snapshot, 
-                          uint32_t ctl_chns, 
+       int build_session (const Glib::ustring& path, const Glib::ustring& snapshot,
+                          uint32_t ctl_chns,
                           uint32_t master_chns,
                           ARDOUR::AutoConnectOption input_connect,
                           ARDOUR::AutoConnectOption output_connect,
@@ -145,14 +146,13 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        int  load_cmdline_session (const Glib::ustring& session_name, const Glib::ustring& session_path, bool& existing_session);
        int  build_session_from_nsd (const Glib::ustring& session_name, const Glib::ustring& session_path);
        bool ask_about_loading_existing_session (const Glib::ustring& session_path);
-       
+
        /// @return true if session was successfully unloaded.
        int unload_session (bool hide_stuff = false);
-       void close_session(); 
+       void close_session();
 
        int  save_state_canfail (string state_name = "");
        void save_state (const string & state_name = "");
-       void restore_state (string state_name = "");
 
        static double gain_to_slider_position (ARDOUR::gain_t g);
        static ARDOUR::gain_t slider_position_to_gain (double pos);
@@ -181,12 +181,6 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        static sigc::signal<void>      SuperRapidScreenUpdate;
        static sigc::signal<void,nframes_t, bool, nframes_t> Clock;
 
-       /* this is a helper function to centralize the (complex) logic for
-          blinking rec-enable buttons.
-       */
-
-       void rec_enable_button_blink (bool onoff, ARDOUR::AudioDiskstream *, Gtk::Widget *w);
-
        void name_io_setup (ARDOUR::AudioEngine&, string&, ARDOUR::IO& io, bool in);
 
        static gint hide_and_quit (GdkEventAny *ev, ArdourDialog *);
@@ -212,7 +206,7 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void restore_clock_modes ();
 
        void add_route (Gtk::Window* float_window);
-       
+
        void session_add_audio_track (int input_channels, int32_t output_channels, ARDOUR::TrackMode mode, uint32_t how_many) {
                session_add_audio_route (true, input_channels, output_channels, mode, how_many);
        }
@@ -260,7 +254,7 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void toggle_click ();
 
        void toggle_session_auto_loop ();
-       
+
        void toggle_options_window ();
 
   private:
@@ -295,7 +289,7 @@ class ARDOUR_UI : public Gtkmm2ext::UI
 
        void                     goto_editor_window ();
        void                     goto_mixer_window ();
-       
+
        Gtk::Table               adjuster_table;
        Gtk::Frame               adjuster_frame;
        Gtk::Fixed               adjuster_base;
@@ -309,9 +303,6 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        Gtk::ToggleButton   preroll_button;
        Gtk::ToggleButton   postroll_button;
 
-       Gtk::Table          transport_table;
-       Gtk::Table          option_table;
-
        int  setup_windows ();
        void setup_transport ();
        void setup_clock ();
@@ -324,7 +315,6 @@ class ARDOUR_UI : public Gtkmm2ext::UI
 
        void finish();
        int  ask_about_saving_session (const string & why);
-       int  save_the_session;
 
        /* periodic safety backup, to be precise */
        gint autosave_session();
@@ -334,7 +324,7 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void queue_transport_change ();
        void map_transport_state ();
        int32_t do_engine_start ();
-       
+
        void engine_halted ();
        void engine_stopped ();
        void engine_running ();
@@ -359,11 +349,13 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void         stop_clocking ();
 
        void manage_window (Gtk::Window&);
-       
+
        AudioClock   big_clock;
-       Gtk::Frame   big_clock_frame;
        Gtk::Window* big_clock_window;
 
+       void float_big_clock (Gtk::Window* parent);
+       bool main_window_state_event_handler (GdkEventWindowState*, bool window_was_editor);
+
        void update_transport_clocks (nframes_t pos);
        void record_state_changed ();
 
@@ -399,27 +391,27 @@ class ARDOUR_UI : public Gtkmm2ext::UI
                    AutoLoop,
                    PlaySelection,
                    ShuttleControl
-                   
+
            };
-           
+
            TransportControllable (std::string name, ARDOUR_UI&, ToggleType);
            void set_value (float);
            float get_value (void) const;
-           
+
            void set_id (const std::string&);
-           
+
            ARDOUR_UI& ui;
            ToggleType type;
        };
 
-       TransportControllable roll_controllable;
-       TransportControllable stop_controllable;
-       TransportControllable goto_start_controllable;
-       TransportControllable goto_end_controllable;
-       TransportControllable auto_loop_controllable;
-       TransportControllable play_selection_controllable;
-       TransportControllable rec_controllable;
-       TransportControllable shuttle_controllable;
+       boost::shared_ptr<TransportControllable> roll_controllable;
+       boost::shared_ptr<TransportControllable> stop_controllable;
+       boost::shared_ptr<TransportControllable> goto_start_controllable;
+       boost::shared_ptr<TransportControllable> goto_end_controllable;
+       boost::shared_ptr<TransportControllable> auto_loop_controllable;
+       boost::shared_ptr<TransportControllable> play_selection_controllable;
+       boost::shared_ptr<TransportControllable> rec_controllable;
+       boost::shared_ptr<TransportControllable> shuttle_controllable;
        BindingProxy shuttle_controller_binding_proxy;
 
        void set_transport_controllable_state (const XMLNode&);
@@ -502,7 +494,7 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        Gtk::Menu*        session_popup_menu;
 
        struct RecentSessionModelColumns : public Gtk::TreeModel::ColumnRecord {
-           RecentSessionModelColumns() { 
+           RecentSessionModelColumns() {
                    add (visible_name);
                    add (fullpath);
            }
@@ -516,7 +508,7 @@ class ARDOUR_UI : public Gtkmm2ext::UI
 
        ArdourDialog*     session_selector_window;
        Gtk::FileChooserDialog* open_session_selector;
-       
+
        void build_session_selector();
        void redisplay_recent_sessions();
        void recent_session_row_activated (const Gtk::TreePath& path, Gtk::TreeViewColumn* col);
@@ -571,10 +563,13 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        bool _will_create_new_session_automatically;
 
        NewSessionDialog* new_session_dialog;
-       
+
        void open_session ();
        void open_recent_session ();
        void save_template ();
+       
+       void edit_metadata ();
+       void import_metadata ();
 
        void session_add_audio_route (bool disk, int32_t input_channels, int32_t output_channels, ARDOUR::TrackMode mode, uint32_t how_many);
        void session_add_midi_route (bool disk, uint32_t how_many);
@@ -586,11 +581,12 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void transport_goto_zero ();
        void transport_goto_start ();
        void transport_goto_end ();
+       void transport_goto_wallclock ();
        void transport_stop ();
        void transport_stop_and_forget_capture ();
        void transport_record (bool roll);
        void transport_roll ();
-       void transport_play_selection(); 
+       void transport_play_selection();
        void transport_forward (int option);
        void transport_rewind (int option);
        void transport_loop ();
@@ -604,16 +600,16 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void connect_to_session (ARDOUR::Session *);
        void connect_dependents_to_session (ARDOUR::Session *);
        void we_have_dependents ();
-       
+
        void setup_session_options ();
-       
+
        guint32  last_key_press_time;
 
        void snapshot_session ();
 
        Mixer_UI   *mixer;
        int         create_mixer ();
-       
+
        PublicEditor     *editor;
        int         create_editor ();
 
@@ -638,15 +634,15 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        KeyEditor *key_editor;
 
        /* Options window */
-       
+
        OptionEditor *option_editor;
-       
+
        /* route dialog */
 
        AddRouteDialog *add_route_dialog;
-       
+
        /* Keyboard Handling */
-       
+
        Keyboard* keyboard;
 
        /* Keymap handling */
@@ -672,20 +668,21 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void flush_trash ();
 
        bool have_configure_timeout;
-       struct timeval last_configure_time;
+       ARDOUR::microseconds_t last_configure_time;
        gint configure_timeout ();
 
-       struct timeval last_peak_grab;
-       struct timeval last_shuttle_request;
+       ARDOUR::microseconds_t last_peak_grab;
+       ARDOUR::microseconds_t last_shuttle_request;
 
        bool have_disk_speed_dialog_displayed;
        void disk_speed_dialog_gone (int ignored_response, Gtk::MessageDialog*);
        void disk_overrun_handler ();
        void disk_underrun_handler ();
 
+       void session_dialog (std::string);
        int pending_state_dialog ();
        int sr_mismatch_dialog (nframes_t, nframes_t);
-       
+
        void disconnect_from_jack ();
        void reconnect_to_jack ();
        void set_jack_buffer_size (nframes_t);
@@ -694,9 +691,6 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        Gtk::MenuItem* jack_reconnect_item;
        Gtk::Menu*     jack_bufsize_menu;
 
-       int make_session_clean ();
-       bool filter_ardour_session_dirs (const Gtk::FileFilter::Info&);
-
        Glib::RefPtr<Gtk::ActionGroup> common_actions;
 
        void editor_realized ();
@@ -707,6 +701,7 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void toggle_use_mmc ();
        void toggle_send_mmc ();
        void toggle_send_mtc ();
+       void toggle_use_midi_clock ();
 
        void toggle_use_osc ();
 
@@ -737,7 +732,9 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void toggle_ShowTrackMeters ();
        void toggle_only_copy_imported_files ();
        void toggle_use_narrow_ms();
+       void toggle_NameNewMarkers ();
        void toggle_rubberbanding_snaps_to_grid ();
+       void toggle_auto_analyse_audio ();
        void toggle_TapeMachineMode();
 
        void mtc_port_changed ();
@@ -769,11 +766,11 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        bool check_audioengine();
        void audioengine_setup ();
 
-       void display_message (const char *prefix, gint prefix_len, 
+       void display_message (const char *prefix, gint prefix_len,
                              Glib::RefPtr<Gtk::TextBuffer::Tag> ptag, Glib::RefPtr<Gtk::TextBuffer::Tag> mtag, const char *msg);
        Gtk::Label status_bar_label;
        Gtk::ToggleButton error_log_button;
-       
+
        void loading_message (const std::string& msg);
        void end_loading_messages ();