2
1

Config.in 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. if BR2_PACKAGE_QT5VIRTUALKEYBOARD
  16. config BR2_PACKAGE_QT5VIRTUALKEYBOARD_LANGUAGE_LAYOUTS
  17. string "language layouts"
  18. default "en_GB"
  19. help
  20. The Virtual Keyboard supports the following languages:
  21. - Arabic (ar_AR)
  22. - Danish (da_DK)
  23. - English (en_GB)
  24. - Finnish (fi_FI)
  25. - French (fr_FR)
  26. - German (de_DE)
  27. - Hindi (hi_IN)
  28. - Italian (it_IT)
  29. - Japanese (ja_JP)
  30. - Korean (ko_KR)
  31. - Norwegian (nb_NO)
  32. - Persian/Farsi (fa_FA)
  33. - Polish (pl_PL)
  34. - Portugese (pt_PT)
  35. - Romanian (ro_RO)
  36. - Russian (ru_RU)
  37. - Simplified Chinese (zh_CN)
  38. - Traditional Chinese (zh_TW)
  39. - Spanish (es_ES)
  40. - Swedish (sv_SE)
  41. Note: the special value "all" can be used to install support
  42. for all supported languages.
  43. config BR2_PACKAGE_QT5VIRTUALKEYBOARD_HANDWRITING
  44. bool "handwriting"
  45. help
  46. Handwriting support, with gestures for fullscreen input.
  47. Lipi Toolkit (LipiTk) is an open source toolkit for online
  48. Handwriting Recognition.
  49. config BR2_PACKAGE_QT5VIRTUALKEYBOARD_ARROW_KEY_NAVIGATION
  50. bool "Arrow key navigation"
  51. help
  52. Allows controlling the keyboard using the arrow and return
  53. keys.
  54. endif