PDA

View Full Version : Vitrual Keyboard to Website 2



Afandi
28th December 2012, 10:02
Hi, I'm troubleshooting a Webview with keyboard.
This Keyboard uses C++.

Here is the situation:

When I type lowercase 'a' on the website, it should be like the image below;

8537

Using Real keyboard

But the problem is now, When I type lowercase 'a' on the website, it shows uppercase
'A';

8538

Using the Virtual Keyboard

I want to know whether there is a namespace that can show lowercase 'a' on the website.
Example : I used Qt::Key_A, this will give me uppercase 'A'.
So is there any namespace that I can declare or code that I can write in order to make the output shows lowercase 'a'?

As the symbol, I also need to know the code or namespace

8540

Using Real Keyboard

8539

Using Virtual Keyboard



else if (keyName == "?") return Qt::Key_Question;


I hope someone can help me with these keyboard problem.
Thank you.

wysota
28th December 2012, 22:14
Show some code.