aboutsummaryrefslogtreecommitdiffstats
path: root/src/virtualkeyboard/doc
diff options
context:
space:
mode:
authorJarkko Koivikko <jarkko.koivikko@code-q.fi>2015-10-23 13:52:36 +0300
committerJarkko Koivikko <jarkko.koivikko@code-q.fi>2015-10-27 10:14:48 +0000
commit751caffc2e265ededf7e99e3254690b08c4bc1dd (patch)
tree4a42e7d98edd9e9baaf45577885b5238917a3b48 /src/virtualkeyboard/doc
parent81c0d7d4df40c1130a8e7c98411c045b7eafc475 (diff)
Wrap C++ API into namespace
This change wraps the entire C++ API into namespace. In practice, all the C++ interfaces inside the qtvirtualkeyboard plugin are private, except the QPlatformInputContext plugin API. Even the AbstractInputMethod and AbstractInputPanel are not really a public in the sense that they could be used outside the plugin. At least it does not make sense, since there is no way to extend the virtual keyboard functionality without recompiling the plugin. Task-number: QTRD-3628 Change-Id: I1037ee247abca3219efeaa4e4150baaff7c3d668 Reviewed-by: Mitch Curtis <mitch.curtis@theqtcompany.com>
Diffstat (limited to 'src/virtualkeyboard/doc')
-rw-r--r--src/virtualkeyboard/doc/src/technical-guide.qdoc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/virtualkeyboard/doc/src/technical-guide.qdoc b/src/virtualkeyboard/doc/src/technical-guide.qdoc
index 0b991153..3f18187c 100644
--- a/src/virtualkeyboard/doc/src/technical-guide.qdoc
+++ b/src/virtualkeyboard/doc/src/technical-guide.qdoc
@@ -286,9 +286,9 @@ The trace API consists of the following virtual methods, which the input method
must implement in order to receive and process touch input data.
\list
- \li \l { AbstractInputMethod::patternRecognitionModes } { patternRecognitionModes }
- \li \l { AbstractInputMethod::traceBegin } { traceBegin }
- \li \l { AbstractInputMethod::traceEnd } { traceEnd }
+ \li \l { QtVirtualKeyboard::AbstractInputMethod::patternRecognitionModes } { patternRecognitionModes }
+ \li \l { QtVirtualKeyboard::AbstractInputMethod::traceBegin } { traceBegin }
+ \li \l { QtVirtualKeyboard::AbstractInputMethod::traceEnd } { traceEnd }
\endlist
By implementing these methods, the input method can receive and process data
@@ -296,7 +296,7 @@ from a variety of input sources.
The patternRecognitionModes method returns a list of pattern recognition modes,
which are supported by the input method. A pattern recognition mode, such as
-\l { DeclarativeInputEngine::HandwritingRecoginition } { HandwritingRecoginition },
+\l { QtVirtualKeyboard::DeclarativeInputEngine::HandwritingRecoginition } { HandwritingRecoginition },
defines the method by which the input method processes the data.
The trace interaction is started when an input source detects a new contact point, and