kde-extraapps/okular/generators/dvi/glyph.h

44 lines
726 B
C++

// -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; c-brace-offset: 0; -*-
#ifndef _GLYPH_H
#define _GLYPH_H
#include <QColor>
#include <QImage>
struct bitmap {
bitmap();
~bitmap();
// width and height in pixels
quint16 w, h;
// scan-line width in bytes
quint16 bytes_wide;
// pointer to the bits
char* bits;
};
class glyph {
public:
glyph();
~glyph();
// address of bitmap in font file
long addr;
QColor color;
// DVI units to move reference point
qint32 dvi_advance_in_units_of_design_size_by_2e20;
// x and y offset in pixels
short x, y;
QImage shrunkenCharacter;
// x and y offset in pixels (shrunken bitmap)
short x2, y2;
};
#endif //ifndef _GLYPH_H