Config.in 1.7 KB

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