QGIS API Documentation 3.41.0-Master (fda2aa46e9a)
|
A slider control with two interactive endpoints, for interactive selection of a range of values. More...
#include <qgsrangeslider.h>
Public Slots | |
bool | event (QEvent *event) override |
void | setLowerValue (int value) |
Sets the lower value for the range currently selected in the widget. | |
void | setMaximum (int maximum) |
Sets the maximum value allowed in the widget. | |
void | setMinimum (int minimum) |
Sets the minimum value allowed in the widget. | |
void | setPageStep (int step) |
Sets the page step value for the widget. | |
void | setRange (int lower, int upper) |
Sets the current range selected in the widget. | |
void | setRangeLimits (int minimum, int maximum) |
Sets the minimum and maximum range limits for values allowed in the widget. | |
void | setSingleStep (int step) |
Sets the single step value for the widget. | |
void | setUpperValue (int value) |
Sets the upper value for the range currently selected in the widget. | |
Signals | |
void | fixedRangeSizeChanged (int size) |
Emitted when the widget's fixed range size is changed. | |
void | rangeChanged (int minimum, int maximum) |
Emitted when the range selected in the widget is changed. | |
void | rangeLimitsChanged (int minimum, int maximum) |
Emitted when the limits of values allowed in the widget is changed. | |
Public Member Functions | |
QgsRangeSlider (Qt::Orientation orientation, QWidget *parent=nullptr) | |
Constructor for QgsRangeSlider, with the specified parent widget. | |
QgsRangeSlider (QWidget *parent=nullptr) | |
Constructor for QgsRangeSlider, with the specified parent widget. | |
int | fixedRangeSize () const |
Returns the slider's fixed range size, or -1 if not set. | |
bool | flippedDirection () const |
Returns true if the slider has its values flipped. | |
void | keyPressEvent (QKeyEvent *event) override |
int | lowerValue () const |
Returns the lower value for the range selected in the widget. | |
int | maximum () const |
Returns the maximum value allowed by the widget. | |
int | minimum () const |
Returns the minimum value allowed by the widget. | |
QSize | minimumSizeHint () const override |
void | mouseMoveEvent (QMouseEvent *event) override |
void | mousePressEvent (QMouseEvent *event) override |
void | mouseReleaseEvent (QMouseEvent *event) override |
Qt::Orientation | orientation () const |
Returns the orientation of the slider. | |
int | pageStep () const |
Returns the page step value for the widget. | |
void | paintEvent (QPaintEvent *event) override |
void | setFixedRangeSize (int size) |
Sets the slider's fixed range size. | |
void | setFlippedDirection (bool flipped) |
Sets whether the slider has its values flipped. | |
void | setOrientation (Qt::Orientation orientation) |
Sets the orientation of the slider. | |
void | setTickInterval (int interval) |
Sets the interval for tick marks shown in the widget. | |
void | setTickPosition (QSlider::TickPosition position) |
Sets the position of the tick marks shown in the widget. | |
int | singleStep () const |
Returns the single step value for the widget. | |
QSize | sizeHint () const override |
int | tickInterval () const |
Returns the interval for tick marks shown in the widget. | |
QSlider::TickPosition | tickPosition () const |
Returns the position of the tick marks shown in the widget. | |
int | upperValue () const |
Returns the upper value for the range selected in the widget. | |
A slider control with two interactive endpoints, for interactive selection of a range of values.
Definition at line 31 of file qgsrangeslider.h.
QgsRangeSlider::QgsRangeSlider | ( | QWidget * | parent = nullptr | ) |
Constructor for QgsRangeSlider, with the specified parent widget.
Definition at line 21 of file qgsrangeslider.cpp.
QgsRangeSlider::QgsRangeSlider | ( | Qt::Orientation | orientation, |
QWidget * | parent = nullptr |
||
) |
Constructor for QgsRangeSlider, with the specified parent widget.
The orientation parameter determines whether the slider is horizontal or vertical.
Definition at line 26 of file qgsrangeslider.cpp.
|
overrideslot |
Definition at line 186 of file qgsrangeslider.cpp.
int QgsRangeSlider::fixedRangeSize | ( | ) | const |
Returns the slider's fixed range size, or -1 if not set.
If a fixed range size is set then moving either the lower or upper slider will automatically move the other slider accordingly, in order to keep the selected range at the specified fixed size.
Definition at line 347 of file qgsrangeslider.cpp.
|
signal |
Emitted when the widget's fixed range size is changed.
bool QgsRangeSlider::flippedDirection | ( | ) | const |
Returns true
if the slider has its values flipped.
If this property is false
(the default), the minimum and maximum will be shown in its classic position for the widget. If the value is true
, the minimum and maximum appear at their opposite location.
Definition at line 518 of file qgsrangeslider.cpp.
|
override |
Definition at line 823 of file qgsrangeslider.cpp.
int QgsRangeSlider::lowerValue | ( | ) | const |
Returns the lower value for the range selected in the widget.
Definition at line 113 of file qgsrangeslider.cpp.
int QgsRangeSlider::maximum | ( | ) | const |
Returns the maximum value allowed by the widget.
Definition at line 44 of file qgsrangeslider.cpp.
int QgsRangeSlider::minimum | ( | ) | const |
Returns the minimum value allowed by the widget.
Definition at line 68 of file qgsrangeslider.cpp.
|
override |
Definition at line 1162 of file qgsrangeslider.cpp.
|
override |
Definition at line 653 of file qgsrangeslider.cpp.
|
override |
Definition at line 595 of file qgsrangeslider.cpp.
|
override |
Definition at line 810 of file qgsrangeslider.cpp.
Qt::Orientation QgsRangeSlider::orientation | ( | ) | const |
Returns the orientation of the slider.
Definition at line 513 of file qgsrangeslider.cpp.
int QgsRangeSlider::pageStep | ( | ) | const |
Returns the page step value for the widget.
This corresponds to the larger increment or decrement applied when the user presses the page increment key (usually PageUp or PageDown).
Definition at line 459 of file qgsrangeslider.cpp.
|
override |
Definition at line 529 of file qgsrangeslider.cpp.
|
signal |
Emitted when the range selected in the widget is changed.
|
signal |
Emitted when the limits of values allowed in the widget is changed.
void QgsRangeSlider::setFixedRangeSize | ( | int | size | ) |
Sets the slider's fixed range size.
Set to -1 if no fixed size is desired.
If a fixed range size is set then moving either the lower or upper slider will automatically move the other slider accordingly, in order to keep the selected range at the specified fixed size.
Definition at line 352 of file qgsrangeslider.cpp.
void QgsRangeSlider::setFlippedDirection | ( | bool | flipped | ) |
Sets whether the slider has its values flipped.
If this property is false
(the default), the minimum and maximum will be shown in its classic position for the widget. If the value is true
, the minimum and maximum appear at their opposite location. (i.e. minimum at the bottom of a vertical slider, maximum at the top of a vertical slider).
Definition at line 523 of file qgsrangeslider.cpp.
|
slot |
Sets the lower value for the range currently selected in the widget.
Definition at line 118 of file qgsrangeslider.cpp.
|
slot |
Sets the maximum value allowed in the widget.
Definition at line 49 of file qgsrangeslider.cpp.
|
slot |
Sets the minimum value allowed in the widget.
Definition at line 73 of file qgsrangeslider.cpp.
void QgsRangeSlider::setOrientation | ( | Qt::Orientation | orientation | ) |
Sets the orientation of the slider.
Definition at line 501 of file qgsrangeslider.cpp.
|
slot |
Sets the page step value for the widget.
This corresponds to the larger increment or decrement applied when the user presses the page increment key (usually PageUp or PageDown).
Definition at line 464 of file qgsrangeslider.cpp.
|
slot |
Sets the current range selected in the widget.
Definition at line 163 of file qgsrangeslider.cpp.
|
slot |
Sets the minimum and maximum range limits for values allowed in the widget.
Definition at line 91 of file qgsrangeslider.cpp.
|
slot |
Sets the single step value for the widget.
This corresponds to the smaller increment or decrement applied when the user presses an arrow key.
Definition at line 474 of file qgsrangeslider.cpp.
void QgsRangeSlider::setTickInterval | ( | int | interval | ) |
Sets the interval for tick marks shown in the widget.
Definition at line 490 of file qgsrangeslider.cpp.
void QgsRangeSlider::setTickPosition | ( | QSlider::TickPosition | position | ) |
Sets the position of the tick marks shown in the widget.
Definition at line 479 of file qgsrangeslider.cpp.
|
slot |
Sets the upper value for the range currently selected in the widget.
Definition at line 143 of file qgsrangeslider.cpp.
int QgsRangeSlider::singleStep | ( | ) | const |
Returns the single step value for the widget.
This corresponds to the smaller increment or decrement applied when the user presses an arrow key.
Definition at line 469 of file qgsrangeslider.cpp.
|
override |
Definition at line 1141 of file qgsrangeslider.cpp.
int QgsRangeSlider::tickInterval | ( | ) | const |
Returns the interval for tick marks shown in the widget.
Definition at line 496 of file qgsrangeslider.cpp.
QSlider::TickPosition QgsRangeSlider::tickPosition | ( | ) | const |
Returns the position of the tick marks shown in the widget.
Definition at line 485 of file qgsrangeslider.cpp.
int QgsRangeSlider::upperValue | ( | ) | const |
Returns the upper value for the range selected in the widget.
Definition at line 137 of file qgsrangeslider.cpp.