font-instance.h revision 8635db5fa8eea32dccc0ce084ac61dbbc99f0b14
#ifndef SEEN_LIBNRTYPE_FONT_INSTANCE_H
#define SEEN_LIBNRTYPE_FONT_INSTANCE_H
#include <map>
#include <pango/pango-types.h>
#include <pango/pango-font.h>
#include <require-config.h>
#include "FontFactory.h"
#include <libnr/nr-forward.h>
#include <libnrtype/nrtype-forward.h>
#include <libnrtype/font-style.h>
#include <livarot/livarot-forward.h>
// the font_instance are the template of several raster_font; they provide metrics and outlines
// that are drawn by the raster_font, so the raster_font needs info relative to the way the
// font need to be drawn. note that fontsize is a scale factor in the transform matrix
// of the style
// the various raster_font in use at a given time are held in a hash_map whose indices are the
// styles, hence the 2 following 'classes'
};
};
// hashmap to get the raster_font for a given style
// the real source of the font
// depending on the rendering backend, different temporary data
// that's the font's fingerprint; this particular PangoFontDescription gives the entry at which this font_instance
// resides in the font_factory loadedFaces hash_map
// refcount
int refCount;
// font_factory owning this font_instance
// common glyph definitions for all the rasterfonts
font_instance(void);
virtual ~font_instance(void);
void Ref(void);
void Unref(void);
bool IsOutlineFont(void); // utility
// in case the PangoFont is a bitmap font, for example. that way, the calling function
// will be able to check the validity of the font before installing it in loadedFaces
void InitTheFace();
// loads the given glyph's info
// nota: all coordinates returned by these functions are on a [0..1] scale; you need to multiply
// by the fontsize to get the real sizes
// queries the outline of the glyph (in livarot Path form), and copies it into copyInto instead
// of allocating a new Path if copyInto != NULL
// returns the artbpath for this glyph. no refcounting needed, it's deallocated when the font_instance dies
// returns the 2geom-type pathvector for this glyph. no refcounting needed, it's deallocated when the font_instance dies
// nominal advance of the font.
// for generating slanted cursors for oblique fonts
// creates a rasterfont for the given style
// the dashes array in iStyle is copied
// private use: tells the font_instance that the raster_font 'who' has died
// attribute queries
void FreeTheFace();
#ifdef USE_PANGO_WIN32
#else
// as long as pFont is valid, theFace is too
#endif
};
#endif /* !SEEN_LIBNRTYPE_FONT_INSTANCE_H */
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :