the "final" (??) fixes for transport state stuff before 2.8.4. y'all let me know...
[ardour.git] / gtk2_ardour / ardour_ui.h
index 6c937c23098b8bebabd914ba052ff3b99847c96a..d732a208b56715f8e81ff2528e4418ffb7d4cd33 100644 (file)
@@ -20,6 +20,8 @@
 #ifndef __ardour_gui_h__
 #define __ardour_gui_h__
 
+#include <time.h>
+
 /* need _BSD_SOURCE to get timersub macros */
 
 #ifdef _BSD_SOURCE
@@ -31,7 +33,6 @@
 #endif
 
 #include <list>
-
 #include <cmath>
 
 #include <libgnomecanvasmm/canvas.h>
@@ -113,10 +114,13 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void show_splash ();
        void hide_splash ();
 
+       void launch_chat ();
        void show_about ();
        void hide_about ();
        
        void idle_load (const Glib::ustring& path);
+       void finish();
+
        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, 
@@ -178,8 +182,6 @@ class ARDOUR_UI : public Gtkmm2ext::UI
 
        void name_io_setup (ARDOUR::AudioEngine&, string&, ARDOUR::IO& io, bool in);
 
-       static gint hide_and_quit (GdkEventAny *ev, ArdourDialog *);
-
        XMLNode* editor_settings() const;
        XMLNode* mixer_settings () const;
        XMLNode* keyboard_settings () const;
@@ -239,6 +241,8 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        bool ignore_dual_punch;
        void toggle_punch_in ();
        void toggle_punch_out ();
+       void show_loop_punch_ruler_and_disallow_hide ();
+       void reenable_hide_loop_punch_ruler_if_appropriate ();
        void toggle_auto_return ();
        void toggle_click ();
 
@@ -276,8 +280,10 @@ class ARDOUR_UI : public Gtkmm2ext::UI
 
        Gtk::Tooltips          _tooltips;
 
-       void                     goto_editor_window ();
-       void                     goto_mixer_window ();
+       void                goto_editor_window ();
+       void                goto_mixer_window ();
+       void                toggle_editor_mixer_on_top ();
+       bool                _mixer_on_top;
 
        GlobalClickBox     *online_control_button;
        vector<string>      online_control_strings;
@@ -298,7 +304,6 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void startup ();
        void shutdown ();
 
-       void finish();
        int  ask_about_saving_session (const string & why);
 
        /* periodic safety backup, to be precise */
@@ -339,6 +344,9 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        AudioClock   big_clock;
        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 ();
 
@@ -570,11 +578,7 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void transport_forward (int option);
        void transport_rewind (int option);
        void transport_loop ();
-
-       void transport_rolling ();
-       void transport_rewinding ();
-       void transport_forwarding ();
-       void transport_stopped ();
+       void toggle_roll (bool with_abort, bool roll_out_of_bounded_mode);
 
        bool _session_is_new;
        void connect_to_session (ARDOUR::Session *);
@@ -640,7 +644,8 @@ class ARDOUR_UI : public Gtkmm2ext::UI
 
        Gtk::MenuItem *cleanup_item;
 
-       void display_cleanup_results (ARDOUR::Session::cleanup_report& rep, const gchar* list_title, const string & msg);
+       void display_cleanup_results (ARDOUR::Session::cleanup_report& rep, const gchar* list_title, 
+                                     const string& plural_msg, const string& singular_msg);
        void cleanup ();
        void flush_trash ();
 
@@ -651,10 +656,25 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        ARDOUR::microseconds_t last_peak_grab;
        ARDOUR::microseconds_t last_shuttle_request;
 
+       struct DiskBufferStat {
+           time_t when;
+           uint32_t capture;
+           uint32_t playback;
+
+           DiskBufferStat (time_t w, uint32_t c, uint32_t p) 
+           : when (w), capture (c), playback (p) {}
+       };
+       
+       std::list<DiskBufferStat> disk_buffer_stats;
+       void push_buffer_stats (uint32_t, uint32_t);
+       void write_buffer_stats ();
+
        bool have_disk_speed_dialog_displayed;
        void disk_speed_dialog_gone (int ignored_response, Gtk::MessageDialog*);
        void disk_overrun_handler ();
        void disk_underrun_handler ();
+       
+       bool preset_file_exists_handler ();
 
        void session_dialog (std::string);
        int pending_state_dialog ();
@@ -690,7 +710,9 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void set_remote_model (ARDOUR::RemoteModel);
        void set_denormal_model (ARDOUR::DenormalModel);
 
+       void toggle_seamless_loop ();
        void toggle_sync_order_keys ();
+       void toggle_new_plugins_active();
        void toggle_StopPluginsWithTransport();
        void toggle_DoNotRunPluginsWhileRecording();
        void toggle_VerifyRemoveLastCapture();
@@ -701,6 +723,7 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void toggle_GainReduceFastTransport();
        void toggle_LatchedSolo();
        void toggle_ShowSoloMutes();
+       void toggle_SoloMuteOverride();
        void toggle_LatchedRecordEnable ();
        void toggle_RegionEquivalentsOverlap ();
        void toggle_PrimaryClockDeltaEditCursor ();
@@ -745,6 +768,7 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        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;
+       bool status_bar_button_press (GdkEventButton*);
        Gtk::ToggleButton error_log_button;
        
        void loading_message (const std::string& msg);