mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 12:19:33 +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
|
|
@ -32,8 +32,8 @@ Image::Image (Canvas* canvas, Cairo::Format fmt, int width, int height)
|
|||
DataReady.connect (data_connections, MISSING_INVALIDATOR, boost::bind (&Image::accept_data, this), gui_context());
|
||||
}
|
||||
|
||||
Image::Image (Group* group, Cairo::Format fmt, int width, int height)
|
||||
: Item (group)
|
||||
Image::Image (Item* parent, Cairo::Format fmt, int width, int height)
|
||||
: Item (parent)
|
||||
, _format (fmt)
|
||||
, _width (width)
|
||||
, _height (height)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue