I'm trying to design a GUI touch screen application using wxWidgets(version 3.0.4). The touch screen is working fine. I need to use the on screen keyboard to populate a text box(wxTextCtrl).
I've done some searching and I dont find any setfocus
or getfocus
functions available for the wxTextCtrl
. Neither can I find any event that tells that a cursor is placed in the text field so that I can invoke a onscreen keyboard.
Is there any library available or do I need to implement my own version of the keyboard?