The VolumeSlider widget provides a slider that is used to control the volume of an audio output device. More...
#include <Phonon/VolumeSlider>
Inherits: QWidget.
This class was introduced in Qt 4.4.
|
|
VolumeSlider ( QWidget * parent = 0 ) | |
VolumeSlider ( AudioOutput * output, QWidget * parent = 0 ) | |
~VolumeSlider () | |
AudioOutput * | audioOutput () const |
bool | hasTracking () const |
QSize | iconSize () const |
bool | isMuteVisible () const |
qreal | maximumVolume () const |
Qt::Orientation | orientation () const |
int | pageStep () const |
void | setPageStep ( int milliseconds ) |
void | setSingleStep ( int milliseconds ) |
void | setTracking ( bool tracking ) |
int | singleStep () const |
void | setAudioOutput ( Phonon::AudioOutput * output ) |
void | setIconSize ( const QSize & size ) |
void | setMaximumVolume ( qreal ) |
void | setMuteVisible ( bool ) |
void | setOrientation ( Qt::Orientation ) |
The VolumeSlider widget provides a slider that is used to control the volume of an audio output device.
The slider also displays an icon indicating if the volume of the AudioOutput it is connected to is muted. The icon can be removed with setMuteVisible().
It is possible to set the maximum value of the slider. By default, the minimum and maximum values of the slider are 0.0 (no sound) to 1.0 (the maximum volume the audio output can produce).
Here follows a code example:
Phonon::AudioOutput *audioOutput = new Phonon::AudioOutput(Phonon::MusicCategory); Phonon::createPath(mediaObject, audioOutput); Phonon::VolumeSlider *volumeSlider = new Phonon::VolumeSlider; volumeSlider->setAudioOutput(audioOutput);
See also Phonon Module.
This property holds the icon size used for the mute button/icon.
The default size is defined by the GUI style.
Access functions:
QSize | iconSize () const |
void | setIconSize ( const QSize & size ) |
This property holds the maximum volume that can be set with this slider.
By default the maximum value is 1.0 (100%).
Access functions:
qreal | maximumVolume () const |
void | setMaximumVolume ( qreal ) |
This property holds whether the mute button/icon next to the slider is visible.
By default the mute button/icon is visible.
Access functions:
bool | isMuteVisible () const |
void | setMuteVisible ( bool ) |
This property holds the orientation of the slider.
The orientation must be Qt::Vertical (the default) or Qt::Horizontal.
Access functions:
Qt::Orientation | orientation () const |
void | setOrientation ( Qt::Orientation ) |
This property holds the page step.
The larger of two natural steps that a slider provides and typically corresponds to the user pressing PageUp or PageDown.
Defaults to 5 (5% of the voltage).
Access functions:
int | pageStep () const |
void | setPageStep ( int milliseconds ) |
This property holds the single step.
The smaller of two natural steps that a slider provides and typically corresponds to the user pressing an arrow key.
Defaults to 1 (1% of the voltage).
Access functions:
int | singleStep () const |
void | setSingleStep ( int milliseconds ) |
This property holds whether slider tracking is enabled.
If tracking is enabled (the default), the volume changes while the slider is being dragged. If tracking is disabled, the volume changes only when the user releases the slider.
Access functions:
bool | hasTracking () const |
void | setTracking ( bool tracking ) |
Constructs a new volume slider with the given parent.
Constructs a new volume slider with the given output object and parent.
See also setAudioOutput().
Sets the audio output object to be controlled by this slider to the specified output object.
See also audioOutput().
© 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.
All other trademarks are property of their respective owners. Privacy Policy
Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.
Alternatively, this document may be used under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation.