]> git.sesse.net Git - kdenlive/blobdiff - src/transition.h
Add subclips (dragging a zone from clip monitor to project tree)
[kdenlive] / src / transition.h
index 0c75f6ef8f1da4e5df81624a164affbf92e56a5f..8960519bfd1d63d558c761f65044ef6eb8d8924f 100644 (file)
@@ -61,7 +61,6 @@ public:
     void setTransitionParameters(const QDomElement params);
     void setTransitionDirection(bool inv);
     void setTransitionTrack(int track);
-    QPixmap transitionPixmap() const;
     //Transition *reparent(ClipItem * clip);
     bool isValid() const;
     /** Transition should be linked to another track */
@@ -73,12 +72,12 @@ public:
     bool isAutomatic() const;
     void setAutomatic(bool automatic);
     bool hasGeometry();
+    int defaultZValue() const;
 
 protected:
     virtual QVariant itemChange(GraphicsItemChange change, const QVariant &value);
 
 private:
-    bool m_singleClip;
     QString m_name;
     bool m_forceTransitionTrack;
 
@@ -98,6 +97,10 @@ private:
 
     /** Return the transition type for a given name */
     TRANSITIONTYPE getTransitionForName(const QString & type);
+
+#if QT_VERSION >= 0x040600
+    QPropertyAnimation *m_startAnimation;
+#endif
 };
 
 #endif