tabmapobjtext.h

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

H
43
字号
// tabmapobjtext.h: interface for the TABMAPObjText class.////////////////////////////////////////////////////////////////////////#ifndef  TABMAPObjText_H#define  TABMAPObjText_H#include "tabmapobjhdrwithcoord.h"class TABMAPObjText : public TABMAPObjHdrWithCoord  {public:    /* String and its len stored in the nCoordPtr and nCoordSize */    UGKInt16      m_nTextAlignment;    UGKInt32      m_nAngle;    UGKInt16      m_nFontStyle;    UGKByte       m_nFGColorR;    UGKByte       m_nFGColorG;    UGKByte       m_nFGColorB;    UGKByte       m_nBGColorR;    UGKByte       m_nBGColorG;    UGKByte       m_nBGColorB;    UGKInt32      m_nLineEndX;    UGKInt32      m_nLineEndY;    UGKInt32      m_nHeight;    UGKByte       m_nFontId;    UGKByte       m_nPenId;	TABMAPObjText(){};	virtual ~TABMAPObjText(){};	virtual int WriteObj(TABMAPObjectBlock *);	virtual int ReadObj(TABMAPObjectBlock *);};#endif 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?