📄 tabfeaturefont.h
字号:
// tabfeaturefont.h: interface for the TABFeatureFont class.////////////////////////////////////////////////////////////////////////#ifndef TABFeatureFont_H#define TABFeatureFont_H#include "ugkglobal.h"class TABFeatureFont {protected: int m_nFontDefIndex; TABFontDef m_sFontDef;public: TABFeatureFont(); virtual ~TABFeatureFont(); int GetFontDefIndex() {return m_nFontDefIndex;}; TABFontDef *GetFontDefRef() {return &m_sFontDef;}; const char *GetFontNameRef() {return m_sFontDef.szFontName;}; void SetFontName(const char *pszName) { strncpy( m_sFontDef.szFontName, pszName, 32); m_sFontDef.szFontName[32] = '\0'; }; void DumpFontDef(FILE *fpOut = NULL);};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -