]> git.sesse.net Git - kdenlive/blobdiff - src/effectstackedit.h
* Fix possible crash when creating new document
[kdenlive] / src / effectstackedit.h
index 159b85b271bf899f67fcf54f3c87c1bb94d1c2e0..2806b58b62affa5aff842ae76b429fd22a8e62a7 100644 (file)
@@ -24,6 +24,9 @@
 #include <QList>
 #include <QMap>
 
+#include "definitions.h"
+#include "timecode.h"
+
 enum WIPE_DIRECTON { UP = 0, DOWN = 1, LEFT = 2, RIGHT = 3, CENTER = 4 };
 
 struct wipeInfo {
@@ -35,11 +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, Timecode t);
     static QMap<QString, QImage> iconCache;
 
 private:
@@ -52,14 +56,25 @@ private:
     void createSliderItem(const QString& name, int val , int min, int max);
     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);
+    /** \brief Called whenever(?) some parameter is changed in the gui.  
+     * 
+     * Transfers all Dynamic gui parameter settings into params(??) */
     void collectAllParameters();
 
+private slots:
+    void slotSeekToPos(int);
+
 signals:
     void parameterChanged(const QDomElement&, const QDomElement&);
+    void seekTimeline(int);
 };
 
 #endif