⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tabfeaturefont.h

📁 linux下一款GIS程序源码
💻 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 + -