diff options
author | Sami Merila <sami.merila@nokia.com> | 2010-04-29 13:57:11 (GMT) |
---|---|---|
committer | Sami Merila <sami.merila@nokia.com> | 2010-04-29 13:57:11 (GMT) |
commit | 5997edf9ee427850746c41d1a3df4725b9009408 (patch) | |
tree | ab3e418aeb7a091c37580963650cc15bcf6e2996 /src/gui/inputmethod | |
parent | 89c588ab206e5358544d9402fb3b44aeddf634dc (diff) | |
download | Qt-5997edf9ee427850746c41d1a3df4725b9009408.zip Qt-5997edf9ee427850746c41d1a3df4725b9009408.tar.gz Qt-5997edf9ee427850746c41d1a3df4725b9009408.tar.bz2 |
Support 'Text' mode in Symbian specific input methods
The default values for QCoeFepInputContext are set so that lower
('ab') and upper cases ('AB') are supported. Without any input method
hints, input mode widgets cannot get into text mode ('Ab') at all.
Changed the implementation so that default value is 'Text' like
in native S60 devices.
Task-number: QTBUG-10006
Reviewed-by: Janne Koskinen
Diffstat (limited to 'src/gui/inputmethod')
-rw-r--r-- | src/gui/inputmethod/qcoefepinputcontext_s60.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/inputmethod/qcoefepinputcontext_s60.cpp b/src/gui/inputmethod/qcoefepinputcontext_s60.cpp index b42e0ab..610ac3c 100644 --- a/src/gui/inputmethod/qcoefepinputcontext_s60.cpp +++ b/src/gui/inputmethod/qcoefepinputcontext_s60.cpp @@ -87,7 +87,7 @@ QCoeFepInputContext::QCoeFepInputContext(QObject *parent) m_fepState->SetDefaultInputMode( EAknEditorTextInputMode ); m_fepState->SetPermittedInputModes( EAknEditorAllInputModes ); m_fepState->SetDefaultCase( EAknEditorLowerCase ); - m_fepState->SetPermittedCases( EAknEditorLowerCase|EAknEditorUpperCase ); + m_fepState->SetPermittedCases( EAknEditorAllCaseModes ); m_fepState->SetSpecialCharacterTableResourceId(R_AVKON_SPECIAL_CHARACTER_TABLE_DIALOG); m_fepState->SetNumericKeymap( EAknEditorStandardNumberModeKeymap ); } |