mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
add API to fetch all regionviews after a given position
This commit is contained in:
parent
a1ef870866
commit
12b536d8f2
7 changed files with 33 additions and 0 deletions
|
|
@ -1170,6 +1170,16 @@ RouteTimeAxisView::get_inverted_selectables (Selection& sel, list<Selectable*>&
|
|||
StripableTimeAxisView::get_inverted_selectables (sel, results);
|
||||
}
|
||||
|
||||
void
|
||||
RouteTimeAxisView::get_regionviews_at_or_after (samplepos_t pos, RegionSelection& regions)
|
||||
{
|
||||
if (!_view) {
|
||||
return;
|
||||
}
|
||||
|
||||
_view->get_regionviews_at_or_after (pos, regions);
|
||||
}
|
||||
|
||||
RouteGroup*
|
||||
RouteTimeAxisView::route_group () const
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue