123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- 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
- if RTGUI_USING_TTF
- config UTF8_TO_UNICODE
- bool "Support UTF8 to UNICODE"
- default n
- endif
-
- 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
- choice
- prompt "JPEG image format"
- default RTGUI_IMAGE_JPEG_NONE
- config RTGUI_IMAGE_JPEG_NONE
- bool "No"
- config RTGUI_IMAGE_JPEG
- bool "with libjpeg"
- config RTGUI_IMAGE_TJPGD
- bool "with TJpgDec(Tiny JPEG Decompressor)"
- endchoice
- choice
- prompt "PNG image format"
- default RTGUI_IMAGE_LODEPNG
- config RTGUI_IMAGE_PNG_NONE
- bool "No"
- config RTGUI_IMAGE_PNG
- bool "with libpng"
- config RTGUI_IMAGE_LODEPNG
- bool "with LodePNG"
- endchoice
- config RTGUI_IMAGE_BMP
- bool "Support BMP image format"
- default n
- config RTGUI_IMAGE_CONTAINER
- bool "Use image container"
- default y
-
- config RTGUI_USING_DEMO
- bool "Enable the example of UI Engine"
- default n
-
- endif
- endmenu
|