📄 uglbmfcfg.c
字号:
/* uglBmfCfg.c - UGL BMF confiuguration file */
/* Copyright 2000 Wind River Systems, Inc. All Rights Reserved */
/*
modification history
--------------------
01a,19jun00,jlb written
*/
/*
DESCRIPTION
This file provides the configuration for the bitmapped fonts whenever the UGL
configuration utility is not being used. The bitmapped fonts that are
to be used within an UGL application must be defined within the uglBMFFontData
data structure.
*/
#ifdef INCLUDE_BMF_FONTS
/* Establish the fonts that are used. The table uglBMFFontData
* must refrence each font that the UGL application will use.
*/
extern const UGL_BMF_FONT_DESC uglBMFFont_Lucida_Sans_12;
extern const UGL_BMF_FONT_DESC uglBMFFont_Helvetica_Bold_12;
extern const UGL_BMF_FONT_DESC uglBMFFont_Lucida_Sans_8;
extern const UGL_BMF_FONT_DESC uglBMFFont_Courier_12;
const UGL_BMF_FONT_DESC * uglBMFFontData[] =
{
&uglBMFFont_Lucida_Sans_12,
&uglBMFFont_Helvetica_Bold_12,
&uglBMFFont_Lucida_Sans_8,
&uglBMFFont_Courier_12,
NULL
};
UGL_LOCAL UGL_BMF_CACHE_CONFIG cacheConfig;
#endif /* INCLUDE_BMF_FONTS */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -