diff options
author | Sami Merila <sami.merila@nokia.com> | 2011-02-16 14:26:00 (GMT) |
---|---|---|
committer | Sami Merila <sami.merila@nokia.com> | 2011-02-16 14:26:00 (GMT) |
commit | 899094da212e5bb1c3b9bce03b6c91d60cbdd13f (patch) | |
tree | 00f93fd97a157dce502ff606f10c5d8b9f890e0b | |
parent | 0a84c39a92c4d4d7f2a5e19e949116df24219aa1 (diff) | |
download | Qt-899094da212e5bb1c3b9bce03b6c91d60cbdd13f.zip Qt-899094da212e5bb1c3b9bce03b6c91d60cbdd13f.tar.gz Qt-899094da212e5bb1c3b9bce03b6c91d60cbdd13f.tar.bz2 |
Introduce new flag for splitview support in Symbian
Introduce new flag for splitview support as internal to Qt 4.7.2.
The actual implementation will be delivered to Qt 4.7.3.
Task-number: QTBUG-16572
Reviewed-by: Janne Koskinen
-rw-r--r-- | src/corelib/global/qnamespace.h | 1 | ||||
-rw-r--r-- | src/corelib/global/qnamespace.qdoc | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/corelib/global/qnamespace.h b/src/corelib/global/qnamespace.h index e492345..398f9bf 100644 --- a/src/corelib/global/qnamespace.h +++ b/src/corelib/global/qnamespace.h @@ -541,6 +541,7 @@ public: AA_DontUseNativeMenuBar = 6, AA_MacDontSwapCtrlAndMeta = 7, AA_S60DontConstructApplicationPanes = 8, + AA_S60DisablePartialScreenInputMode = 9, // Add new attributes before this line AA_AttributeCount diff --git a/src/corelib/global/qnamespace.qdoc b/src/corelib/global/qnamespace.qdoc index 8440542..22382cd 100644 --- a/src/corelib/global/qnamespace.qdoc +++ b/src/corelib/global/qnamespace.qdoc @@ -156,6 +156,13 @@ whole lifetime. This attribute must be set before QApplication is constructed. + \omitvalue AA_S60DisablePartialScreenInputMode By default in Symbian^3, + a separate editing window is opened on top of an application. This is exactly + like editing on previous versions of Symbian behave. When this attribute + is true, a virtual keyboard window is shown on top of application and it + is ensured that the focused text widget is visible. This is only supported in + Symbian^3. (internal) + \omitvalue AA_AttributeCount */ |