tabfeaturefont.h

来自「linux下一款GIS程序源码」· C头文件 代码 · 共 33 行

H
33 行
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?