2017-02-23 16:31:03 -05:00
|
|
|
ardour {
|
|
|
|
["type"] = "EditorAction",
|
|
|
|
name = "Region Select/2",
|
|
|
|
license = "MIT",
|
|
|
|
author = "Ardour Team",
|
2020-04-23 23:47:02 -04:00
|
|
|
description = [[Select every 2nd region on all selected tracks]]
|
2017-02-23 16:31:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
-- select every 2nd region on all selected tracks
|
|
|
|
function factory () return function ()
|
|
|
|
|
|
|
|
local sl = ArdourUI.SelectionList () -- empty selection list
|
|
|
|
|
|
|
|
local sel = Editor:get_selection () -- get current selection
|
|
|
|
-- for each selected track/bus..
|
|
|
|
for route in sel.tracks:routelist ():iter () do
|
|
|
|
-- consider only tracks
|
|
|
|
local track = route:to_track ()
|
|
|
|
if track:isnil() then
|
|
|
|
goto continue
|
|
|
|
end
|
|
|
|
|
|
|
|
local skip = false;
|
|
|
|
-- iterate over all regions of the given track
|
|
|
|
for region in track:playlist():region_list():iter() do
|
|
|
|
if skip then
|
|
|
|
-- skip every 2nd region
|
|
|
|
skip = false;
|
|
|
|
else
|
|
|
|
skip = true;
|
|
|
|
-- get RegionView (GUI object to be selected)
|
2017-02-24 07:03:24 -05:00
|
|
|
local rv = Editor:regionview_from_region (region)
|
2017-02-23 16:31:03 -05:00
|
|
|
-- add it to the list of Objects to be selected
|
|
|
|
sl:push_back (rv);
|
|
|
|
end
|
|
|
|
end
|
|
|
|
::continue::
|
|
|
|
end
|
|
|
|
|
|
|
|
-- set/replace current selection in the editor
|
|
|
|
Editor:set_selection (sl, ArdourUI.SelectionOp.Set);
|
|
|
|
end end
|
2017-02-24 17:40:30 -05:00
|
|
|
|
|
|
|
function icon (params) return function (ctx, width, height, fg)
|
|
|
|
local wh = math.min (width, height) * .5
|
2019-11-18 21:33:28 -05:00
|
|
|
ctx:translate (math.floor (width * .5 - wh), math.floor (height * .5 - wh))
|
2017-02-24 17:40:30 -05:00
|
|
|
|
|
|
|
ctx:set_line_width (1)
|
|
|
|
ctx:rectangle (wh * .25, wh * .75, wh * 1.5 , .5 * wh)
|
|
|
|
ctx:set_source_rgba (0, 0, 0, 1)
|
|
|
|
ctx:stroke_preserve ()
|
|
|
|
ctx:set_source_rgba (.9, .9, .9, 1)
|
|
|
|
ctx:fill ()
|
|
|
|
|
|
|
|
ctx:set_source_rgba (1, 0, 0, 1)
|
|
|
|
ctx:rectangle (.5 + math.ceil(wh * 0.25), .5 + math.ceil(wh * .75), math.floor(wh * .5) - 1, math.floor(.5 * wh) - 1)
|
|
|
|
ctx:stroke_preserve ()
|
|
|
|
|
|
|
|
ctx:rectangle (.5 + math.ceil(wh * 1.25), .5 + math.ceil(wh * .75), math.floor(wh * .5) - 1, math.floor(.5 * wh) - 1)
|
|
|
|
ctx:stroke_preserve ()
|
|
|
|
end end
|