?? 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 + -