]> git.sesse.net Git - kdenlive/blobdiff - src/abstractclipitem.h
Fix bug with space in render file name:
[kdenlive] / src / abstractclipitem.h
index f24e0ab24ac6ab5abac6f600be1a7a8fe1c10eef..b04f5712632e00fdd689485d6a0a7fb77ee3a108 100644 (file)
@@ -67,7 +67,7 @@ public:
     bool isItemLocked() const;
     void closeAnimation();
 
-    virtual  OPERATIONTYPE operationMode(QPointF pos) = 0;
+    virtual OPERATIONTYPE operationMode(QPointF pos) = 0;
     virtual GenTime startPos() const ;
     virtual void setTrack(int track);
     virtual GenTime endPos() const ;
@@ -101,7 +101,11 @@ protected:
         GenTime m_startPos;*/
     GenTime m_maxDuration;
     QMap <int, int> m_keyframes;
+    /** @brief Strech factor so that keyframes display on the full clip height. */
     double m_keyframeFactor;
+    /** @brief Offset factor so that keyframes minimum value are displaed at the bottom of the clip. */
+    double m_keyframeOffset;
+    /** @brief Default reset value for keyframe. */
     double m_keyframeDefault;
     /** The (keyframe) parameter that is visible and editable in timeline (on the clip) */
     int m_visibleParam;