X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Ftime_info_box.h;h=444d2e83b0402b21c8cc3bd3c26a62dcbf72707f;hb=65eeeb7a652d7022783b10e35941ce56e0fc7207;hp=035cdb7e00c2bdde5a2413012ba3c7ca6ef36bf4;hpb=6449c2e5c8b027245fe5fb9942984243e4a653d7;p=ardour.git diff --git a/gtk2_ardour/time_info_box.h b/gtk2_ardour/time_info_box.h index 035cdb7e00..444d2e83b0 100644 --- a/gtk2_ardour/time_info_box.h +++ b/gtk2_ardour/time_info_box.h @@ -26,6 +26,8 @@ #include #include +#include "gtkmm2ext/cairo_packer.h" + #include "ardour/ardour.h" #include "ardour/session_handle.h" @@ -38,7 +40,7 @@ namespace ARDOUR { class AudioClock; -class TimeInfoBox : public Gtk::HBox, public ARDOUR::SessionHandlePtr +class TimeInfoBox : public CairoHPacker, public ARDOUR::SessionHandlePtr { public: TimeInfoBox (); @@ -46,9 +48,6 @@ class TimeInfoBox : public Gtk::HBox, public ARDOUR::SessionHandlePtr void set_session (ARDOUR::Session*); - protected: - bool on_expose_event (GdkEventExpose*); - private: Gtk::Table left; Gtk::Table right; @@ -56,7 +55,7 @@ class TimeInfoBox : public Gtk::HBox, public ARDOUR::SessionHandlePtr AudioClock* selection_start; AudioClock* selection_end; AudioClock* selection_length; - + AudioClock* punch_start; AudioClock* punch_end; @@ -70,6 +69,7 @@ class TimeInfoBox : public Gtk::HBox, public ARDOUR::SessionHandlePtr void watch_punch (ARDOUR::Location*); PBD::ScopedConnectionList punch_connections; PBD::ScopedConnectionList editor_connections; + PBD::ScopedConnectionList region_property_connections; ArdourButton punch_in_button; ArdourButton punch_out_button; @@ -81,6 +81,7 @@ class TimeInfoBox : public Gtk::HBox, public ARDOUR::SessionHandlePtr bool clock_button_release_event (GdkEventButton* ev, AudioClock* src); void track_mouse_mode (); + void region_property_change (boost::shared_ptr r, const PBD::PropertyChange& what_changed); };