Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fb2text.hpp « source - github.com/lintest/fb2edit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f68ffa00ca5c5e9521b358d01b9120f03de6978b (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#ifndef FB2TEXT_H
#define FB2TEXT_H

#include <QAction>
#include <QDockWidget>
#include <QFrame>
#include <QResizeEvent>
#include <QTimer>
#include <QWebElement>
#include <QWebView>

#include "fb2mode.h"
#include "fb2imgs.hpp"

QT_BEGIN_NAMESPACE
class QMainWindow;
class QToolBar;
QT_END_NAMESPACE

class FbNoteView;
class FbReadThread;
class FbTextPage;

class FbDockWidget : public QDockWidget
{
    Q_OBJECT
public:
    explicit FbDockWidget(const QString &title, QWidget *parent = 0, Qt::WindowFlags flags = {});
};

class FbTextBase : public QWebView
{
    Q_OBJECT

public:
    FbTextBase(QWidget *parent = 0)
        : QWebView(parent)
    {
          m_timer.setInterval(100);
          m_timer.setSingleShot(true);
          connect(&m_timer, SIGNAL(timeout()), SLOT(doResize()));
    }

    void addTools(QToolBar *tool);

protected slots:
    void doResize() {
        QResizeEvent event(size(), m_size);
        QWebView::resizeEvent(&event);
        QWebView::update();
    }

protected:
     void resizeEvent(QResizeEvent* event) {
          if (!m_timer.isActive()) m_size = event->oldSize();
          m_timer.start();
     }

     void keyPressEvent(QKeyEvent *event) {
         if (event->key() == Qt::Key_Escape) return;
         QWebView::keyPressEvent(event);
     }

private:
    QTimer m_timer;
    QSize m_size;
};

class FbTextEdit : public FbTextBase
{
    Q_OBJECT

public:
    explicit FbTextEdit(QWidget *parent, QObject *owner);
    virtual ~FbTextEdit();

    FbTextPage *page();
    FbStore *store();
    bool save(QIODevice *device, const QString &codec = QString());
    bool save(QString *string, int &anchor, int &focus);
    bool save(QByteArray *array);
    QString toHtml();

    QAction * act(Fb::Actions index) const;
    QAction * pAct(QWebPage::WebAction index) const;
    void setAction(Fb::Actions index, QAction *action);
    void connectActions(QToolBar *tool);
    void disconnectActions();
    void hideDocks();

    bool BoldChecked();
    bool ItalicChecked();
    bool StrikeChecked();
    bool SubChecked();
    bool SupChecked();

    QWebElement body();
    QWebElement doc();

signals:
    void modificationChanged(bool changed);

protected:
    virtual void mouseMoveEvent(QMouseEvent *event);

public slots:
    void viewContents(bool show);
    void viewPictures(bool show);
    void viewFootnotes(bool show);
    void viewInspector(bool show);
    void insertImage();
    void insertNote();
    void insertLink();
    void find();

#ifdef QT_DEBUG
public slots:
    void exportHtml();
#endif // QT_DEBUG

private slots:
    void linkHovered(const QString &link, const QString &title, const QString &textContent);
    void contextMenu(const QPoint &pos);
    void cleanChanged(bool clean);
    void treeDestroyed();
    void imgsDestroyed();
    void noteDestroyed();
    void zoomIn();
    void zoomOut();
    void zoomReset();

private:
    bool actionEnabled(QWebPage::WebAction action);
    bool actionChecked(QWebPage::WebAction action);
    void execCommand(const QString &cmd, const QString &arg);
    FbBinary * file(const QString &name);
    FbNoteView & noteView();

private:
    QMainWindow *m_owner;
    FbNoteView *m_noteView;
    FbReadThread *m_thread;
    FbActionMap m_actions;
    QDockWidget *dockTree;
    QDockWidget *dockNote;
    QDockWidget *dockImgs;
    QDockWidget *dockInsp;
    QPoint m_point;
};

class FbTextFrame : public QFrame
{
    Q_OBJECT
public:
    explicit FbTextFrame(QWidget *parent = 0);
};

class FbTextAction : public QAction
{
    Q_OBJECT

public:
    explicit FbTextAction(const QString &text, QWebPage::WebAction action, FbTextEdit* parent);
    explicit FbTextAction(const QIcon &icon, const QString &text, QWebPage::WebAction action, FbTextEdit *parent);
    void connectAction();
    void disconnectAction();

private slots:
    void updateAction();

private:
    QAction * action();

private:
    QWebPage::WebAction m_action;
    FbTextEdit *m_parent;
};

#endif // FB2TEXT_H