Config.in 1.8 KB

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