the "final" (??) fixes for transport state stuff before 2.8.4. y'all let me know...
[ardour.git] / gtk2_ardour / ardour_ui.h
index a0c84a18d840d37dd6c054057f17b8b46b5bd66b..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,6 +114,7 @@ class ARDOUR_UI : public Gtkmm2ext::UI
        void show_splash ();
        void hide_splash ();
 
+       void launch_chat ();
        void show_about ();
        void hide_about ();
        
@@ -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 ();
 
@@ -574,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 *);
@@ -644,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 ();
 
@@ -655,6 +656,19 @@ 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 ();
@@ -696,6 +710,7 @@ 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();
@@ -753,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);