okular/generators/markdown/converter.h
Albert Astals Cid 551f0b6271 Small rework for the markdown converter
Don't have the textdocument and dir as members, pass them along
This is to make clear that this is a "one off stateless conversion",
i.e. after convert returns the converter doesn't own the textdocument
anymore, so better don't keep a pointer to it
2017-08-25 01:14:58 +02:00

41 lines
1.3 KiB
C++

/***************************************************************************
* Copyright (C) 2017 by Julian Wolff <wolff@julianwolff.de> *
* *
* 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 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef MARKDOWN_CONVERTER_H
#define MARKDOWN_CONVERTER_H
#include <core/textdocumentgenerator.h>
class QDir;
class QTextBlock;
class QTextFrame;
namespace Markdown {
class Converter : public Okular::TextDocumentConverter
{
Q_OBJECT
public:
Converter();
~Converter();
QTextDocument *convert( const QString &fileName ) override;
private:
void convertLinks(QTextFrame *parent);
void convertLinks(const QTextBlock& parent);
void convertImages(QTextFrame *parent, const QDir &dir, QTextDocument *textDocument);
void convertImages(const QTextBlock& parent, const QDir &dir, QTextDocument *textDocument);
};
}
#endif