]> git.sesse.net Git - kdenlive/blobdiff - src/effectstackview.h
Fix detection of missing codecs in render dialog, use kmessagewidget to inform user
[kdenlive] / src / effectstackview.h
index 1c7cb83006e3d6b6c34815eb22660745b6c59fee..89055a2360374e03a9e691fa12cbe4c4903e6cb2 100644 (file)
@@ -94,7 +94,7 @@ public slots:
     * @param e New effect information
     *
     * Connected to a parameter change in the editor */
-    void slotUpdateEffectParams(const QDomElement old, const QDomElement e);
+    void slotUpdateEffectParams(const QDomElement &old, const QDomElement &e);
 
     /** @brief Removes the selected effect. */
     void slotItemDel();
@@ -139,6 +139,9 @@ private slots:
     /** @brief Pass position changes of the timeline cursor to the effects to keep their local timelines in sync. */
     void slotRenderPos(int pos);
 
+    /** @brief Shows/Hides the comment box and emits showComments to notify the parameter widgets to do the same. */
+    void slotShowComments();
+
 signals:
     void removeEffect(ClipItem*, int, QDomElement);
     /**  Parameters for an effect changed, update the filter in playlist */
@@ -157,6 +160,7 @@ signals:
     /** The region effect for current effect was changed */
     void updateClipRegion(ClipItem*, int, QString);
     void displayMessage(const QString&, int);
+    void showComments(bool show);
 };
 
 #endif