1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 15:23:22 +02:00
GPXSee/src/map/IMG/lblfile.h

54 lines
1.4 KiB
C
Raw Normal View History

2019-05-10 18:56:19 +02:00
#ifndef LBLFILE_H
#define LBLFILE_H
#include "subfile.h"
2019-06-30 20:39:22 +02:00
#include "label.h"
2019-05-10 18:56:19 +02:00
class QTextCodec;
class HuffmanText;
class RGNFile;
2019-05-10 18:56:19 +02:00
class LBLFile : public SubFile
{
public:
LBLFile(IMG *img)
: SubFile(img), _huffmanText(0), _table(0), _codec(0), _offset(0),
_size(0), _poiOffset(0), _poiSize(0), _poiMultiplier(0), _multiplier(0),
_encoding(0) {}
LBLFile(const QString *path)
: SubFile(path), _huffmanText(0), _table(0), _codec(0), _offset(0),
_size(0), _poiOffset(0), _poiSize(0), _poiMultiplier(0), _multiplier(0),
_encoding(0) {}
LBLFile(SubFile *gmp, quint32 offset) : SubFile(gmp, offset),
_huffmanText(0), _table(0), _codec(0), _offset(0), _size(0),
_poiOffset(0), _poiSize(0), _poiMultiplier(0), _multiplier(0),
_encoding(0) {}
~LBLFile();
bool load(Handle &hdl, const RGNFile *rgn, Handle &rgnHdl);
void clear();
2019-05-10 18:56:19 +02:00
2020-02-16 12:57:40 +01:00
Label label(Handle &hdl, quint32 offset, bool poi = false,
bool capitalize = true) const;
2019-05-10 18:56:19 +02:00
private:
Label str2label(const QVector<quint8> &str, bool capitalize) const;
2020-02-16 12:57:40 +01:00
Label label6b(Handle &hdl, quint32 offset, bool capitalize) const;
Label label8b(Handle &hdl, quint32 offset, bool capitalize) const;
Label labelHuffman(Handle &hdl, quint32 offset, bool capitalize) const;
HuffmanText *_huffmanText;
quint32 *_table;
2019-05-10 18:56:19 +02:00
2019-08-12 22:20:12 +02:00
QTextCodec *_codec;
2019-05-10 18:56:19 +02:00
quint32 _offset;
quint32 _size;
quint32 _poiOffset;
quint32 _poiSize;
2019-08-12 22:20:12 +02:00
quint8 _poiMultiplier;
2019-05-10 18:56:19 +02:00
quint8 _multiplier;
quint8 _encoding;
};
#endif // LBLFILE_H