Kconfig 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. menu "RT-Thread UI Engine"
  2. config RT_USING_GUIENGINE
  3. bool "Enable UI Engine"
  4. default n
  5. if RT_USING_GUIENGINE
  6. config RTGUI_NAME_MAX
  7. int "The maximal size of name in GUI engine"
  8. default 16
  9. config RTGUI_USING_TTF
  10. bool "Support TrueType font"
  11. default n
  12. config RTGUI_USING_FONT16
  13. bool "Support 16 height font"
  14. default y
  15. config RTGUI_USING_FONT12
  16. bool "Support 12 height font"
  17. default y
  18. config RTGUI_USING_FONTHZ
  19. bool "Support Chinese font"
  20. default n
  21. if RTGUI_USING_FONTHZ
  22. config RTGUI_USING_HZ_BMP
  23. bool "Use bitmap Chinese font"
  24. default n
  25. endif
  26. config RTGUI_IMAGE_XPM
  27. bool "Support XPM image format"
  28. default n
  29. config RTGUI_IMAGE_JPEG
  30. bool "Support JPEG image format"
  31. default n
  32. config RTGUI_IMAGE_TJPGD
  33. bool "Use TJPGD for JPEG image"
  34. default n
  35. config RTGUI_IMAGE_PNG
  36. bool "Support PNG image format"
  37. default n
  38. config RTGUI_IMAGE_LODEPNG
  39. bool "Use lodepng for PNG image"
  40. default n
  41. config RTGUI_IMAGE_BMP
  42. bool "Support BMP image format"
  43. default n
  44. endif
  45. endmenu