Put the sidechain ports into a dedicated tab in PortMatrix
[ardour.git] / gtk2_ardour / time_selection.h
index 819a85e80951e9ca13fdd802d6dbd550a482c0ac..6e59684a480682b24f9d92b7ba9ef04412b4c25d 100644 (file)
@@ -27,30 +27,16 @@ namespace ARDOUR {
        class RouteGroup;
 }
 
-class TimeAxisView;
+class TimeSelection : public std::list<ARDOUR::AudioRange>
+{
+public:
+       ARDOUR::AudioRange& operator[](uint32_t);
 
-struct TimeSelection : public std::list<ARDOUR::AudioRange> {
+       ARDOUR::samplepos_t start();
+       ARDOUR::samplepos_t end_sample();
+       ARDOUR::samplepos_t length();
 
-    /* if (track == 0 && group == 0) then it applies to all
-       tracks.
-
-       if (track != 0 && group == 0) then it applies just to
-       that track.
-
-       if (group != 0) then it applies to all tracks in
-       the group.
-    */
-
-    TimeAxisView*               track;
-    ARDOUR::RouteGroup*         group;
-
-    ARDOUR::AudioRange& operator[](uint32_t);
-
-    nframes_t start();
-    nframes_t end_frame();
-    nframes_t length();
-
-    bool consolidate ();
+       bool consolidate ();
 };