]> git.sesse.net Git - kdenlive/blobdiff - src/trackview.h
Allow to use JScript in render profile parameter values.
[kdenlive] / src / trackview.h
index d88d34f8b8a4daa7e770528ee858e3472a86b6bf..1a5b55b94e1e8e6d28bdc1cbafd3091e10fb1416 100644 (file)
@@ -35,7 +35,9 @@
 #include <KRuler>
 
 #include "customtrackscene.h"
+#include "effectslist.h"
 #include "ui_timeline_ui.h"
+#include "definitions.h"
 
 class ClipItem;
 class Transition;
@@ -63,11 +65,17 @@ public:
     int outPoint() const;
     int inPoint() const;
     int fitZoom() const;
+
     /** @brief Updates (redraws) the ruler.
     *
     * Used to change from displaying frames to timecode or vice versa. */
     void updateRuler();
 
+    /** @brief Parse tracks to see if project has audio in it.
+    *
+    * Parses all tracks to check if there is audio data. */
+    bool checkProjectAudio() const;
+
 protected:
     virtual void keyPressEvent(QKeyEvent * event);
 
@@ -75,8 +83,9 @@ public slots:
     void slotDeleteClip(const QString &clipId);
     void slotChangeZoom(int horizontal, int vertical = -1);
     void setDuration(int dur);
-    void slotSetZone(QPoint p);
-
+    void slotSetZone(QPoint p, bool updateDocumentProperties = true);
+    /** @brief Save a snapshot image of current timeline view */
+    void slotSaveTimelinePreview(const QString path);
 private:
     CustomRuler *m_ruler;
     CustomTrackView *m_trackview;
@@ -93,6 +102,7 @@ private:
     int slotAddProjectTrack(int ix, QDomElement xml, bool locked);
     DocClipBase *getMissingProducer(const QString id) const;
     void adjustTrackHeaders();
+    void slotAddProjectEffects(QDomNodeList effects, QDomElement parentNode, ClipItem *clip, int trackIndex);
 
 private slots:
     void setCursorPos(int pos);
@@ -104,14 +114,22 @@ private slots:
     void slotChangeTrackLock(int ix, bool lock);
     void slotVerticalZoomDown();
     void slotVerticalZoomUp();
-    void slotRenameTrack(int ix);
+
+    /** @brief Changes the name of a track.
+    * @param ix Number of the track
+    * @param name New name */
+    void slotRenameTrack(int ix, QString name);
     void slotRepaintTracks();
-    /** @brief Adjust margins of header area
+
+    /** @brief Adjusts the margins of the header area.
      *
      * Avoid a shift between header area and trackview if
      * the horizontal scrollbar is visible and the position
      * of the vertical scrollbar is maximal */
     void slotUpdateVerticalScroll(int min, int max);
+    void slotShowTrackEffects(int);
+    /** @brief Update the track label showing applied effects.*/
+    void slotUpdateTrackEffectState(int);
 
 signals:
     void mousePosition(int);
@@ -122,6 +140,7 @@ signals:
     void configTrack(int);
     void updateTracksInfo();
     void setZoom(int);
+    void showTrackEffects(int, TrackInfo);
 };
 
 #endif