]> git.sesse.net Git - kdenlive/blobdiff - src/effectstackedit.h
i18n: HTML tags don't need to be translated, excluded.
[kdenlive] / src / effectstackedit.h
index df2b21268d521ad20b1ff26f4aab49fc39d99d23..ed3f3dacdb69f729a9f204b154664b983e80d2f2 100644 (file)
@@ -25,6 +25,7 @@
 #include <QMap>
 
 #include "definitions.h"
+#include "timecode.h"
 
 enum WIPE_DIRECTON { UP = 0, DOWN = 1, LEFT = 2, RIGHT = 3, CENTER = 4 };
 
@@ -37,12 +38,12 @@ struct wipeInfo {
 
 class QFrame;
 
-class EffectStackEdit : public QObject {
+class EffectStackEdit : public QWidget {
     Q_OBJECT
 public:
-    EffectStackEdit(QFrame* frame, QWidget *parent);
+    EffectStackEdit(QWidget *parent);
     ~EffectStackEdit();
-    void updateProjectFormat(MltVideoProfile profile);
+    void updateProjectFormat(MltVideoProfile profile, Timecode t);
     static QMap<QString, QImage> iconCache;
 
 private:
@@ -56,14 +57,21 @@ private:
     wipeInfo getWipeInfo(QString value);
     QString getWipeString(wipeInfo info);
     MltVideoProfile m_profile;
+    Timecode m_timecode;
+    int m_in;
+    int m_out;
 
 public slots:
     void transferParamDesc(const QDomElement&, int , int);
     void slotSliderMoved(int);
     void collectAllParameters();
 
+private slots:
+    void slotSeekToPos(int);
+
 signals:
     void parameterChanged(const QDomElement&, const QDomElement&);
+    void seekTimeline(int);
 };
 
 #endif