equal
deleted
inserted
replaced
130 result.append(properties.asString()); |
130 result.append(properties.asString()); |
131 } else if (key == "HbVirtualQwerty") { |
131 } else if (key == "HbVirtualQwerty") { |
132 HbInputModeProperties properties(HbInputModeDefault, HbInputLanguage(), HbKeyboardVirtualQwerty); |
132 HbInputModeProperties properties(HbInputModeDefault, HbInputLanguage(), HbKeyboardVirtualQwerty); |
133 result.append(properties.asString()); |
133 result.append(properties.asString()); |
134 |
134 |
135 QList<HbInputLanguage> languages = HbKeymapFactory::availableLanguages(); |
135 properties = HbInputModeProperties(HbInputModeNumeric, HbInputLanguage(), HbKeyboardVirtualQwerty); |
136 foreach (HbInputLanguage language, languages) { |
136 result.append(properties.asString()); |
137 properties = HbInputModeProperties(HbInputModeNumeric, language, HbKeyboardVirtualQwerty); |
|
138 result.append(properties.asString()); |
|
139 } |
|
140 } |
137 } |
141 |
138 |
142 return QStringList(result); |
139 return QStringList(result); |
143 } |
140 } |
144 |
141 |