mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
Add some Lua-script icon.
This commit is contained in:
parent
4afa3aa65e
commit
6bb2416df7
1 changed files with 18 additions and 0 deletions
|
|
@ -40,3 +40,21 @@ function factory () return function ()
|
||||||
-- set/replace current selection in the editor
|
-- set/replace current selection in the editor
|
||||||
Editor:set_selection (sl, ArdourUI.SelectionOp.Set);
|
Editor:set_selection (sl, ArdourUI.SelectionOp.Set);
|
||||||
end end
|
end end
|
||||||
|
|
||||||
|
function icon (params) return function (ctx, width, height, fg)
|
||||||
|
local wh = math.min (width, height) * .5
|
||||||
|
|
||||||
|
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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue