summaryrefslogtreecommitdiff
path: root/gtk2_ardour/region_selection.h
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/region_selection.h')
-rw-r--r--gtk2_ardour/region_selection.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/gtk2_ardour/region_selection.h b/gtk2_ardour/region_selection.h
index 6b5ae9c0fb..084345a76d 100644
--- a/gtk2_ardour/region_selection.h
+++ b/gtk2_ardour/region_selection.h
@@ -29,6 +29,10 @@ using std::set;
class RegionView;
+/**
+ * Class to represent list of selected regions.
+ */
+
class RegionSelection : public std::list<RegionView*>, public sigc::trackable
{
public:
@@ -65,10 +69,10 @@ class RegionSelection : public std::list<RegionView*>, public sigc::trackable
void add_to_layer (RegionView *);
- nframes_t _current_start;
- nframes_t _current_end;
+ nframes_t _current_start; ///< start position for the selection
+ nframes_t _current_end; ///< end position for the selection
- list<RegionView *> _bylayer;
+ list<RegionView *> _bylayer; ///< list of regions sorted by layer
};
#endif /* __ardour_gtk_region_selection_h__ */