cytoflowgui.editors.range_slider

A QtGui.QSlider with two carets – allows a range to be specified.

class cytoflowgui.editors.range_slider.RangeSlider(*args: Any, **kwargs: Any)[source]

Bases: pyface.qt.QtGui.QSlider

A slider for ranges.

This class provides a dual-slider for ranges, where there is a defined maximum and minimum, as is a normal slider, but instead of having a single slider value, there are 2 slider values.

This class emits the same signals as the QtGui.QSlider base class, with the exception of valueChanged

low()[source]
setLow(low)[source]
high()[source]
setHigh(high)[source]
sliderOrderForPaint()[source]
sliderOrderForMove()[source]
paintEvent(event)[source]
mousePressEvent(event)[source]
mouseMoveEvent(event)[source]
mouseReleaseEvent(event)[source]