guiconf.h
来自「uCGUI」· C头文件 代码 · 共 34 行
H
34 行
/*************************************************************************************************************
uC/GUI
嵌入式通用图形软件
文 件: GUICONF.H
描 述: Configures emWins abilities, fonts etc.
*************************************************************************************************************/
#ifndef GUICONF_H
#define GUICONF_H
/*************************************************************************************************************
* Configuration of desired functionality
*************************************************************************************************************/
#define GUI_OS (1) /* Compile with multitasking support */
#define GUI_WINSUPPORT (1) /* Use window manager if true (1) */
#define GUI_SUPPORT_MEMDEV (1) /* Support memory devices */
#define GUI_SUPPORT_TOUCH (1) /* Support a touch screen (req. win-manager) */
#define GUI_SUPPORT_UNICODE (1) /* Support mixed ASCII/UNICODE strings */
/*************************************************************************************************************
* Configuration of dynamic memory
Dynamic memory is used for memory devices and window manager.
If you do not use these features, there is no need for dynamic memory
and it may be switched off completely. (This section can be erased)
*/
#define GUI_ALLOC_SIZE 77000 /* Size of dynamic memory */
/*************************************************************************************************************
* Configuration of available fonts *
*************************************************************************************************************/
#define GUI_DEFAULT_FONT &GUI_Font6x8
#endif /* GUICONF_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?