Make menu option for speaker config the same as the window title.
[ardour.git] / gtk2_ardour / region_editor.h
index 8fdb56321142d4bf8460740f85c87e5d7b99f958..9417ddfdd7ef3aa80cb72f8c1d31d7f05292949f 100644 (file)
@@ -33,6 +33,7 @@
 #include <gtkmm/adjustment.h>
 #include <gtkmm/separator.h>
 #include <gtkmm/spinbutton.h>
+#include <gtkmm/listviewtext.h>
 
 #include <libgnomecanvas/libgnomecanvas.h>
 
@@ -47,15 +48,19 @@ namespace ARDOUR {
        class Session;
 }
 
+class ClockGroup;
+
 class RegionEditor : public ArdourDialog
 {
   public:
        RegionEditor (ARDOUR::Session*, boost::shared_ptr<ARDOUR::Region>);
+       virtual ~RegionEditor ();
 
   protected:   
        virtual void region_changed (const PBD::PropertyChange&);
        
        Gtk::Table _table;
+       int _table_row;
 
   private:
        boost::shared_ptr<ARDOUR::Region> _region;
@@ -73,6 +78,8 @@ class RegionEditor : public ArdourDialog
        Gtk::Label sync_absolute_label;
        Gtk::Label start_label;
 
+        ClockGroup* _clock_group;
+
        AudioClock position_clock;
        AudioClock end_clock;
        AudioClock length_clock;
@@ -106,6 +113,9 @@ class RegionEditor : public ArdourDialog
        void handle_response (int);
 
        bool spin_arrow_grab;
+
+       Gtk::Label _sources_label;
+       Gtk::ListViewText _sources;
 };
 
 #endif /* __gtk_ardour_region_edit_h__ */