]> git.sesse.net Git - kdenlive/blobdiff - src/abstractgroupitem.h
Integrate with the required MLT hooks for getting Movit to work.
[kdenlive] / src / abstractgroupitem.h
index c68d22378d8c556caac56b1d222167cd40612d68..3e0594ec824ebd7ec03acb0fd7833b5611d41f25 100644 (file)
@@ -40,8 +40,9 @@ public:
     void addItem(QGraphicsItem * item);
     void removeItem(QGraphicsItem * item);
     int track() const;
-    QPainterPath clipGroupShape(QPointF offset) const;
-    QPainterPath transitionGroupShape(QPointF offset) const;
+    QPainterPath clipGroupShape(const QPointF &offset) const;
+    QPainterPath clipGroupSpacerShape(const QPointF &offset) const;
+    QPainterPath transitionGroupShape(const QPointF &offset) const;
     void setItemLocked(bool locked);
     bool isItemLocked() const;
     //    ItemInfo info() const;
@@ -70,7 +71,8 @@ protected:
 
 private:
     void fixItemRect();
-    QPainterPath groupShape(GRAPHICSRECTITEM type, QPointF offset) const;
+    QPainterPath groupShape(GraphicsRectItem type, const QPointF &offset) const;
+    QPainterPath spacerGroupShape(GraphicsRectItem type, const QPointF &offset) const;
     /** Stores the original info of the items beeing resized. */
     QList <ItemInfo> m_resizeInfos;
 };