📄 devfont.h
字号:
//// $Id: devfont.h,v 1.7 2000/10/08 09:31:00 weiym Exp $//// devfont.h: the head file of Device Font Manager.//// Copyright (c) 2000, Wei Yongming.// Copyright (c) 2000, BluePoint Software.//#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#ifdef _RBF_SUPPORT/* defined in rawbitmap.c */BOOL InitRawBitmapFonts (void);void TermRawBitmapFonts (void);#endif#ifdef _TTF_SUPPORT/* defined in freetype.c */BOOL InitFreeTypeFonts (void);void TermFreeTypeFonts (void);#endif#ifdef _TYPE1_SUPPORT/* defined in freetype.c */BOOL 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 + -