X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2FKoSliderCombo.h;h=ff2d9e70c2a8648b365053c5283590eb7bcd2cf3;hb=56aee6aedeeed3efd10ada8fe3c229eddc01ef05;hp=557cb3726f9dd9ac31646c6eb0d5b2903db4cef1;hpb=02188f8892627bffa8c7b3a971a9be8624e370bc;p=kdenlive diff --git a/src/KoSliderCombo.h b/src/KoSliderCombo.h index 557cb372..ff2d9e70 100644 --- a/src/KoSliderCombo.h +++ b/src/KoSliderCombo.h @@ -22,23 +22,22 @@ #include -#include "kowidgets_export.h" /** * @short A widget for qreal values with a popup slider * * 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 KOWIDGETS_EXPORT KoSliderCombo : public QComboBox +class KoSliderCombo : public QComboBox { Q_OBJECT @@ -50,7 +49,7 @@ public: * * @param parent parent QWidget */ - KoSliderCombo(QWidget *parent=0); + explicit KoSliderCombo(QWidget *parent = 0); /** * Destructor @@ -94,9 +93,9 @@ public: */ void setMaximum(qreal max); - /** - * The value shown. - */ + /** + * The value shown. + */ qreal value() const; virtual QSize minimumSizeHint() const; ///< reimplemented from QComboBox @@ -104,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: