summaryrefslogtreecommitdiffstats
path: root/src/multimedia/controls/qmediaplayercontrol.cpp
diff options
context:
space:
mode:
authorMichael Goddard <michael.goddard@nokia.com>2012-01-16 15:19:20 +1000
committerQt by Nokia <qt-info@nokia.com>2012-01-16 07:32:24 +0100
commita6268601c907c56555ae42668e983a447c0da2eb (patch)
tree8e702efd10ec2eae5688d2afa6d660930c89399f /src/multimedia/controls/qmediaplayercontrol.cpp
parentb228ff95d763fc954ffe34b2fdbc73d88ed25758 (diff)
Remove antiquated \since lines in docs.
They aren't useful in the case of QtMultimedia{Kit} Change-Id: If1b0b6625763c85907fb05beb9c440046472ddef Reviewed-by: Jonas Rabbe <jonas.rabbe@nokia.com>
Diffstat (limited to 'src/multimedia/controls/qmediaplayercontrol.cpp')
-rw-r--r--src/multimedia/controls/qmediaplayercontrol.cpp37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/multimedia/controls/qmediaplayercontrol.cpp b/src/multimedia/controls/qmediaplayercontrol.cpp
index 6d3918793..7035c3063 100644
--- a/src/multimedia/controls/qmediaplayercontrol.cpp
+++ b/src/multimedia/controls/qmediaplayercontrol.cpp
@@ -50,7 +50,6 @@ QT_BEGIN_NAMESPACE
\class QMediaPlayerControl
\inmodule QtMultimedia
\ingroup multimedia-serv
- \since 1.0
\brief The QMediaPlayerControl class provides access to the media playing
@@ -102,7 +101,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
\fn QMediaPlayerControl::state() const
Returns the state of a player control.
- \since 1.0
*/
/*!
@@ -110,7 +108,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Signals that the \a state of a player control has changed.
- \since 1.0
\sa state()
*/
@@ -118,7 +115,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
\fn QMediaPlayerControl::mediaStatus() const
Returns the status of the current media.
- \since 1.0
*/
/*!
@@ -126,7 +122,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Signals that the \a status of the current media has changed.
- \since 1.0
\sa mediaStatus()
*/
@@ -135,7 +130,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
\fn QMediaPlayerControl::duration() const
Returns the duration of the current media in milliseconds.
- \since 1.0
*/
/*!
@@ -143,7 +137,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Signals that the \a duration of the current media has changed.
- \since 1.0
\sa duration()
*/
@@ -151,7 +144,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
\fn QMediaPlayerControl::position() const
Returns the current playback position in milliseconds.
- \since 1.0
*/
/*!
@@ -159,7 +151,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Sets the playback \a position of the current media. This will initiate a seek and it may take
some time for playback to reach the position set.
- \since 1.0
*/
/*!
@@ -170,7 +161,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
This is only emitted in when there has been a discontinous change in the playback postion, such
as a seek or the position being reset.
- \since 1.0
\sa position()
*/
@@ -178,14 +168,12 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
\fn QMediaPlayerControl::volume() const
Returns the audio volume of a player control.
- \since 1.0
*/
/*!
\fn QMediaPlayerControl::setVolume(int volume)
Sets the audio \a volume of a player control.
- \since 1.0
*/
/*!
@@ -193,7 +181,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Signals the audio \a volume of a player control has changed.
- \since 1.0
\sa volume()
*/
@@ -201,14 +188,12 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
\fn QMediaPlayerControl::isMuted() const
Returns the mute state of a player control.
- \since 1.0
*/
/*!
\fn QMediaPlayerControl::setMuted(bool mute)
Sets the \a mute state of a player control.
- \since 1.0
*/
/*!
@@ -216,7 +201,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Signals a change in the \a mute status of a player control.
- \since 1.0
\sa isMuted()
*/
@@ -225,7 +209,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Returns the buffering progress of the current media. Progress is measured in the percentage
of the buffer filled.
- \since 1.0
*/
/*!
@@ -233,7 +216,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Signals that buffering \a progress has changed.
- \since 1.0
\sa bufferStatus()
*/
@@ -243,7 +225,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Identifies if there is audio output available for the current media.
Returns true if audio output is available and false otherwise.
- \since 1.0
*/
/*!
@@ -251,7 +232,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Signals that there has been a change in the availability of \a audio output.
- \since 1.0
\sa isAudioAvailable()
*/
@@ -261,7 +241,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Identifies if there is video output available for the current media.
Returns true if video output is available and false otherwise.
- \since 1.0
*/
/*!
@@ -269,7 +248,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Signals that there has been a change in the availability of \a video output.
- \since 1.0
\sa isVideoAvailable()
*/
@@ -279,7 +257,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Identifies if the current media is seekable.
Returns true if it possible to seek within the current media, and false otherwise.
- \since 1.0
*/
/*!
@@ -287,7 +264,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Signals that the \a seekable state of a player control has changed.
- \since 1.0
\sa isSeekable()
*/
@@ -299,7 +275,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Usually for local files this is a continuous interval equal to [0..duration()]
or an empty time range if seeking is not supported, but for network sources
it refers to the buffered parts of the media.
- \since 1.0
*/
/*!
@@ -307,7 +282,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Signals that the available media playback \a ranges have changed.
- \since 1.0
\sa QMediaPlayerControl::availablePlaybackRanges()
*/
@@ -315,21 +289,18 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
\fn qreal QMediaPlayerControl::playbackRate() const
Returns the rate of playback.
- \since 1.0
*/
/*!
\fn QMediaPlayerControl::setPlaybackRate(qreal rate)
Sets the \a rate of playback.
- \since 1.0
*/
/*!
\fn QMediaPlayerControl::media() const
Returns the current media source.
- \since 1.0
*/
/*!
@@ -337,7 +308,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Returns the current media stream. This is only a valid if a stream was passed to setMedia().
- \since 1.0
\sa setMedia()
*/
@@ -351,14 +321,12 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
Setting the media to a null QMediaContent will cause the control to discard all
information relating to the current media source and to cease all I/O operations related
to that media.
- \since 1.0
*/
/*!
\fn QMediaPlayerControl::mediaChanged(const QMediaContent& content)
Signals that the current media \a content has changed.
- \since 1.0
*/
/*!
@@ -369,7 +337,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
If successful the player control will immediately enter the \l {QMediaPlayer::PlayingState}
{playing} state.
- \since 1.0
\sa state()
*/
@@ -381,7 +348,6 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
If sucessful the player control will immediately enter the \l {QMediaPlayer::PausedState}
{paused} state.
- \since 1.0
\sa state(), play(), stop()
*/
@@ -392,21 +358,18 @@ QMediaPlayerControl::QMediaPlayerControl(QObject *parent):
If successful the player control will immediately enter the \l {QMediaPlayer::StoppedState}
{stopped} state.
- \since 1.0
*/
/*!
\fn QMediaPlayerControl::error(int error, const QString &errorString)
Signals that an \a error has occurred. The \a errorString provides a more detailed explanation.
- \since 1.0
*/
/*!
\fn QMediaPlayerControl::playbackRateChanged(qreal rate)
Signal emitted when playback rate changes to \a rate.
- \since 1.0
*/
#include "moc_qmediaplayercontrol.cpp"