decouple midi region note range and height from midi streamview.
[ardour.git] / libs / canvas / canvas / root_group.h
index 70c3e5b90b4ff4b29a4f7eb4fd3d08b9754ae358..1d2c516b8b11bf875abc07af213ba40128f0588f 100644 (file)
 #define __CANVAS_ROOT_GROUP_H__
 
 #include "canvas/visibility.h"
-#include "canvas/group.h"
+#include "canvas/container.h"
 
 namespace ArdourCanvas {
 
-class LIBCANVAS_API RootGroup : public Group
+class LIBCANVAS_API Root : public Container
 {
 private:
        friend class Canvas;
-       
-       RootGroup (Canvas *);
+
+       Root (Canvas *);
 
        void compute_bounding_box () const;
-       void child_changed ();
 };
 
 }