X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fabstractclipitem.h;h=f42bcdd3ed8d7a5d5ecebd6d60f4cc66c40080ac;hb=c1dde06b8c339694ddd6c2dd2f56cd1032d7e1d6;hp=6e27d8ea644b1de4b5c03d4caa3203f1b8b7b9d3;hpb=f04ed5249bfa9c8ea57421d0cda8ca3f888f8d50;p=kdenlive diff --git a/src/abstractclipitem.h b/src/abstractclipitem.h index 6e27d8ea..f42bcdd3 100644 --- a/src/abstractclipitem.h +++ b/src/abstractclipitem.h @@ -22,52 +22,99 @@ #define ABSTRACTCLIPITEM #include +#include + +#if QT_VERSION >= 0x040600 +#include +#endif + #include "definitions.h" #include "gentime.h" -class AbstractClipItem : public QObject , public QGraphicsRectItem { +class CustomTrackScene; +class QGraphicsSceneMouseEvent; + +class AbstractClipItem : public QObject, public QGraphicsRectItem +{ Q_OBJECT +#if QT_VERSION >= 0x040600 + Q_PROPERTY(QRectF rect READ rect WRITE setRect) +#endif + public: AbstractClipItem(const ItemInfo info, const QRectF& rect, double fps); + virtual ~ AbstractClipItem(); void updateSelectedKeyFrame(); + + /** @brief Move the selected keyframe (does not influence the effect, only the display in timeline). + * @param pos new Position + * @param value new Value */ void updateKeyFramePos(const GenTime pos, const double value); - void addKeyFrame(const GenTime pos, const double value); + int addKeyFrame(const GenTime pos, const double value); bool hasKeyFrames() const; + int editedKeyFramePos() const; int selectedKeyFramePos() const; double selectedKeyFrameValue() const; + double editedKeyFrameValue() const; double keyFrameFactor() const; + /** @brief Returns the number of keyframes the selected effect has. */ + int keyFrameNumber() const; + ItemInfo info() const; + CustomTrackScene* projectScene(); + void updateRectGeometry(); + void updateItem(); + void setItemLocked(bool locked); + bool isItemLocked() const; + void closeAnimation(); - virtual OPERATIONTYPE operationMode(QPointF pos, double scale) = 0; + virtual OPERATIONTYPE operationMode(QPointF pos) = 0; virtual GenTime startPos() const ; virtual void setTrack(int track); virtual GenTime endPos() const ; + virtual int defaultZValue() const ; virtual int track() const ; - virtual void moveTo(int x, double scale, int offset, int newTrack); virtual GenTime cropStart() const ; - virtual void resizeStart(int posx, double scale); - virtual void resizeEnd(int posx, double scale); - virtual GenTime duration() const; + virtual GenTime cropDuration() const ; + + /** @brief Resizes the clip from the start. + * @param posx Absolute position of new in point + * @param hasSizeLimit (optional) Whether the clip has a maximum size */ + virtual void resizeStart(int posx, bool hasSizeLimit = true); + + /** @brief Resizes the clip from the end. + * @param posx Absolute position of new out point */ + virtual void resizeEnd(int posx); virtual double fps() const; + virtual void updateFps(double fps); virtual GenTime maxDuration() const; virtual void setCropStart(GenTime pos); protected: - int m_track; + ItemInfo m_info; +// int m_track; + /** The position of the current keyframe when it has moved */ int m_editedKeyframe; + /** The position of the current keyframe before it was moved */ int m_selectedKeyframe; - GenTime m_cropStart; - GenTime m_cropDuration; - GenTime m_startPos; + /* GenTime m_cropStart; + GenTime m_cropDuration; + GenTime m_startPos;*/ GenTime m_maxDuration; - QMap m_keyframes; + QMap m_keyframes; double m_keyframeFactor; double m_keyframeDefault; + /** The (keyframe) parameter that is visible and editable in timeline (on the clip) */ + int m_visibleParam; double m_fps; - QPainterPath upperRectPart(QRectF); - QPainterPath lowerRectPart(QRectF); - QRect visibleRect(); + //QRect visibleRect(); void drawKeyFrames(QPainter *painter, QRectF exposedRect); - int mouseOverKeyFrames(QPointF pos); + int mouseOverKeyFrames(QPointF pos, double maxOffset); + virtual void mousePressEvent(QGraphicsSceneMouseEvent * event); + +private: +#if QT_VERSION >= 0x040600 + QPropertyAnimation *m_closeAnimation; +#endif }; #endif