62 lines
1.0 KiB
Plaintext
62 lines
1.0 KiB
Plaintext
|
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
|