Example of Virtual Keyboard showing in different languages
-
wrote on 22 May 2017, 14:06 last edited by
Hi,
QtAndroidWindows5.7\Examples\Qt-5.7\virtualkeyboard\basic
Can the example be run in different langauge, the language button is not enabled.
How can be achieved?Thanks,
-
wrote on 23 May 2017, 10:29 last edited by Pradeep Kumar
I have tried running the virtual keyboard example , the support of languages button is not enabled,
Is the virtual keyboard support enabled for Different languages,?.Below is the link of the screenshot ,
Thanks,
-
I have tried running the virtual keyboard example , the support of languages button is not enabled,
Is the virtual keyboard support enabled for Different languages,?.Below is the link of the screenshot ,
Thanks,
wrote on 23 May 2017, 11:38 last edited by -
wrote on 23 May 2017, 11:43 last edited by
I will give a try,
Thanks,
-
wrote on 23 May 2017, 12:39 last edited by Pradeep Kumar
i just added CONFIG+=lang-fi_FI to .pro file,
Still no update, how can i achieve this
I am using Qt 5.7, also have Qt 5.8, and Windows 10.Is their any other way how i can achieve?.
Thanks,
-
Hi,
To what .pro file did you add that
CONFIG
entry ? -
wrote on 24 May 2017, 05:41 last edited by
I added to the virtualkeyboard.pro,
Qt\Qt5.8\Examples\Qt-5.8\virtualkeyboard,Is this the right place, to add ?.
Thanks,
-
I added to the virtualkeyboard.pro,
Qt\Qt5.8\Examples\Qt-5.8\virtualkeyboard,Is this the right place, to add ?.
Thanks,
wrote on 24 May 2017, 06:14 last edited byNo. You have a wrong way. Read the document again. That .pro is in the plugin source(src/virtualkeyboard/virtualkeyboard.pro).
-
wrote on 24 May 2017, 07:32 last edited by
Sorry now i got it ,
path : Qt\Qt5.8\5.8\Src\qtvirtualkeyboard\examples\virtualkeyboard\basic is app to run.
path : Qt\Qt5.8\5.8\Src\qtvirtualkeyboard\src\virtualkeyboard is the plugin to which we need to change and check,
am i right?.
Thanks,
-
Sorry now i got it ,
path : Qt\Qt5.8\5.8\Src\qtvirtualkeyboard\examples\virtualkeyboard\basic is app to run.
path : Qt\Qt5.8\5.8\Src\qtvirtualkeyboard\src\virtualkeyboard is the plugin to which we need to change and check,
am i right?.
Thanks,
wrote on 24 May 2017, 07:37 last edited byYes, you are right.
First, make(qmake & make) plugin and then install. -
wrote on 24 May 2017, 07:39 last edited by
Install means?. its a plugin, need ti install plugin to the other basic.pro
path : Qt\Qt5.8\5.8\Src\qtvirtualkeyboard\examples\virtualkeyboard\basic is app to run.
?????????????????Thanks,
-
Install means?. its a plugin, need ti install plugin to the other basic.pro
path : Qt\Qt5.8\5.8\Src\qtvirtualkeyboard\examples\virtualkeyboard\basic is app to run.
?????????????????Thanks,
wrote on 24 May 2017, 08:19 last edited by Devopia53I assume you are using Windows & minGW.
Try the following procedure.- Open the Command window (aka Qt 5.8 for Desktop...)
- Move to the plugin dir. (cd Qt\Qt5.8\5.8\Src\qtvirtualkeyboard\src/virtualkeyboard)
- Add the "CONFIG += lang-fi_FI" in virtualkeyboard.pro and save.
- Run qmake
- Run mingw32-make
- Run mingw32-make install
- Rebuild your exampls and run.
-
wrote on 24 May 2017, 09:07 last edited by
i followed the steps in command prompt as u mentioned , i git the button enabled and the respective keyboard in Finnish i guess, please find the link below of the screenshot,
https://postimg.org/image/xfcbfbmmp/
Thanks man,
So now i will try for all the languages,
Thanks,
-
wrote on 24 May 2017, 11:01 last edited by
Hi ,
I tried arabic by changing in .pro, CONFIG+=lang-ar_AR,
and chinese using CONFIG+=lang-zh_TW,below is the link of the screenshot of chinese keyboard,
https://postimg.org/image/5br02a6tl/,
but for lang-zh_CN, i didnt get the keyboard in chinese, any specific reason?.
Thanks,
-
Just a wild guess but do you have any fonts that supports these characters ?
-
wrote on 25 May 2017, 05:45 last edited by Pradeep Kumar
Nope, do we need to install in some respective path?.
Thanks,
-
In your target font folder AFAIK.
-
wrote on 26 May 2017, 04:57 last edited by Devopia53
I don't think it's installed font problem.
Also i don't know PinyinInputMethod( lang-zh_CN), TCInputMethod(lang-zh_TW) and chinese languages.
But, there are difference between the two features provided by QtVirtualKeyboard.
Please compare the two source codes below.
I think the layout for zh_CN is strange.Qt\Qt5.8\5.8\Src\qtvirtualkeyboard\src\virtualkeyboard\content\layouts\zh_CN\main.qml
Qt\Qt5.8\5.8\Src\qtvirtualkeyboard\src\virtualkeyboard\content\layouts\zh_TW\main.qml
-
wrote on 30 May 2017, 11:08 last edited by
Hi,
I have question regarding the virtual keyboard topic mentioned before and especially for the chinese one. How can I get the upper frame of the keyboard layout for the additional chinese letters.
Is it just a word prediction with hunspell or is it an independent mechanism to show additional letters depending on the current selected one?I tried the virtual keyboard example with all languages. But with simplified chinese I have only normal alpha numeric letters like at the official QT link. But they can chose a chinese letter if they typed in some alpha numeric ones.
you can see an example here (Pinyin keyboard layout, Zhuyin keyboard layout, Cangjie keyboard layout):
-
I assume you are using Windows & minGW.
Try the following procedure.- Open the Command window (aka Qt 5.8 for Desktop...)
- Move to the plugin dir. (cd Qt\Qt5.8\5.8\Src\qtvirtualkeyboard\src/virtualkeyboard)
- Add the "CONFIG += lang-fi_FI" in virtualkeyboard.pro and save.
- Run qmake
- Run mingw32-make
- Run mingw32-make install
- Rebuild your exampls and run.
wrote on 1 Jun 2017, 07:44 last edited byagain after few days when i try to do the same thing, follow the same steps through command prompt,
1 Open the Command window (aka Qt 5.8 for Desktop...)
2 Move to the plugin dir. (cd Qt\Qt5.8\5.8\Src\qtvirtualkeyboard\src/virtualkeyboard)
3 Add the "CONFIG += lang-fi_FI" in virtualkeyboard.pro and save.
4 Run qmake
5 Run mingw32-make
6 Run mingw32-make install
7 Rebuild your exampls and runThe button is not enabled for respective language. and i am using
path : Qt\Qt5.8\5.8\Src\qtvirtualkeyboard\examples\virtualkeyboard\basic is app to run.
path : Qt\Qt5.8\5.8\Src\qtvirtualkeyboard\src\virtualkeyboard is the plugin to which we need to change and check,
any clue what i am doing wrong, few days back i tried it worked, now i dnt know what happened?.
Thanks,
1/55