devfont.h

来自「libminigui-1.3.0.tar.gz。 miniGUI的库函数源代码」· C头文件 代码 · 共 77 行

H
77
字号
/*** $Id: devfont.h,v 1.12 2003/08/13 10:37:03 weiym Exp $**** devfont.h: the head file of Device Font Manager.**** Copyright (C) 2003 Feynman Software.** Copyright (C) 2000 ~ 2002 Wei Yongming.**** Create date: 2000/xx/xx*/#ifndef GUI_DEVFONT_H    #define GUI_DEVFONT_H#ifdef __cplusplusextern "C" {#endif  /* __cplusplus *//* defined in varbitmap.c */#ifdef _VBF_SUPPORTBOOL InitIncoreVBFonts (void);void TermIncoreVBFonts (void);BOOL InitVarBitmapFonts (void);void TermVarBitmapFonts (void);#endif/* defined in rawbitmap.c */#ifdef _RBF_SUPPORT#ifdef _INCORE_RESBOOL InitIncoreRBFonts (void);void TermIncoreRBFonts (void);#elseBOOL InitRawBitmapFonts (void);void TermRawBitmapFonts (void);#endif /* _INCORE_RES */#endif/* defined in qpf.c */#ifdef _QPF_SUPPORTBOOL InitQPFonts (void);void TermQPFonts (void);#endif/* defined in freetype.c */#ifdef _TTF_SUPPORTBOOL InitFreeTypeFonts (void);void TermFreeTypeFonts (void);#endif/* defined in type1.c */#ifdef _TYPE1_SUPPORTBOOL InitType1Fonts (void);void TermType1Fonts (void);#endif/* Device font management functions */void AddSBDevFont (DEVFONT* dev_font);void AddMBDevFont (DEVFONT* dev_font);void ResetDevFont (void);DEVFONT* GetMatchedSBDevFont (LOGFONT* log_font);DEVFONT* GetMatchedMBDevFont (LOGFONT* log_font);#ifdef _DEBUGvoid dumpDevFonts (void);#endif#ifdef __cplusplus}#endif  /* __cplusplus */#endif // GUI_DEVFONT_H

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?