I have a javafx application that is supposed to run in fullscreen mode on a Windows tablet.
My problem is, when the keyboard appears, it's in QWERTY whereas my tablet is in AZERTY.
So the question is : Is there a way to use the system virtual keyboard or to switch the javafx virtual keyboard to AZERTY?
The definition of the layout is contained in jfxrt.jar (part of the Java install). It is described by
TextBoard.txt. It is possible to browse in the jfxrt.jar with 7zip or similar programs.TextBoard.txtis incom/sun/javafx/scene/control/skin/This file is loaded
com/sun/javafx/scene/control/skin/FXVKSkin.javais responsible for loading theTextBoard.txtfile. Browse the javafx source (included via the jdk and contained injavafx-src.zip) to see how it is processed. Maybe this will give you enough information to load your own TextBoard.txt file.