mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +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
|
|
@ -76,8 +76,8 @@ WaveView::WaveView (Canvas* c, boost::shared_ptr<ARDOUR::AudioRegion> region)
|
|||
ClipLevelChanged.connect_same_thread (invalidation_connection, boost::bind (&WaveView::handle_clip_level_change, this));
|
||||
}
|
||||
|
||||
WaveView::WaveView (Group* g, boost::shared_ptr<ARDOUR::AudioRegion> region)
|
||||
: Item (g)
|
||||
WaveView::WaveView (Item* parent, boost::shared_ptr<ARDOUR::AudioRegion> region)
|
||||
: Item (parent)
|
||||
, _region (region)
|
||||
, _channel (0)
|
||||
, _samples_per_pixel (0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue