/********************************************************************* * * Multi layer/display support */ #define GUI_NUM_LAYERS 2 // Maximum number of available layers(支持2个图层)
/********************************************************************* * * Multi tasking support */ #ifdef OS_SUPPORT //是否支持操作系统 #define GUI_OS (1) // Compile with multitasking support #else #define GUI_OS (0) #endif
/********************************************************************* * * Configuration of touch support */ #ifndef GUI_SUPPORT_TOUCH #define GUI_SUPPORT_TOUCH (1) // Support touchscreen(支持触摸屏) #endif
/********************************************************************* * * Default font */ #define GUI_DEFAULT_FONT &GUI_Font6x8
/********************************************************************* * * Configuration of available packages */ #define GUI_SUPPORT_MOUSE (1) // Support a mouse(支持鼠标) #define GUI_WINSUPPORT (1) // Use window manager(支持窗口管理器) #define GUI_SUPPORT_MEMDEV (1) // Memory device package available(可用内存设备包) #define GUI_SUPPORT_DEVICES (1) // Enable use of device pointers