X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;ds=sidebyside;f=src%2Fabstractgroupitem.h;h=2c8c90f7a715bd9be193cc9f6ba661bf67d597ab;hb=bd9a5a88f25278565fa3fe06685e52fd8415f5df;hp=45ed065667b3ebdc597519c9423ac9cba8aa9f25;hpb=6c43f987273f567fa7659d5a4ad3a5e73f6e5b73;p=kdenlive diff --git a/src/abstractgroupitem.h b/src/abstractgroupitem.h index 45ed0656..2c8c90f7 100644 --- a/src/abstractgroupitem.h +++ b/src/abstractgroupitem.h @@ -45,6 +45,20 @@ public: bool isItemLocked() const; // ItemInfo info() const; + /** @brief Resizes all clips in this group from start. + *@param diff Difference to startPos stored in m_resizeInfos */ + void resizeStart(int diff); + /** @brief Resizes all clips in this group from end. + * @param diff Difference to endPos stored in m_resizeInfos */ + void resizeEnd(int diff); + /** @brief Gets m_resizeInfos */ + QList resizeInfos(); + /** @brief Clears m_resizeInfos */ + void clearResizeInfos(); + + /** @brief Gets the duration (length) of the group. */ + GenTime duration(); + protected: virtual QVariant itemChange(GraphicsItemChange change, const QVariant &value); virtual void paint(QPainter *, const QStyleOptionGraphicsItem *, QWidget *); @@ -56,6 +70,8 @@ protected: private: void fixItemRect(); QPainterPath groupShape(GRAPHICSRECTITEM type, QPointF offset) const; + /** Stores the original info of the items beeing resized. */ + QList m_resizeInfos; }; #endif