X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2FKoSliderCombo.h;h=ff2d9e70c2a8648b365053c5283590eb7bcd2cf3;hb=56aee6aedeeed3efd10ada8fe3c229eddc01ef05;hp=52fcae84a2f9a06167cb30199271aee530d4c38e;hpb=5cc165ebc6c12a646129de53a3a43ae9f42eb3d1;p=kdenlive diff --git a/src/KoSliderCombo.h b/src/KoSliderCombo.h index 52fcae84..ff2d9e70 100644 --- a/src/KoSliderCombo.h +++ b/src/KoSliderCombo.h @@ -28,13 +28,13 @@ * * KoSliderCombo combines a numerical input and a dropdown slider in a way that takes up as * little screen space as possible. - * + * * It allows the user to either enter a floating point value or quickly set the value using a slider - * + * * One signal is emitted when the value changes. The signal is even emitted when the slider * is moving. The second argument of the signal however tells you if the value is final or not. A * final value is produced by entering a value numerically or by releasing the slider. - * + * * The input of the numerical line edit is constrained to numbers and decimal signs. */ class KoSliderCombo : public QComboBox @@ -49,7 +49,7 @@ public: * * @param parent parent QWidget */ - KoSliderCombo(QWidget *parent=0); + explicit KoSliderCombo(QWidget *parent = 0); /** * Destructor @@ -93,9 +93,9 @@ public: */ void setMaximum(qreal max); - /** - * The value shown. - */ + /** + * The value shown. + */ qreal value() const; virtual QSize minimumSizeHint() const; ///< reimplemented from QComboBox @@ -103,11 +103,11 @@ public: public slots: - /** - * Sets the value. - * The value actually set is forced to be within the legal range: minimum <= value <= maximum - * @param value the new value - */ + /** + * Sets the value. + * The value actually set is forced to be within the legal range: minimum <= value <= maximum + * @param value the new value + */ void setValue(qreal value); signals: