12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- menu "RT-Thread UI Engine"
- config RT_USING_GUIENGINE
- bool "Enable UI Engine"
- default n
- if RT_USING_GUIENGINE
- config RTGUI_NAME_MAX
- int "The maximal size of name in GUI engine"
- default 16
- config RTGUI_USING_TTF
- bool "Support TrueType font"
- default n
- config RTGUI_USING_FONT16
- bool "Support 16 height font"
- default y
- config RTGUI_USING_FONT12
- bool "Support 12 height font"
- default y
- config RTGUI_USING_FONTHZ
- bool "Support Chinese font"
- default n
- if RTGUI_USING_FONTHZ
- config RTGUI_USING_HZ_BMP
- bool "Use bitmap Chinese font"
- default n
- endif
- config RTGUI_IMAGE_XPM
- bool "Support XPM image format"
- default n
- config RTGUI_IMAGE_JPEG
- bool "Support JPEG image format"
- default n
- config RTGUI_IMAGE_TJPGD
- bool "Use TJPGD for JPEG image"
- default n
- config RTGUI_IMAGE_PNG
- bool "Support PNG image format"
- default n
- config RTGUI_IMAGE_LODEPNG
- bool "Use lodepng for PNG image"
- default n
- config RTGUI_IMAGE_BMP
- bool "Support BMP image format"
- default n
- endif
- endmenu
|