X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fgeometrywidget.h;h=d22171bffc5070d4ad54c707bde927266c7afa02;hb=19c95e56d8632b24eb7ecb14f542d684eac5f6cb;hp=d5b43fa5449767b47bba56f4d37b115146ac02df;hpb=f53571700a2b48f5322432f5f896f5ab36b23ab9;p=kdenlive diff --git a/src/geometrywidget.h b/src/geometrywidget.h index d5b43fa5..d22171bf 100644 --- a/src/geometrywidget.h +++ b/src/geometrywidget.h @@ -67,8 +67,6 @@ public slots: void setupParam(const QDomElement elem, int minframe, int maxframe); /** @brief Updates position of the local timeline to @param relTimelinePos. */ void slotSyncPosition(int relTimelinePos); - /** @brief Switches from normal monitor to monitor scene according to @param show. */ - void slotShowScene(bool show = true); private: Ui::GeometryWidget_UI m_ui; @@ -138,19 +136,19 @@ private slots: void slotUpdateProperties(); /** @brief Sets the rect's x position to @param value. */ - void slotSetX(int value); + void slotSetX(double value); /** @brief Sets the rect's y position to @param value. */ - void slotSetY(int value); + void slotSetY(double value); /** @brief Sets the rect's width to @param value. */ - void slotSetWidth(int value); + void slotSetWidth(double value); /** @brief Sets the rect's height to @param value. */ - void slotSetHeight(int value); + void slotSetHeight(double value); /** @brief Resizes the rect by @param value (in perecent) compared to the frame size. */ void slotResize(double value); /** @brief Sets the opacity to @param value. */ - void slotSetOpacity(int value); + void slotSetOpacity(double value); /** @brief Moves the rect to the left frame border (x position = 0). */ void slotMoveLeft(); @@ -172,6 +170,8 @@ private slots: void slotFitToHeight(); /** @brief Show / hide previous keyframe in monitor scene. */ void slotShowPreviousKeyFrame(bool show); + /** @brief Switches from normal monitor to monitor scene according to @param show. */ + void slotShowScene(bool show = true); signals: void parameterChanged();