You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
842 B
47 lines
842 B
// -*- 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(); |
|
|
|
bitmap(const bitmap &) = delete; |
|
bitmap &operator=(const bitmap &) = delete; |
|
|
|
// 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
|
|
|