X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fgeometrywidget.h;h=3f7414408c63f7191a30457ff4cb800fb345c25f;hb=ac8c99168f151e2f351043d13500741ce1ca8966;hp=582d44954dcd2e04acab3ca4d293e77cac5205f6;hpb=54271b47a8c38afa53ce3baf048f238d36b8bc3a;p=kdenlive diff --git a/src/geometrywidget.h b/src/geometrywidget.h index 582d4495..3f741440 100644 --- a/src/geometrywidget.h +++ b/src/geometrywidget.h @@ -33,6 +33,7 @@ class MonitorScene; class KeyframeHelper; class TimecodeDisplay; class OnMonitorRectItem; +class OnMonitorPathItem; class QGraphicsRectItem; class DragValue; @@ -47,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); + explicit 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; @@ -55,18 +56,23 @@ public: /** @brief Updates the timecode display according to settings (frame number or hh:mm:ss:ff) */ void updateTimecodeFormat(); /** @brief Sets the size of the original clip. */ - void setFrameSize(QPoint size); - - void addParameter(const QDomElement elem); + void setFrameSize(const QPoint &size); + void addParameter(const QDomElement &elem); + void importKeyframes(const QString &data, int maximum); + int currentPosition() const; public slots: /** @brief Sets up the rect and the geometry object. * @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(); + void slotResetNextKeyframes(); + void slotResetPreviousKeyframes(); + void slotUpdateRange(int inPoint, int outPoint); private: Ui::GeometryWidget_UI m_ui; @@ -81,6 +87,7 @@ private: bool m_isEffect; MonitorScene *m_scene; OnMonitorRectItem *m_rect; + OnMonitorPathItem *m_geomPath; QGraphicsRectItem *m_previous; KeyframeHelper *m_timeline; /** Stores the different settings in the MLT geometry format. */ @@ -109,6 +116,8 @@ private slots: * @param seek (optional, default = true) Whether to seek timleine & project monitor to pos * If pos = -1 (default) the value of m_timePos is used. */ void slotPositionChanged(int pos = -1, bool seek = true); + /** @brief Seeking requested from timeline. */ + void slotRequestSeek(int pos); /** @brief Updates settings after a keyframe was moved to @param pos. */ void slotKeyframeMoved(int pos); /** @brief Adds a keyframe. @@ -126,6 +135,8 @@ private slots: /** @brief Adds or deletes a keyframe depending on whether there is already a keyframe at the current position. */ void slotAddDeleteKeyframe(); + /** @brief Updates the Mlt::Geometry path object. */ + void slotUpdatePath(); /** @brief Updates the Mlt::Geometry object. */ void slotUpdateGeometry(); /** @brief Updates the spinBoxes according to the rect. */ @@ -166,10 +177,13 @@ 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(); void seekToPos(int); + void importClipKeyframes(); }; #endif