summaryrefslogtreecommitdiff
path: root/src/gui/previewwindow.h
blob: a937263db4295c665fecfc9c251f372749bf7f7a (plain)
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
#ifndef PREVIEWWINDOW_H
#define PREVIEWWINDOW_H


#include <QDialog>
#include <QLabel>
#include <QPlainTextEdit>
#include <poppler/qt5/poppler-qt5.h>

namespace Ui {
class PreviewWindow;
}

class PreviewWindow : public QDialog
{
    Q_OBJECT

public:
    enum Status {
        Running, Success, Failed
    };
    explicit PreviewWindow(QWidget *parent = nullptr);
    ~PreviewWindow();
    void setPdf(QString file);
    QString preparePreview(QString tikz);
    QPlainTextEdit *outputTextEdit();
    void setStatus(Status status);

public slots:
    void render();

protected:
    void resizeEvent(QResizeEvent *e);
    void showEvent(QShowEvent *e);
    void closeEvent(QCloseEvent *e);

private:
    Ui::PreviewWindow *ui;
    Poppler::Document *_doc;
    Poppler::Page *_page;
    QLabel *_loader;
};

#endif // PREVIEWWINDOW_H