]> git.sesse.net Git - kdenlive/blobdiff - src/effectstackview.h
Fix mem leak + possible crash with transition:
[kdenlive] / src / effectstackview.h
index d72403d3acbb741aa97ec597f4b1c0d9d60e624c..6d517c984f5738783316d48af564082146f29fbc 100644 (file)
@@ -1,30 +1,77 @@
+/***************************************************************************
+                          effecstackview.h  -  description
+                             -------------------
+    begin                : Feb 15 2008
+    copyright            : (C) 2008 by Marco Gittler
+    email                : g.marco@freenet.de
+ ***************************************************************************/
+
+/***************************************************************************
+ *                                                                         *
+ *   This program is free software; you can redistribute it and/or modify  *
+ *   it under the terms of the GNU General Public License as published by  *
+ *   the Free Software Foundation; either version 2 of the License, or     *
+ *   (at your option) any later version.                                   *
+ *                                                                         *
+ ***************************************************************************/
+
 #ifndef EFFECTSTACKVIEW_H
 #define EFFECTSTACKVIEW_H
 
-#include <KIcon>
-
 #include "ui_effectstack_ui.h"
-#include "clipitem.h"
+#include "effectstackedit.h"
+
+class EffectsList;
+class ClipItem;
+class MltVideoProfile;
+
 class EffectStackView : public QWidget
 {
-       Q_OBJECT
-               
-       public:
-               EffectStackView( QWidget *parent=0);
-       
+    Q_OBJECT
+
+public:
+    EffectStackView(QWidget *parent = 0);
+    virtual ~EffectStackView();
+    void raiseWindow(QWidget*);
+    void clear();
+    void setMenu(QMenu *menu);
+    void updateProjectFormat(MltVideoProfile profile, Timecode t);
+
 private:
-       int activeRow;
-       QStringList effects;
-       Ui::EffectStack_UI ui;
-       ClipItem* clipref;
-       void setupListView(const QStringList& );
+    Ui::EffectStack_UI m_ui;
+    ClipItem* m_clipref;
+    QMap<QString, EffectsList*> m_effectLists;
+    EffectStackEdit* m_effectedit;
+    void setupListView(int ix);
+    //void updateButtonStatus();
+
 public slots:
-       void slotClipItemSelected(ClipItem*);
-       void slotItemSelectionChanged();
-       void slotItemUp();
-       void slotItemDown();
-       void slotItemDel();
-       
+    void slotClipItemSelected(ClipItem*, int ix);
+    void slotUpdateEffectParams(const QDomElement, const QDomElement);
+
+private slots:
+    void slotItemSelectionChanged();
+    void slotItemUp();
+    void slotItemDown();
+    void slotItemDel();
+    void slotResetEffect();
+    void slotItemChanged(QListWidgetItem *item);
+    void slotSaveEffect();
+
+signals:
+    void removeEffect(ClipItem*, QDomElement);
+    /**  Parameters for an effect changed, update the filter in playlist */
+    void updateClipEffect(ClipItem*, QDomElement, QDomElement, int);
+    /** An effect in stack was moved, we need to regenerate
+        all effects for this clip in the playlist */
+    void refreshEffectStack(ClipItem *);
+    /** Enable or disable an effect */
+    void changeEffectState(ClipItem*, int, bool);
+    /** An effect in stack was moved */
+    void changeEffectPosition(ClipItem*, int, int);
+    /** an effect was saved, reload list */
+    void reloadEffects();
+
 };
 
 #endif