Home · All Classes · Modules

QSlider Class Reference
[QtGui module]

The QSlider widget provides a vertical or horizontal slider. More...

Inherits QAbstractSlider.

Types

Methods


Detailed Description

The QSlider widget provides a vertical or horizontal slider.

The slider is the classic widget for controlling a bounded value. It lets the user move a slider handle along a horizontal or vertical groove and translates the handle's position into an integer value within the legal range.

QSlider has very few of its own functions; most of the functionality is in QAbstractSlider. The most useful functions are setValue() to set the slider directly to some value; triggerAction() to simulate the effects of clicking (useful for shortcut keys); setSingleStep(), setPageStep() to set the steps; and setMinimum() and setMaximum() to define the range of the scroll bar.

QSlider provides methods for controlling tickmarks. You can use setTickPosition() to indicate where you want the tickmarks to be, setTickInterval() to indicate how many of them you want. the currently set tick position and interval can be queried using the tickPosition() and tickInterval() functions, respectively.

QSlider inherits a comprehensive set of signals:

SignalDescription
valueChanged()Emitted when the slider's value has changed. The tracking() determines whether this signal is emitted during user interaction.
sliderPressed()Emitted when the user starts to drag the slider.
sliderMoved()Emitted when the user drags the slider.
sliderReleased()Emitted when the user releases the slider.

QSlider only provides integer ranges. Note that although QSlider handles very large numbers, it becomes difficult for users to use a slider accurately for very large ranges.

A slider accepts focus on Tab and provides both a mouse wheel and a keyboard interface. The keyboard interface is the following:

Screenshot of a Macintosh sliderA slider shown in the Macintosh widget style.
Screenshot of a Windows XP sliderA slider shown in the Windows XP widget style.
Screenshot of a Plastique sliderA slider shown in the Plastique widget style.

See also QScrollBar, QSpinBox, QDial, GUI Design Handbook: Slider, and Sliders Example.


Type Documentation

QSlider.TickPosition

This enum specifies where the tick marks are to be drawn relative to the slider's groove and the handle the user moves.

ConstantValueDescription
QSlider.NoTicks0Do not draw any tick marks.
QSlider.TicksBothSides3Draw tick marks on both sides of the groove.
QSlider.TicksAbove1Draw tick marks above the (horizontal) slider
QSlider.TicksBelow2Draw tick marks below the (horizontal) slider
QSlider.TicksLeftTicksAboveDraw tick marks to the left of the (vertical) slider
QSlider.TicksRightTicksBelowDraw tick marks to the right of the (vertical) slider


Method Documentation

QSlider.__init__ (self, QWidget parent = None)

The parent argument, if not None, causes self to be owned by Qt instead of PyQt.

Constructs a vertical slider with the given parent.

QSlider.__init__ (self, Qt.Orientation, QWidget parent = None)

The parent argument, if not None, causes self to be owned by Qt instead of PyQt.

Constructs a slider with the given parent. The orientation parameter determines whether the slider is horizontal or vertical; the valid values are Qt.Vertical and Qt.Horizontal.

bool QSlider.event (self, QEvent)

Reimplemented from QObject.event().

QSlider.initStyleOption (self, QStyleOptionSlider)

Initialize option with the values from this QSlider. This method is useful for subclasses when they need a QStyleOptionSlider, but don't want to fill in all the information themselves.

See also QStyleOption.initFrom().

QSize QSlider.minimumSizeHint (self)

Reimplemented from QWidget.minimumSizeHint().

QSlider.mouseMoveEvent (self, QMouseEvent)

Reimplemented from QWidget.mouseMoveEvent().

QSlider.mousePressEvent (self, QMouseEvent)

Reimplemented from QWidget.mousePressEvent().

QSlider.mouseReleaseEvent (self, QMouseEvent)

Reimplemented from QWidget.mouseReleaseEvent().

QSlider.paintEvent (self, QPaintEvent)

Reimplemented from QWidget.paintEvent().

QSlider.setTickInterval (self, int)

QSlider.setTickPosition (self, TickPosition)

QSize QSlider.sizeHint (self)

Reimplemented from QWidget.sizeHint().

int QSlider.tickInterval (self)

TickPosition QSlider.tickPosition (self)


PyQt 4.7.3 for X11Copyright © Riverbank Computing Ltd and Nokia 2010Qt 4.6.2