-
Notifications
You must be signed in to change notification settings - Fork 0
/
converter.h
56 lines (43 loc) · 1.65 KB
/
converter.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
/*
* RFC Backend for Okular
* Copyright (C) 2018 by Xiaofeng Wang <wasphin@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, 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 General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef OKULAR_GENERATOR_RFC_CONVERTER_H
#define OKULAR_GENERATOR_RFC_CONVERTER_H
#include "config.h"
#include <core/textdocumentgenerator.h>
#include <QFile>
namespace Rfc {
class Converter : public Okular::TextDocumentConverter
{
public:
Converter();
~Converter();
private:
typedef QPair<int, QString> Section;
typedef QList<Section> SectionArray;
void escapeCharacters(QString &line);
bool parseTitle(QTextStream &stream, QString &content, SectionArray §ions);
bool parsePage(QTextStream &stream, QString &content, SectionArray §ions, bool insertHeader = true);
void addTitiles(const SectionArray §ions, const QTextBlock &block);
void parseHeader(QTextStream &stream, QString &output);
void parseTitle(QTextStream &stream, QString &output);
public:
virtual QTextDocument *convert(const QString &fileName);
};
} // namespace Rfc
#endif //OKULAR_GENERATOR_RFC_CONVERTER_H