summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVolker Hilsheimer <volker.hilsheimer@qt.io>2023-05-12 11:37:29 +0200
committerVolker Hilsheimer <volker.hilsheimer@qt.io>2023-05-12 12:34:43 +0200
commitf0999d7591fc15b9a3fb573ba6c4ca6262573459 (patch)
tree1eeeef40c433ffd2cd2be4b730f2a28f2e03d8dd /src
parentee584c1be755604e8ea408e04e73f69ecf24d4d1 (diff)
Doc: add \since 6.6 tags and fix links
Change-Id: I52c59c1e9bdb4cc4c99f898352c52a19968527f4 Reviewed-by: Nicholas Bennett <nicholas.bennett@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/tts/qtexttospeech.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/tts/qtexttospeech.cpp b/src/tts/qtexttospeech.cpp
index 11f72fd..967f613 100644
--- a/src/tts/qtexttospeech.cpp
+++ b/src/tts/qtexttospeech.cpp
@@ -507,7 +507,7 @@ QString QTextToSpeech::engine() const
/*!
\enum QTextToSpeech::Capability
-
+ \since 6.6
\brief This enum describes the capabilities of a text-to-speech engine.
\value None The engine implements none of the capabilities.
@@ -523,6 +523,7 @@ QString QTextToSpeech::engine() const
/*!
\qmlproperty enumeration TextToSpeech::engineCapabilities
\brief This property holds the capabilities implemented by the current engine.
+ \since 6.6
\sa engine, QTextToSpeech::Capability
*/
@@ -530,6 +531,7 @@ QString QTextToSpeech::engine() const
/*!
\property QTextToSpeech::engineCapabilities
\brief the capabilities implemented by the current engine
+ \since 6.6
\sa engine
*/
@@ -774,6 +776,7 @@ void QTextToSpeech::say(const QString &text)
/*!
\qmlmethod TextToSpeech::enqueue(string text)
+ \since 6.6
Adds \a text to the queue of text to be spoken, and starts speaking.
@@ -791,6 +794,8 @@ void QTextToSpeech::say(const QString &text)
*/
/*!
+ \since 6.6
+
Adds \a text to the queue of texts to be spoken, and starts speaking.
If the engine's \l state is currently \c Ready, \a text will be spoken
@@ -928,6 +933,7 @@ void QTextToSpeech::synthesizeImpl(const QString &text,
/*!
\fn void QTextToSpeech::synthesized(const QAudioFormat &format, const QByteArray &data)
+ \since 6.6
This signal is emitted when pcm \a data is available. The data is encoded in \a format.
A single call to \l synthesize() might result in several emissions of this signal.
@@ -1295,6 +1301,7 @@ QList<QVoice> QTextToSpeech::availableVoices() const
/*!
\fn template<typename ...Args> QList<QVoice> QTextToSpeech::findVoices(Args &&...args) const
+ \since 6.6
\return the list of voices that match the criteria in \a args.
@@ -1319,6 +1326,7 @@ QList<QVoice> QTextToSpeech::availableVoices() const
/*!
\qmlmethod list<voice> TextToSpeech::findVoices(map criteria)
+ \since 6.6
Returns the list of voices that match all the specified \a criteria.