📄 agl_font.h
字号:
/*! \verbatim
==============================================================================
Copyright (C) 2002 A.T.E.M.E.
All Rights Reserved
------------------------------------------------------------------------------
MODULE NAME... AGL_FONT
FILENAME...... agl_font.h
PROJECT....... AGL
------------------------------------------------------------------------------
HISTORY:
V1.0 19/02/2002 TSO
------------------------------------------------------------------------------
\endverbatim <P> \file
\brief Header file for the font module initialization.
</P>*//*====================================================================*/
#ifndef __AGL_FONT_H__
#define __AGL_FONT_H__
#include <agl_font_lucida.h>
#ifdef __cplusplus
extern "C" {
#endif
/*--------------------------------------------------------------------------*/
/*=======================================================================*//*!
\defgroup FONT FONT - Video font definition module
This module provides fonts which can be used for strings insertion in pictures.
<b> Initialising the module </b>
You initialize the module by calling the FONT_init() function. This function
initialize all fonts.
</P>*//*==============================================================*//*@{*/
#define FONT_CHARSET_NUM 91
/*--------------------------------------------------------------------------*/
/*!
This function initialize all fonts. It must be called before using any font of the FONT module.
\return Nothing
\b Example:
\verbatim
FONT_init();
\endverbatim
*/
Void FONT_init(Void);
/*@}*//* end of group STRING */
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -