cytoflowgui.editors.range_slider#

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

class cytoflowgui.editors.range_slider.RangeSlider(*args)[source]#

Bases: 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(self, ev: QPaintEvent | None)[source]#
mousePressEvent(self, ev: QMouseEvent | None)[source]#
mouseMoveEvent(self, ev: QMouseEvent | None)[source]#
mouseReleaseEvent(self, ev: QMouseEvent | None)[source]#