This repository has been archived by the owner on May 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
lingoes.h
60 lines (55 loc) · 2.21 KB
/
lingoes.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*
* Read Lingoes Dictionary Files (*.ld2 or *.ldx)
* Copyright (C) 2013-2015 by Symeon Huang <[email protected]>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as
* published by the Free Software Foundation; either version 3 or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef lingoes_H
#define lingoes_H
#include <QObject>
#include <QTextDecoder>
#include <QTextCodec>
class Lingoes : public QObject
{
Q_OBJECT
public:
Lingoes(const QString &, bool _trim = true);
void extractToFile(const QString &);
int getInt(const int);
int getInt(const QByteArray &, const int);
qint16 getShort(const int);//the short is 16-bit integer
qint32 getLong(const int);//while the long is actually 32-bit integer.
QByteArray toHexString(const qint32);
QByteArray toHexString(const qint16);
private:
const bool trim;
int position;
int inflated_pos;
QString ld2file;
QByteArray ld2ByteArray;
QTextCodec* xmlc;//XML Encoding
QTextCodec* wordc;//Words Encoding
void readDictionary(const int offsetWithIndex, const QString &);
void inflateData(const QVector<int> &, QByteArray *);
void decompress(QByteArray *, const int, const quint32);
void extract(const QByteArray &, const int, const int, const QString &);
void detectEncodings(const QByteArray &, const int, const int, const int, const int, int a[]);
void readDefinitionData(const QByteArray &, const int, const int, const int, int a[], QString s[], const int);
void getIdxData(const QByteArray &, const int, int a[]);
QString strip(const QString &);
const static QVector<QByteArray> availableEncodings;
};
#endif // lingoes_H