]> git.sesse.net Git - kdenlive/blobdiff - src/customtrackscene.h
Add Mac OS X compatibility through new MLT sdl_audio consumer and a QTGLWidget!
[kdenlive] / src / customtrackscene.h
index 822a0676f5ee9d177618b832fd4882a9f54b555a..983548278b40c382668f2beb95d81b7222eac853 100644 (file)
@@ -28,6 +28,7 @@
 #include "gentime.h"
 
 class KdenliveDoc;
+class MltVideoProfile;
 
 /** This class holds all properties that need to be used by clip items */
 
@@ -42,15 +43,15 @@ public:
     GenTime previousSnapPoint(GenTime pos);
     GenTime nextSnapPoint(GenTime pos);
     double getSnapPointForPos(double pos, bool doSnap = true);
-    void setScale(double scale);
-    double scale() const;
+    void setScale(double scale, double vscale);
+    QPointF scale() const;
     int tracksCount() const;
-    QPixmap m_transitionPixmap;
+    MltVideoProfile profile() const;
 
 private:
     KdenliveDoc *m_document;
     QList <GenTime> m_snapPoints;
-    double m_scale;
+    QPointF m_scale;
 };
 
 #endif