mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-25 03:12:53 +00:00
45 lines
726 B
C
45 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
|