mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 21:55:43 +01:00
Adding XML scripting to ArdourCanvas
[git-p4: depot-paths = "//Abdaw/dev_main/tracks/": change = 452743]
This commit is contained in:
parent
8cbcffc3ad
commit
a1709c74c6
24 changed files with 534 additions and 122 deletions
|
|
@ -56,6 +56,16 @@ Group::Group (Group* parent, Duple position)
|
|||
|
||||
}
|
||||
|
||||
Group::Group (Group* parent, const XMLNode& definition, const XMLNodeMap& styles, std::map<std::string, Item*>& named_items)
|
||||
: Item (parent, definition, styles, named_items)
|
||||
, _lut (0)
|
||||
{
|
||||
const XMLNodeList& children = definition.children();
|
||||
for (XMLNodeList::const_iterator i = children.begin(); i != children.end(); ++i) {
|
||||
XMLUI::create_item (this, **i, styles, named_items);
|
||||
}
|
||||
}
|
||||
|
||||
Group::~Group ()
|
||||
{
|
||||
clear_items (true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue