X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Ftime_selection.h;h=f93f40c21e4004eaa583dae58391fd7a5257cafa;hb=dab0dacc66dcc190b4408ba75e3807973582cbd6;hp=1783e160468076f4054793b847be17ded3099e97;hpb=666e0870554705f4fb466fc6b188fe9b4000ca49;p=ardour.git diff --git a/gtk2_ardour/time_selection.h b/gtk2_ardour/time_selection.h index 1783e16046..f93f40c21e 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 @@ -21,36 +21,22 @@ #define __ardour_gtk_time_selection_h__ #include -#include +#include "ardour/types.h" namespace ARDOUR { class RouteGroup; } -class TimeAxisView; - -struct TimeSelection : public std::list { - - /* 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 (); +class TimeSelection : public std::list +{ +public: + ARDOUR::AudioRange& operator[](uint32_t); + + nframes_t start(); + nframes_t end_frame(); + nframes_t length(); + + bool consolidate (); };