src/hbplugins/inputmethods/touchinput/touchinputplugin.cpp
changeset 3 11d3954df52a
parent 0 16d8024aca5e
child 7 923ff622b8b9
equal deleted inserted replaced
2:06ff229162e9 3:11d3954df52a
   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