📄 font.h
字号:
//========================================================
/**
* @file Font.h
*
* 项目描述: 3DS文件载入
* 文件描述: 字体类
* 适用平台: Windows98/2000/NT/XP
*
* 作者: WWBOSS
* 电子邮件: wwboss123@gmail.com
* 创建日期: 2006-09-13
* 修改日期: 2006-12-02
*
*/
//========================================================
#ifndef __GLFONT_H__
#define __GLFONT_H__
#include "stdafx.h"
/** 定义字体类 */
class GLFont
{
public:
/** 构造函数和析构函数 */
GLFont();
~GLFont();
///成员方法
bool InitFont(); /**< 初始化字体 */
void PrintText(char *string, float x, float y); /**< 在(x,y)处输出string内容 */
protected:
HFONT m_hFont; /**< 字体句柄 */
};
#endif // __GLFONT_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -