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:
Paul Davis 2014-06-21 11:43:42 -04:00
parent 5d6dc388f7
commit a8bd6ecc4f
51 changed files with 442 additions and 637 deletions

View file

@ -29,8 +29,8 @@ Polygon::Polygon (Canvas* c)
{
}
Polygon::Polygon (Group* g)
: PolyItem (g)
Polygon::Polygon (Item* parent)
: PolyItem (parent)
, multiple (0)
, constant (0)
, cached_size (0)