📄 tabfeaturefont.cpp
字号:
// tabfeaturefont.cpp: implementation of the TABFeatureFont class.////////////////////////////////////////////////////////////////////////#include "tabfeaturefont.h"/********************************************************************** * TABFeatureFont::TABFeatureFont() **********************************************************************/TABFeatureFont::TABFeatureFont(){ static const TABFontDef csDefaultFont = MITAB_FONT_DEFAULT; m_nFontDefIndex=-1; m_sFontDef = csDefaultFont;}/********************************************************************** * TABFeatureFont::~TABFeatureFont() **********************************************************************/TABFeatureFont::~TABFeatureFont(){}/********************************************************************** * ITABFeatureFont::DumpFontDef() * * Dump Font definition information. **********************************************************************/void TABFeatureFont::DumpFontDef(FILE *fpOut /*=NULL*/){ if (fpOut == NULL) fpOut = stdout; fprintf(fpOut, " m_nFontDefIndex = %d\n", m_nFontDefIndex); fprintf(fpOut, " m_sFontDef.nRefCount = %d\n", m_sFontDef.nRefCount); fprintf(fpOut, " m_sFontDef.szFontName = '%s'\n", m_sFontDef.szFontName); fflush(fpOut);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -