mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 15:25:01 +01:00
refactor Canvas so that all Items have children; add Container abstract base class; rename Group as "Layout" and retain only drawing semantics
This commit is contained in:
parent
5d6dc388f7
commit
a8bd6ecc4f
51 changed files with 442 additions and 637 deletions
|
|
@ -36,8 +36,8 @@ Widget::Widget (Canvas* c, CairoWidget& w)
|
|||
Event.connect (sigc::mem_fun (*this, &Widget::event_proxy));
|
||||
}
|
||||
|
||||
Widget::Widget (Group* g, CairoWidget& w)
|
||||
: Item (g)
|
||||
Widget::Widget (Item* parent, CairoWidget& w)
|
||||
: Item (parent)
|
||||
, _widget (w)
|
||||
{
|
||||
Event.connect (sigc::mem_fun (*this, &Widget::event_proxy));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue