X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Ftime_selection.h;h=4c535a8e6af91a55addc10282ba4c4fcd05d720d;hb=ab6ab082dd947a1a79fcc704968a6d1dc7701b66;hp=ba4250ad7fb5f7188a23bb0470da0cbe08d2cba9;hpb=402cc384ced6cb152c8abe4294009fe0de0a6dea;p=ardour.git diff --git a/gtk2_ardour/time_selection.h b/gtk2_ardour/time_selection.h index ba4250ad7f..4c535a8e6a 100644 --- a/gtk2_ardour/time_selection.h +++ b/gtk2_ardour/time_selection.h @@ -1,5 +1,5 @@ /* - Copyright (C) 2000-2007 Paul Davis + Copyright (C) 2000-2007 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -27,30 +27,16 @@ namespace ARDOUR { class RouteGroup; } -class TimeAxisView; +class TimeSelection : public std::list +{ +public: + ARDOUR::AudioRange& operator[](uint32_t); -struct TimeSelection : public std::list { - - /* if (track == 0 && group == 0) then it applies to all - tracks. + ARDOUR::framepos_t start(); + ARDOUR::framepos_t end_frame(); + ARDOUR::framepos_t length(); - 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 (); };