📄 cfont.h
字号:
//字体类
//作者:吴振华(kylinx)(中国科大01级11系)
//E-mail:game-diy@163.com
//Created 2003/7/8 by Kylinx
#ifndef LOA_FONT_H_
#define LOA_FONT_H_
#include<windows.h>
class CFont
{
HFONT m_hFont;
int m_nHeight;
// int m_nWidth;
public:
CFont();
virtual ~CFont();
BOOL CreateFont(
int iSize=16,
int nWeight=400,
BOOL bItalic=false,
BOOL bUnderline=false);
HFONT GetFont();
int GetHeight() const {return m_nHeight;}
// int GetWidth() const {return m_nWidth;}
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -