00001 #ifndef COIN_SOGLYPH_H
00002 #define COIN_SOGLYPH_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/SbBasic.h>
00028 #include <Inventor/SbBox2f.h>
00029 #include <Inventor/SbVec2s.h>
00030 #include <Inventor/misc/SoState.h>
00031
00032 class SbName;
00033 class SoGlyphP;
00034
00035 class COIN_DLL_API SoGlyph {
00036 public:
00037
00038 void unref(void) const;
00039
00040 static const SoGlyph * getGlyph(const char character, const SbName & font);
00041
00042 const SbVec2f * getCoords(void) const;
00043 const int * getFaceIndices(void) const;
00044 const int * getEdgeIndices(void) const;
00045 const int * getNextCWEdge(const int edgeidx) const;
00046 const int * getNextCCWEdge(const int edgeidx) const;
00047
00048 float getWidth(void) const;
00049 const SbBox2f & getBoundingBox(void) const;
00050
00051 static const SoGlyph * getGlyph(SoState * state,
00052 const unsigned int character,
00053 const SbVec2s & size,
00054 const float angle);
00055 SbVec2s getAdvance(void) const;
00056 SbVec2s getKerning(const SoGlyph & rightglyph) const;
00057 unsigned char * getBitmap(SbVec2s & size, SbVec2s & pos, const SbBool antialiased) const;
00058
00059 protected:
00060 SoGlyph(void);
00061 ~SoGlyph();
00062
00063 void setCoords(SbVec2f * coords, int numcoords = -1);
00064 void setFaceIndices(int * indices, int numindices = -1);
00065 void setEdgeIndices(int * indices, int numindices = -1);
00066
00067 private:
00068 static void unrefGlyph(SoGlyph * glyph);
00069
00070 SoGlyphP * pimpl;
00071 };
00072
00073 #endif // !COIN_SOGLYPH_H