Home | All Classes | Main Classes | Annotated | Grouped Classes | Functions |
The QDial class provides a rounded range control (like a speedometer or potentiometer). More...
#include <qdial.h>
Inherits QWidget and QRangeControl.
The QDial class provides a rounded range control (like a speedometer or potentiometer).
QDial is used when the user needs to control a value within a program-definable range, and the range either wraps around (typically, 0..359 degrees) or the dialog layout needs a square widget.
Both API- and UI-wise, the dial is very similar to a slider. Indeed, when wrapping() is FALSE (the default) there is no real difference between a slider and a dial. They have the same signals, slots and member functions, all of which do the same things. Which one you use depends only on your taste and on the application.
The dial initially emits valueChanged() signals continuously while the slider is being moved; you can make it emit the signal less often by calling setTracking(FALSE). dialMoved() is emitted continuously even when tracking() is FALSE.
The slider also emits dialPressed() and dialReleased() signals when the mouse button is pressed and released. But note that the dial's value can change without these signals being emitted; the keyboard and wheel can be used to change the value.
Unlike the slider, QDial attempts to draw a "nice" number of notches rather than one per lineStep(). If possible, the number of notches drawn is one per lineStep(), but if there aren't enough pixels to draw every one, QDial will draw every second, third etc., notch. notchSize() returns the number of units per notch, hopefully a multiple of lineStep(); setNotchTarget() sets the target distance between neighbouring notches in pixels. The default is 3.75 pixels.
Like the slider, the dial makes the QRangeControl functions setValue(), addLine(), subtractLine(), addPage() and subtractPage() available as slots.
The dial's keyboard interface is fairly simple: The left/up and right/down arrow keys move by lineStep(), page up and page down by pageStep() and Home and End to minValue() and maxValue().
See also QScrollBar, QSpinBox, GUI Design Handbook: Slider and Basic Widgets.
value is forced to be within the legal range.
This signal is emitted whenever the dial value changes. The frequency of this signal is not influenced by setTracking().
See also valueChanged().
This signal is emitted when the use begins mouse interaction with the dial.
See also dialReleased().
This signal is emitted when the use ends mouse interaction with the dial.
See also dialPressed().
Returns the current line step. See the "lineStep" property for details.
Returns the current maximum value. See the "maxValue" property for details.
Returns the current minimum value. See the "minValue" property for details.
Returns the current notch size. See the "notchSize" property for details.
Returns the target number of pixels between notches. See the "notchTarget" property for details.
Returns TRUE if the notches are shown; otherwise returns FALSE. See the "notchesVisible" property for details.
Returns the current page step. See the "pageStep" property for details.
Reimplemented from QRangeControl.
Sets the current line step. See the "lineStep" property for details.
Sets the current maximum value. See the "maxValue" property for details.
Sets the current minimum value. See the "minValue" property for details.
Sets the target number of pixels between notches. See the "notchTarget" property for details.
Sets whether the notches are shown to b. See the "notchesVisible" property for details.
Sets the current page step. See the "pageStep" property for details.
Sets whether tracking is enabled to enable. See the "tracking" property for details.
Sets the current dial value. See the "value" property for details.
Sets whether wrapping is enabled to on. See the "wrapping" property for details.
Returns TRUE if tracking is enabled; otherwise returns FALSE. See the "tracking" property for details.
Returns the current dial value. See the "value" property for details.
Reimplemented from QRangeControl.
This signal is emitted whenever the dial's value changes. The frequency of this signal is influenced by setTracking().
Returns TRUE if wrapping is enabled; otherwise returns FALSE. See the "wrapping" property for details.
This property holds the current line step.
setLineStep() calls the virtual stepChange() function if the new line step is different from the previous setting.
See also QRangeControl::setSteps(), pageStep and setRange().
Set this property's value with setLineStep() and get this property's value with lineStep().
This property holds the current maximum value.
When setting this property, the QDial::minValue is adjusted so that the range remains valid if necessary.
See also setRange().
Set this property's value with setMaxValue() and get this property's value with maxValue().
This property holds the current minimum value.
When setting this property, the QDial::maxValue is adjusted so that the range remains valid if necessary.
See also setRange().
Set this property's value with setMinValue() and get this property's value with minValue().
This property holds the current notch size.
The notch size is in range control units, not pixels, and if possible it is a multiple of lineStep() that results in an on-screen notch size near notchTarget().
See also notchTarget and lineStep.
Get this property's value with notchSize().
This property holds the target number of pixels between notches.
The notch target is the number of pixels QDial attempts to put between each notch.
The actual size may differ from the target size.
Set this property's value with setNotchTarget() and get this property's value with notchTarget().
This property holds whether the notches are shown.
If TRUE, the notches are shown. If FALSE (the default) notches are not shown.
Set this property's value with setNotchesVisible() and get this property's value with notchesVisible().
This property holds the current page step.
setPageStep() calls the virtual stepChange() function if the new page step is different from the previous setting.
See also stepChange().
Set this property's value with setPageStep() and get this property's value with pageStep().
This property holds whether tracking is enabled.
If TRUE (the default), tracking is enabled. This means that the arrow can be moved using the mouse; otherwise the arrow cannot be moved with the mouse.
Set this property's value with setTracking() and get this property's value with tracking().
This property holds the current dial value.
This is guaranteed to be within the range QDial::minValue..QDial::maxValue.
See also minValue and maxValue.
Set this property's value with setValue() and get this property's value with value().
This property holds whether wrapping is enabled.
If TRUE, wrapping is enabled. This means that the arrow can be turned around 360°. Otherwise there is some space at the bottom of the dial which is skipped by the arrow.
This property's default is FALSE.
Set this property's value with setWrapping() and get this property's value with wrapping().
This file is part of the Qt toolkit. Copyright © 1995-2002 Trolltech. All Rights Reserved.
Copyright © 2002 Trolltech | Trademarks | Qt version 3.0.4
|