78 lines
2.1 KiB
C
78 lines
2.1 KiB
C
|
/**
|
||
|
* PANDA 3D SOFTWARE
|
||
|
* Copyright (c) Carnegie Mellon University. All rights reserved.
|
||
|
*
|
||
|
* All use of this software is subject to the terms of the revised BSD
|
||
|
* license. You should have received a copy of this license along
|
||
|
* with this source code in a file named "LICENSE."
|
||
|
*
|
||
|
* @file geomTextGlyph.h
|
||
|
* @author drose
|
||
|
* @date 2005-03-31
|
||
|
*/
|
||
|
|
||
|
#ifndef GEOMTEXTGLYPH_H
|
||
|
#define GEOMTEXTGLYPH_H
|
||
|
|
||
|
#include "pandabase.h"
|
||
|
#include "geom.h"
|
||
|
#include "textGlyph.h"
|
||
|
|
||
|
/**
|
||
|
* This is a specialization on Geom for containing a primitive intended to
|
||
|
* represent a TextGlyph. Its sole purpose is to maintain the geom count on
|
||
|
* the glyph, so we can determine the actual usage count on a dynamic glyph
|
||
|
* (and thus know when it is safe to recycle the glyph).
|
||
|
*/
|
||
|
class EXPCL_PANDA_TEXT GeomTextGlyph : public Geom {
|
||
|
public:
|
||
|
GeomTextGlyph(const TextGlyph *glyph, const GeomVertexData *data);
|
||
|
GeomTextGlyph(const GeomVertexData *data);
|
||
|
GeomTextGlyph(const GeomTextGlyph ©);
|
||
|
GeomTextGlyph(const Geom ©, const TextGlyph *glyph);
|
||
|
void operator = (const GeomTextGlyph ©);
|
||
|
virtual ~GeomTextGlyph();
|
||
|
ALLOC_DELETED_CHAIN(GeomTextGlyph);
|
||
|
|
||
|
virtual Geom *make_copy() const;
|
||
|
virtual bool copy_primitives_from(const Geom *other);
|
||
|
void count_geom(const Geom *other);
|
||
|
|
||
|
virtual void output(std::ostream &out) const;
|
||
|
virtual void write(std::ostream &out, int indent_level = 0) const;
|
||
|
|
||
|
void add_glyph(const TextGlyph *glyph);
|
||
|
|
||
|
friend class TextAssembler;
|
||
|
|
||
|
private:
|
||
|
typedef pvector< CPT(TextGlyph) > Glyphs;
|
||
|
Glyphs _glyphs;
|
||
|
|
||
|
public:
|
||
|
static void register_with_read_factory();
|
||
|
static TypedWritable *make_GeomTextGlyph(const FactoryParams ¶ms);
|
||
|
|
||
|
PUBLISHED:
|
||
|
static TypeHandle get_class_type() {
|
||
|
return _type_handle;
|
||
|
}
|
||
|
public:
|
||
|
static void init_type() {
|
||
|
Geom::init_type();
|
||
|
register_type(_type_handle, "GeomTextGlyph",
|
||
|
Geom::get_class_type());
|
||
|
}
|
||
|
virtual TypeHandle get_type() const {
|
||
|
return get_class_type();
|
||
|
}
|
||
|
virtual TypeHandle force_init_type() {init_type(); return get_class_type();}
|
||
|
|
||
|
private:
|
||
|
static TypeHandle _type_handle;
|
||
|
};
|
||
|
|
||
|
#include "geomTextGlyph.I"
|
||
|
|
||
|
#endif // GEOMTEXTGLYPH_H
|