Config.in 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. config BR2_PACKAGE_QT5VIRTUALKEYBOARD
  2. bool "qt5virtualkeyboard"
  3. depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE # qt5declarative
  4. select BR2_PACKAGE_QT5DECLARATIVE
  5. select BR2_PACKAGE_QT5DECLARATIVE_QUICK
  6. select BR2_PACKAGE_QT5SVG
  7. help
  8. Qt Virtual Keyboard is a virtual keyboard framework that
  9. consists of a C++ backend supporting custom input methods as
  10. well as a UI frontend implemented in QML.
  11. https://doc.qt.io/qt-5/qtvirtualkeyboard-index.html
  12. if BR2_PACKAGE_QT5VIRTUALKEYBOARD
  13. config BR2_PACKAGE_QT5VIRTUALKEYBOARD_LANGUAGE_LAYOUTS
  14. string "language layouts"
  15. default "en_GB"
  16. help
  17. The Virtual Keyboard supports the following languages:
  18. - Arabic (ar_AR)
  19. - Danish (da_DK)
  20. - English (en_GB)
  21. - Finnish (fi_FI)
  22. - French (fr_FR)
  23. - German (de_DE)
  24. - Hindi (hi_IN)
  25. - Italian (it_IT)
  26. - Japanese (ja_JP)
  27. - Korean (ko_KR)
  28. - Norwegian (nb_NO)
  29. - Persian/Farsi (fa_FA)
  30. - Polish (pl_PL)
  31. - Portugese (pt_PT)
  32. - Romanian (ro_RO)
  33. - Russian (ru_RU)
  34. - Simplified Chinese (zh_CN)
  35. - Traditional Chinese (zh_TW)
  36. - Spanish (es_ES)
  37. - Swedish (sv_SE)
  38. Note: the special value "all" can be used to install support
  39. for all supported languages.
  40. config BR2_PACKAGE_QT5VIRTUALKEYBOARD_HANDWRITING
  41. bool "handwriting"
  42. help
  43. Handwriting support, with gestures for fullscreen input.
  44. Lipi Toolkit (LipiTk) is an open source toolkit for online
  45. Handwriting Recognition.
  46. config BR2_PACKAGE_QT5VIRTUALKEYBOARD_ARROW_KEY_NAVIGATION
  47. bool "Arrow key navigation"
  48. help
  49. Allows controlling the keyboard using the arrow and return
  50. keys.
  51. endif