X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fgeometrywidget.h;h=dceadd6d4320a1fd8cc6f1c70e0c9e018b0cbee7;hb=9aad7a157711be17032fb5e77136e88eb2c93b8e;hp=6875056b711dc85fd1a5f8c8ded96278007e6396;hpb=619221c49a9525a5f6965122deea8ce2a411dd85;p=kdenlive diff --git a/src/geometrywidget.h b/src/geometrywidget.h index 6875056b..dceadd6d 100644 --- a/src/geometrywidget.h +++ b/src/geometrywidget.h @@ -48,7 +48,7 @@ public: * @param isEffect true if used in an effect, false if used in a transition * @param showRotation Should we show or hide the rotation sliders * @param parent (optional) Parent widget */ - GeometryWidget(Monitor *monitor, Timecode timecode, int clipPos, bool isEffect, bool showRotation, QWidget* parent = 0); + GeometryWidget(Monitor *monitor, const Timecode &timecode, int clipPos, bool isEffect, bool showRotation, QWidget* parent = 0); virtual ~GeometryWidget(); /** @brief Gets the geometry as a serialized string. */ QString getValue() const; @@ -57,7 +57,7 @@ public: void updateTimecodeFormat(); /** @brief Sets the size of the original clip. */ void setFrameSize(QPoint size); - void addParameter(const QDomElement elem); + void addParameter(const QDomElement &elem); void importKeyframes(const QString &data, int maximum); int currentPosition() const; @@ -66,7 +66,7 @@ public slots: * @param elem DomElement representing this effect parameter * @param minframe In point of the clip * @param maxframe Out point of the clip */ - void setupParam(const QDomElement elem, int minframe, int maxframe); + void setupParam(const QDomElement &elem, int minframe, int maxframe); /** @brief Updates position of the local timeline to @param relTimelinePos. */ void slotSyncPosition(int relTimelinePos); void slotResetKeyframes(); @@ -177,6 +177,8 @@ private slots: void slotFitToHeight(); /** @brief Show / hide previous keyframe in monitor scene. */ void slotShowPreviousKeyFrame(bool show); + /** @brief Show / hide keyframe path in monitor scene. */ + void slotShowPath(bool show); signals: void parameterChanged();