X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Feffectstackview.h;h=e87b8289284c389f3351a6effff33bae3291e8a8;hb=5f58037fe6286c608fc74bf3b08dd467b5630954;hp=c86b6cfc153b95a3e7ac434d4378fa859e3eb7ae;hpb=b48880ff7a120e6cc6a5f5936e44b15a71a46e3b;p=kdenlive diff --git a/src/effectstackview.h b/src/effectstackview.h index c86b6cfc..e87b8289 100644 --- a/src/effectstackview.h +++ b/src/effectstackview.h @@ -74,6 +74,9 @@ private: /** @brief The track index of currently edited track. */ int m_trackindex; + /** If in track mode: Info of the edited track to be able to access its duration. */ + TrackInfo m_trackInfo; + /** @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); @@ -136,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 */ @@ -154,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