improve sysex data display.
[ardour.git] / gtk2_ardour / time_info_box.h
index 7409d7631e20f21ebbcc3f8e9c5f20f42ef7ee8b..83f58e7eb58ab093ef90a917f72c820df7549ed2 100644 (file)
 #include <gtkmm/label.h>
 #include <gtkmm/table.h>
 
+#include "gtkmm2ext/cairo_packer.h"
+
 #include "ardour/ardour.h"
 #include "ardour/session_handle.h"
 
+#include "ardour_button.h"
+
 namespace ARDOUR {
        class Session;
         class Location;
@@ -36,50 +40,45 @@ namespace ARDOUR {
 
 class AudioClock;
 
-class TimeInfoBox : public Gtk::HBox, public ARDOUR::SessionHandlePtr
+class TimeInfoBox : public CairoHPacker, public ARDOUR::SessionHandlePtr
 {
-  public:
-    TimeInfoBox ();
-    ~TimeInfoBox ();
+public:
+       TimeInfoBox (bool with_punch);
+       ~TimeInfoBox ();
 
-    void set_session (ARDOUR::Session*);
+       void set_session (ARDOUR::Session*);
 
-  protected:
-    bool on_expose_event (GdkEventExpose*);
+private:
+       Gtk::Table table;
 
-  private:
-    Gtk::Table left;
-    Gtk::Table right;
+       AudioClock* selection_start;
+       AudioClock* selection_end;
+       AudioClock* selection_length;
 
-    AudioClock* selection_start;
-    AudioClock* selection_end;
-    AudioClock* selection_length;
-    
-    AudioClock* punch_start;
-    AudioClock* punch_end;
+       AudioClock* punch_start;
+       AudioClock* punch_end;
 
-    Gtk::Label selection_title;
-    Gtk::Label punch_title;
-    bool syncing_selection;
-    bool syncing_punch;
+       Gtk::Label selection_title;
+       Gtk::Label punch_title;
+       bool syncing_selection;
+       bool syncing_punch;
+       bool with_punch_clock;
 
-    void punch_changed (ARDOUR::Location*);
-    void punch_location_changed (ARDOUR::Location*);
-    void watch_punch (ARDOUR::Location*);
-    PBD::ScopedConnectionList punch_connections;
-    PBD::ScopedConnectionList editor_connections;
+       void punch_changed (ARDOUR::Location*);
+       void punch_location_changed (ARDOUR::Location*);
+       void watch_punch (ARDOUR::Location*);
+       PBD::ScopedConnectionList punch_connections;
+       PBD::ScopedConnectionList editor_connections;
+       PBD::ScopedConnectionList region_property_connections;
 
-    Gtkmm2ext::StatefulToggleButton punch_in_button;
-    Gtkmm2ext::StatefulToggleButton punch_out_button;
+       void selection_changed ();
 
-    void selection_changed ();
+       void sync_selection_mode (AudioClock*);
+       void sync_punch_mode (AudioClock*);
 
-    void sync_selection_mode (AudioClock*);
-    void sync_punch_mode (AudioClock*);
-
-    bool clock_button_release_event (GdkEventButton* ev, AudioClock* src);
-    void track_mouse_mode ();
+       bool clock_button_release_event (GdkEventButton* ev, AudioClock* src);
+       void track_mouse_mode ();
+       void region_property_change (boost::shared_ptr<ARDOUR::Region> r, const PBD::PropertyChange& what_changed);
 };
 
-
 #endif /* __time_info_box_h__ */