📄 devfont.h
字号:
/*** $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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -