]> git.sesse.net Git - kdenlive/blobdiff - src/effectstackview.h
Introduce very basic geometry editing on the monitor.
[kdenlive] / src / effectstackview.h
index dd2ad0567aeb5267c19a2445543a29d4c81229fe..fffed50f7ef3da94b4da773f6f1f46ee31ee05e3 100644 (file)
  *                                                                         *
  ***************************************************************************/
 
+/**
+ * @class EffectStackView
+ * @brief View part of the EffectStack
+ * @author Marco Gittler
+ */
+
 #ifndef EFFECTSTACKVIEW_H
 #define EFFECTSTACKVIEW_H
 
-#include <KIcon>
-
 #include "ui_effectstack_ui.h"
-#include "clipitem.h"
-class EffectsList;
+#include "effectstackedit.h"
 
+class EffectsList;
+class ClipItem;
+class MltVideoProfile;
+class Monitor;
 
 class EffectStackView : public QWidget
 {
-       Q_OBJECT
-               
-       public:
-               EffectStackView(EffectsList *audioEffectList, EffectsList *videoEffectList, EffectsList *customEffectList, QWidget *parent=0);
-       
+    Q_OBJECT
+
+public:
+    EffectStackView(Monitor *monitor, QWidget *parent = 0);
+    virtual ~EffectStackView();
+
+    /** @brief Raises @param dock if a clip is loaded. */
+    void raiseWindow(QWidget* dock);
+
+    /** @brief Clears the list of effects and updates the buttons accordingly. */
+    void clear();
+
+    /** @brief Sets the add effect button's menu to @param menu. */
+    void setMenu(QMenu *menu);
+
+    /** @brief Passes updates on @param profile and @param t on to the effect editor. */
+    void updateProjectFormat(MltVideoProfile profile, Timecode t);
+
+    /** @brief Tells the effect editor to update its timecode format. */
+    void updateTimecodeFormat();
+
 private:
-       int activeRow;
-       QList<QDomElement> effects;
-       Ui::EffectStack_UI ui;
-       ClipItem* clipref;
-       void setupListView();
-       void updateButtonStatus();
-       QMap<QString,EffectsList*> effectLists;
+    Ui::EffectStack_UI m_ui;
+    ClipItem* m_clipref;
+    QMap<QString, EffectsList*> m_effectLists;
+    EffectStackEdit* m_effectedit;
+
+    /** @brief Sets the list of effects according to the clip's effect list.
+    * @param ix Number of the effect to preselect */
+    void setupListView(int ix);
 
 public slots:
-       void slotClipItemSelected(ClipItem*);
-       void slotItemSelectionChanged();
-       void slotItemUp();
-       void slotItemDown();
-       void slotItemDel();
-       void slotSetMoveX();
-       void slotSetMoveY();
-       void slotSetNew();
-       void slotNewEffect();
-       void slotSetHelp();
-       void slotShowInTimeline();
-       void slotParameterChanged(const QString&);
-       void itemSelectionChanged();
-       void slotUpdateEffectParams(QDomElement);
-signals:
-       void transferParamDesc(const QDomElement&,int ,int);
-       void removeEffect(ClipItem*, QDomElement);
-       void updateClipEffect(ClipItem*, QDomElement);
+    /** @brief Sets the clip whose effect list should be managed.
+    * @param c Clip whose effect list should be managed
+    * @param ix Effect to preselect */
+    void slotClipItemSelected(ClipItem* c, int ix);
 
+    /** @brief Emits updateClipEffect.
+    * @param old Old effect information
+    * @param e New effect information
+    *
+    * Connected to a parameter change in the editor */
+    void slotUpdateEffectParams(const QDomElement old, const QDomElement e);
+
+    /** @brief Removes the selected effect. */
+    void slotItemDel();
+
+private slots:
+    /** @brief Updates buttons and the editor according to selected effect.
+    * @param update (optional) Set the clip's selected effect (display keyframes in timeline) */
+    void slotItemSelectionChanged(bool update = true);
+
+    /** @brief Moves the selected effect upwards. */
+    void slotItemUp();
+
+    /** @brief Moves the selected effect downwards. */
+    void slotItemDown();
+
+    /** @brief Resets the selected effect to its default values. */
+    void slotResetEffect();
+
+    /** @brief Updates effect @param item if it was enabled or disabled. */
+    void slotItemChanged(QListWidgetItem *item);
+
+    /** @brief Saves the selected effect's values to a custom effect.
+    *
+    * TODO: save all effects into one custom effect */
+    void slotSaveEffect();
+
+    /** @brief Emits seekTimeline with position = clipstart + @param pos. */
+    void slotSeekTimeline(int pos);
+
+    /** @brief Makes the check all checkbox represent the check state of the effects. */
+    void slotUpdateCheckAllButton();
+
+    /** @brief Sets the check state of all effects according to @param state. */
+    void slotCheckAll(int state);
+
+    /** @brief Define the region filter for current effect. */
+    void slotRegionChanged();
+
+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();
+    /** An effect with position parameter was changed, seek */
+    void seekTimeline(int);
+    /** The region effect for current effect was changed */
+    void updateClipRegion(ClipItem*, int, QString);
+    void displayMessage(const QString&, int);
 };
 
 #endif