📄 f_user_yesno_8x10.c
字号:
/*********************************************************************************************************** uC/GUI* Universal graphic software for embedded applications** (c) Copyright 2002, Micrium Inc., Weston, FL* (c) Copyright 2002, SEGGER Microcontroller Systeme GmbH** 礐/GUI is protected by international copyright laws. Knowledge of the* source code may not be used to write a similar product. This file may* only be used in accordance with a license and should not be redistributed* in any way. We appreciate your understanding and fairness.*----------------------------------------------------------------------File : F8x10_ASCII.CPurpose : Monospaced Font similar to TerminalHeight : 10---------------------------END-OF-HEADER------------------------------*/#include "GUI.H"#ifndef GUI_FLASH #define GUI_FLASH#endif/* The following line needs to be included in any file selecting the font. A good place would be GUIConf.H*/extern GUI_FLASH const GUI_FONT USER_Font_YesNo_8x10;GUI_FLASH const unsigned char UserFontYN8x10_0030[10] = { /* code 0030 */ ________, ________, _X____X_, __X__X__, ___XX___, ___XX___, __X__X__, _X____X_, ________, ________};GUI_FLASH const unsigned char UserFontYN8x10_0031[10] = { /* code 0031 */ ________, ________, ________, _______X, ______X_, _X___X__, __X_X___, ___X____, ________, ________};GUI_FLASH const GUI_CHARINFO USER_FontYN8x10_CharInfo[] = { { 8, 8, 1, (void GUI_FLASH *)&UserFontYN8x10_0030 } /* code 0030 */ ,{ 8, 8, 1, (void GUI_FLASH *)&UserFontYN8x10_0031 } /* code 0031 */};GUI_FLASH const GUI_FONT_PROP USER_FontYN8x10_Prop1 = { 0x30 /* first character */ ,0x31 /* last character */ ,&USER_FontYN8x10_CharInfo[0] /* address of first character */ ,(void*)0 /* pointer to next GUI_FONT_PROP */};GUI_FLASH const GUI_FONT USER_Font_YesNo_8x10 = { GUI_FONTTYPE_PROP /* type of font */ ,10 /* height of font */ ,10 /* space of font y */ ,1 /* magnification x */ ,1 /* magnification y */ ,(void GUI_FLASH *)&USER_FontYN8x10_Prop1};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -