PopUpTreeMenu
February 22, 2022 ยท View on GitHub
a Quark for SuperCollider
PopUpTreeMenu
A hierarchical PopUp menu.

Installation
Install it from within SuperCollider with the command: Quarks.install("PopUpTreeMenu")
The previous version (not recommended) is still available: Quarks.install("PopUpTreeMenu", "tags/1.1.0");
Basic usage
(
var w= Window("test", Rect(400, 400, 300, 100)).front;
PopUpTreeMenu(w, Rect(30, 30, 100, 20))
.tree_(
(
'a drum': (),
'bass': (
'funky': (),
'tuba': (),
'unhip': ()
),
'cello': ()
)
);
)