summaryrefslogtreecommitdiffstats
path: root/src/imports/audioengine/qdeclarative_audiosample_p.cpp
diff options
context:
space:
mode:
authorLing Hu <ling.hu@nokia.com>2012-02-14 11:59:13 +1000
committerQt by Nokia <qt-info@nokia.com>2012-02-21 07:35:41 +0100
commitd5f344be4c6f73cca5aab0a3f374a15d999b590c (patch)
tree540772f6e5de335d4f4433e0f81036cc83d5520c /src/imports/audioengine/qdeclarative_audiosample_p.cpp
parent2ab74b7ff298cb15d5c82476e15e568df6f3e26e (diff)
Update audioengine overview doc & reference doc
Change-Id: If1061b3dc113f4354d741c536d63cbe36e7a65eb Reviewed-by: Michael Goddard <michael.goddard@nokia.com>
Diffstat (limited to 'src/imports/audioengine/qdeclarative_audiosample_p.cpp')
-rw-r--r--src/imports/audioengine/qdeclarative_audiosample_p.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/imports/audioengine/qdeclarative_audiosample_p.cpp b/src/imports/audioengine/qdeclarative_audiosample_p.cpp
index b731b5dce..83c818529 100644
--- a/src/imports/audioengine/qdeclarative_audiosample_p.cpp
+++ b/src/imports/audioengine/qdeclarative_audiosample_p.cpp
@@ -53,15 +53,15 @@ QT_USE_NAMESPACE
\qmlclass AudioSample QDeclarativeAudioSample
\since 5.0
\brief The AudioSample element allows you to load audio samples, mostly wav file.
- \inmodule QtMultimedia
+ \inqmlmodule QtAudioEngine 1
\ingroup multimedia_audioengine
\inherits Item
\preliminary
This element is part of the \bold{QtAudioEngine 1.0} module.
- AudioSample element can be accessed through AudioEngine::samples with its unique name and must
- be defined inside AudioEngine.
+ AudioSample element can be accessed through QtAudioEngine1::AudioEngine::samples with its unique
+ name and must be defined inside AudioEngine.
\qml
import QtQuick 2.0
@@ -133,7 +133,7 @@ bool QDeclarativeAudioSample::isStreaming() const
}
/*!
- \qmlproperty bool AudioSample::preloaded
+ \qmlproperty bool QtAudioEngine1::AudioSample::preloaded
This property holds indicates whether this sample needs to be preloaded or not.
If true, the audio engine will start loading the sample file immediately when the app started,
@@ -146,7 +146,7 @@ bool QDeclarativeAudioSample::isPreloaded() const
}
/*!
- \qmlproperty bool AudioSample::isLoaded
+ \qmlproperty bool QtAudioEngine1::AudioSample::isLoaded
This property holds indicates whether this sample has been loaded into memory or not.
*/
@@ -158,7 +158,7 @@ bool QDeclarativeAudioSample::isLoaded() const
}
/*!
- \qmlproperty AudioSample::load()
+ \qmlproperty QtAudioEngine1::AudioSample::load()
Starts loading the sample into memory if not loaded.
*/
@@ -192,7 +192,7 @@ void QDeclarativeAudioSample::setStreaming(bool streaming)
}
/*!
- \qmlproperty string AudioSample::name
+ \qmlproperty string QtAudioEngine1::AudioSample::name
This property holds the name of AudioSample, must be unique among all samples and only
defined once.
@@ -236,7 +236,7 @@ QSoundBuffer* QDeclarativeAudioSample::soundBuffer() const
}
/*!
- \qmlsignal AudioSample::onLoadedChanged()
+ \qmlsignal QtAudioEngine1::AudioSample::onLoadedChanged()
This handler is called when \l loaded is changed
*/