Qt:Документация 4.3.2/qabstractslider
Материал из Wiki.crossplatform.ru
Внимание: Актуальная версия перевода документации находится здесь |
__NOTOC__
Главная · Все классы · Основные классы · Классы по группам · Модули · Функции |
QAbstractSlider Class Reference
[модуль QtGui ]
The QAbstractSlider class provides an integer value within a range. More...
#include <QAbstractSlider>
Inherits QWidget.
Inherited by QDial, QScrollBar, and QSlider.
Открытые типы
- enum SliderAction { SliderNoAction, SliderSingleStepAdd, SliderSingleStepSub, SliderPageStepAdd, ..., SliderMove }
Свойства
|
|
Открытые функции
- QAbstractSlider ( QWidget * parent = 0 )
- ~QAbstractSlider ()
- bool hasTracking () const
- bool invertedAppearance () const
- bool invertedControls () const
- bool isSliderDown () const
- int maximum () const
- int minimum () const
- Qt::Orientation orientation () const
- int pageStep () const
- void setInvertedAppearance ( bool )
- void setInvertedControls ( bool )
- void setMaximum ( int )
- void setMinimum ( int )
- void setPageStep ( int )
- void setRange ( int min, int max )
- void setSingleStep ( int )
- void setSliderDown ( bool )
- void setSliderPosition ( int )
- void setTracking ( bool enable )
- int singleStep () const
- int sliderPosition () const
- void triggerAction ( SliderAction action )
- int value () const
- 201 открытых функций унаследованных от QWidget
- 29 открытых функций унаследованных от QObject
- 12 открытых функций унаследованных от QPaintDevice
Открытые слоты
- void setOrientation ( Qt::Orientation )
- void setValue ( int )
Сигналы
- void actionTriggered ( int action )
- void rangeChanged ( int min, int max )
- void sliderMoved ( int value )
- void sliderPressed ()
- void sliderReleased ()
- void valueChanged ( int value )
Protected Types
- enum SliderChange { SliderRangeChange, SliderOrientationChange, SliderStepsChange, SliderValueChange }
Защищенные функции
- SliderAction repeatAction () const
- void setRepeatAction ( SliderAction action, int thresholdTime = 500, int repeatTime = 50 )
- virtual void sliderChange ( SliderChange change )
- 38 защищенных функций унаследованных от QWidget
- 7 защищенных функций унаследованных от QObject
- 1 защищенная функция унаследованна от QPaintDevice
Дополнительные унаследованные члены
- 4 статических открытых члена унаследованных от QWidget
- 5 статических открытых члена унаследованных от QObject
- 1 защищенный слот унаследованный от QWidget
Подробное описание
The QAbstractSlider class provides an integer value within a range.
The class is designed as a common super class for widgets like QScrollBar, QSlider and QDial.
Here are the main properties of the class:
- value: The bounded integer that QAbstractSlider maintains.
- minimum: The lowest possible value.
- maximum: The highest possible value.
- singleStep: The smaller of two natural steps that an abstract sliders provides and typically corresponds to the user pressing an arrow key.
- pageStep: The larger of two natural steps that an abstract slider provides and typically corresponds to the user pressing PageUp or PageDown.
- tracking: Whether slider tracking is enabled.
- sliderPosition: The current position of the slider. If tracking is enabled (the default), this is identical to value.
Unity (1) may be viewed as a third step size. setValue() lets you set the current value to any integer in the allowed range, not just minimum() + n * singleStep() for integer values of n. Some widgets may allow the user to set any value at all; others may just provide multiples of singleStep() or pageStep().
QAbstractSlider emits a comprehensive set of signals:
Signal | Emitted when |
---|---|
valueChanged() | the value has changed. The tracking determines whether this signal is emitted during user interaction. |
sliderPressed() | the user starts to drag the slider. |
sliderMoved() | the user drags the slider. |
sliderReleased() | the user releases the slider. |
actionTriggered() | a slider action was triggerd. |
rangeChanged() | a the range has changed. |
QAbstractSlider provides a virtual sliderChange() function that is well suited for updating the on-screen representation of sliders. By calling triggerAction(), subclasses trigger slider actions. Two helper functions QStyle::sliderPositionFromValue() and QStyle::sliderValueFromPosition() help subclasses and styles to map screen coordinates to logical range values.
See also QAbstractSpinBox, QSlider, QDial, QScrollBar, and Sliders Example.
Описание типов членов
enum QAbstractSlider::SliderAction
Constant | Value |
---|---|
QAbstractSlider::SliderNoAction | 0 |
QAbstractSlider::SliderSingleStepAdd | 1 |
QAbstractSlider::SliderSingleStepSub | 2 |
QAbstractSlider::SliderPageStepAdd | 3 |
QAbstractSlider::SliderPageStepSub | 4 |
QAbstractSlider::SliderToMinimum | 5 |
QAbstractSlider::SliderToMaximum | 6 |
QAbstractSlider::SliderMove | 7 |
enum QAbstractSlider::SliderChange
Constant | Value |
---|---|
QAbstractSlider::SliderRangeChange | 0 |
QAbstractSlider::SliderOrientationChange | 1 |
QAbstractSlider::SliderStepsChange | 2 |
QAbstractSlider::SliderValueChange | 3 |
Описание свойств
invertedAppearance : bool
This property holds whether or not a slider shows its values inverted.
If this property is false (the default), the minimum and maximum will be shown in its classic position for the inherited widget. If the value is true, the minimum and maximum appear at their opposite location.
Note: This property makes most sense for sliders and dials. For scroll bars, the visual effect of the scroll bar subcontrols depends on whether or not the styles understand inverted appearance; most styles ignore this property for scroll bars.
Функции доступа:
- bool invertedAppearance () const
- void setInvertedAppearance ( bool )
invertedControls : bool
This property holds whether or not the slider inverts its wheel and key events.
If this property is false, scrolling the mouse wheel "up" and using keys like page up will increase the slider's value towards its maximum. Otherwise pressing page up will move value towards the slider's minimum.
Функции доступа:
- bool invertedControls () const
- void setInvertedControls ( bool )
maximum : int
This property holds the slider's maximum value.
When setting this property, the minimum is adjusted if necessary to ensure that the range remains valid. Also the slider's current value is adjusted to be within the new range.
Функции доступа:
- int maximum () const
- void setMaximum ( int )
minimum : int
This property holds the sliders's minimum value.
When setting this property, the maximum is adjusted if necessary to ensure that the range remains valid. Also the slider's current value is adjusted to be within the new range.
Функции доступа:
- int minimum () const
- void setMinimum ( int )
orientation : Qt::Orientation
This property holds the orientation of the slider.
The orientation must be Qt::Vertical (the default) or Qt::Horizontal.
Функции доступа:
- Qt::Orientation orientation () const
- void setOrientation ( Qt::Orientation )
pageStep : int
This property holds the page step.
The larger of two natural steps that an abstract slider provides and typically corresponds to the user pressing PageUp or PageDown.
Функции доступа:
- int pageStep () const
- void setPageStep ( int )
See also singleStep.
singleStep : int
This property holds the single step.
The smaller of two natural steps that an abstract sliders provides and typically corresponds to the user pressing an arrow key.
Функции доступа:
- int singleStep () const
- void setSingleStep ( int )
See also pageStep.
sliderDown : bool
This property holds whether the slider is pressed down.
The property is set by subclasses in order to let the abstract slider know whether or not tracking has any effect.
Changing the slider down property emits the sliderPressed() and sliderReleased() signals.
Функции доступа:
- bool isSliderDown () const
- void setSliderDown ( bool )
sliderPosition : int
This property holds the current slider position.
If tracking is enabled (the default), this is identical to value.
Функции доступа:
- int sliderPosition () const
- void setSliderPosition ( int )
tracking : bool
This property holds whether slider tracking is enabled.
If tracking is enabled (the default), the slider emits the valueChanged() signal while the slider is being dragged. If tracking is disabled, the slider emits the valueChanged() signal only when the user releases the slider.
Функции доступа:
- bool hasTracking () const
- void setTracking ( bool enable )
See also sliderDown.
value : int
This property holds the slider's current value.
The slider forces the value to be within the legal range: minimum <= value <= maximum.
Changing the value also changes the sliderPosition.
Функции доступа:
- int value () const
- void setValue ( int )
Описание функций-членов
QAbstractSlider::QAbstractSlider ( QWidget * parent = 0 )
Constructs an abstract slider.
The parent arguments is sent to the QWidget constructor.
The minimum defaults to 0, the maximum to 99, with a singleStep size of 1 and a pageStep size of 10, and an initial value of 0.
QAbstractSlider::~QAbstractSlider ()
Destroys the slider.
void QAbstractSlider::actionTriggered ( int action ) [signal]
This signal is emitted when the slider action action is triggered. Actions are SliderSingleStepAdd, SliderSingleStepSub, SliderPageStepAdd, SliderPageStepSub, SliderToMinimum, SliderToMaximum, and SliderMove.
When the signal is emitted, the sliderPosition has been adjusted according to the action, but the value has not yet been propagated (meaning the valueChanged() signal was not yet emitted), and the visual display has not been updated. In slots connected to this signal you can thus safely adjust any action by calling setSliderPosition() yourself, based on both the action and the slider's value.
See also triggerAction().
void QAbstractSlider::rangeChanged ( int min, int max ) [signal]
This signal is emitted when the slider range has changed, with min being the new minimum, and max being the new maximum.
SliderAction QAbstractSlider::repeatAction () const [protected]
Returns the current repeat action.
See also setRepeatAction().
void QAbstractSlider::setRange ( int min, int max )
Sets the slider's minimum to min and its maximum to max.
If max is smaller than min, min becomes the only legal value.
void QAbstractSlider::setRepeatAction ( SliderAction action, int thresholdTime = 500, int repeatTime = 50 ) [protected]
Sets action action to be triggered repetitively in intervals of repeatTime, after an initial delay of thresholdTime.
See also triggerAction() and repeatAction().
void QAbstractSlider::sliderChange ( SliderChange change ) [virtual protected]
Reimplement this virtual function to track slider changes such as SliderRangeChange, SliderOrientationChange, SliderStepsChange, or SliderValueChange. The default implementation only updates the display and ignores the change parameter.
void QAbstractSlider::sliderMoved ( int value ) [signal]
This signal is emitted when sliderDown is true and the slider moves. This usually happens when the user is dragging the slider. The value is the new slider position.
This signal is emitted even when tracking is turned off.
See also setTracking(), valueChanged(), isSliderDown(), sliderPressed(), and sliderReleased().
void QAbstractSlider::sliderPressed () [signal]
This signal is emitted when the user presses the slider with the mouse, or programmatically when setSliderDown(true) is called.
See also sliderReleased(), sliderMoved(), and isSliderDown().
void QAbstractSlider::sliderReleased () [signal]
This signal is emitted when the user releases the slider with the mouse, or programmatically when setSliderDown(false) is called.
See also sliderPressed(), sliderMoved(), and sliderDown.
void QAbstractSlider::triggerAction ( SliderAction action )
Triggers a slider action. Possible actions are SliderSingleStepAdd, SliderSingleStepSub, SliderPageStepAdd, SliderPageStepSub, SliderToMinimum, SliderToMaximum, and SliderMove.
See also actionTriggered().
void QAbstractSlider::valueChanged ( int value ) [signal]
This signal is emitted when the slider value has changed, with the new slider value as argument.
Copyright © 2007 Trolltech | Trademarks | Qt 4.3.2
|