QDial

The QDial class provides a rounded range control (like a speedometer or potentiometer). More

Inheritance diagram of PySide2.QtWidgets.QDial

Synopsis

Functions

Slots

Detailed Description

../../_images/windows-dial.png

QDial is used when the user needs to control a value within a program-definable range, and the range either wraps around (for example, with angles measured from 0 to 359 degrees) or the dialog layout needs a square widget.

Since QDial inherits from QAbstractSlider , the dial behaves in a similar way to a slider . When wrapping() is false (the default setting) there is no real difference between a slider and a dial. They both share the same signals, slots and member functions. Which one you use depends on the expectations of your users and on the type of application.

The dial initially emits valueChanged() signals continuously while the slider is being moved; you can make it emit the signal less often by disabling the tracking property. The sliderMoved() signal is emitted continuously even when tracking is disabled.

The dial also emits sliderPressed() and sliderReleased() signals when the mouse button is pressed and released. Note that the dial’s value can change without these signals being emitted since the keyboard and wheel can also be used to change the value.

Unlike the slider, QDial attempts to draw a “nice” number of notches rather than one per line step. If possible, the number of notches drawn is one per line step, but if there aren’t enough pixels to draw every one, QDial will skip notches to try and draw a uniform set (e.g. by drawing every second or third notch).

Like the slider, the dial makes the QAbstractSlider function setValue() available as a slot.

The dial’s keyboard interface is fairly simple: The left/up and right/down arrow keys adjust the dial’s value by the defined singleStep , Page Up and Page Down by the defined pageStep , and the Home and End keys set the value to the defined minimum and maximum values.

If you are using the mouse wheel to adjust the dial, the increment value is determined by the lesser value of wheelScrollLines multipled by singleStep , and pageStep .

class QDial([parent=None])
param parent

QWidget

Constructs a dial.

The parent argument is sent to the QAbstractSlider constructor.

PySide2.QtWidgets.QDial.initStyleOption(option)
Parameters

optionQStyleOptionSlider

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

See also

initFrom()

PySide2.QtWidgets.QDial.notchSize()
Return type

int

PySide2.QtWidgets.QDial.notchTarget()
Return type

qreal

See also

setNotchTarget()

PySide2.QtWidgets.QDial.notchesVisible()
Return type

bool

PySide2.QtWidgets.QDial.setNotchTarget(target)
Parameters

targetdouble

See also

notchTarget()

PySide2.QtWidgets.QDial.setNotchesVisible(visible)
Parameters

visiblebool

See also

notchesVisible()

PySide2.QtWidgets.QDial.setWrapping(on)
Parameters

onbool

See also

wrapping()

PySide2.QtWidgets.QDial.wrapping()
Return type

bool

See also

setWrapping()