00001 #ifndef COIN_SOFONT_H
00002 #define COIN_SOFONT_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027 #include <Inventor/nodes/SoSubNode.h>
00028 #include <Inventor/fields/SoSFName.h>
00029 #include <Inventor/fields/SoSFFloat.h>
00030
00031 class COIN_DLL_API SoFont : public SoNode {
00032 typedef SoNode inherited;
00033
00034 SO_NODE_HEADER(SoFont);
00035
00036 public:
00037 static void initClass(void);
00038 SoFont(void);
00039
00040 SoSFName name;
00041 SoSFFloat size;
00042
00043 virtual void doAction(SoAction * action);
00044 virtual void getBoundingBox(SoGetBoundingBoxAction * action);
00045 virtual void GLRender(SoGLRenderAction * action);
00046 virtual void callback(SoCallbackAction * action);
00047 virtual void pick(SoPickAction * action);
00048 virtual void getPrimitiveCount(SoGetPrimitiveCountAction * action);
00049
00050 protected:
00051 virtual ~SoFont();
00052 };
00053
00054 #endif // !COIN_SOFONT_H