diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-04 23:15:27 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-04 23:15:27 +0200 |
| commit | 55e4bf4197d5992d05296bff3bb339da17ed0a39 (patch) | |
| tree | 8673beae4f8fadaa4e3bfcaa2211036fdc2b4d16 /browsertab.hpp | |
| parent | 850cd41dd8c9ec7645b2c5c4441d48473aed9375 (diff) | |
| download | kristall-55e4bf4197d5992d05296bff3bb339da17ed0a39.tar.gz | |
Removes the need for qt web engine, replaces the web renderer with the waaaay faster rich text rendering engine.
Diffstat (limited to 'browsertab.hpp')
| -rw-r--r-- | browsertab.hpp | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/browsertab.hpp b/browsertab.hpp index ddaf1b4..79bf9c8 100644 --- a/browsertab.hpp +++ b/browsertab.hpp @@ -5,7 +5,6 @@ #include <QUrl> #include "geminiclient.hpp" -#include "geminiwebpage.hpp" #include "documentoutlinemodel.hpp" namespace Ui { @@ -64,6 +63,14 @@ private slots: void on_fav_button_clicked(); + void on_textBrowser_anchorClicked(const QUrl &arg1); + + void on_textBrowser_backwardAvailable(bool arg1); + + void on_textBrowser_forwardAvailable(bool arg1); + + void on_textBrowser_highlighted(const QUrl &arg1); + private: void setErrorMessage(QString const & msg); @@ -83,8 +90,6 @@ public: QVector<QUrl> navigation_history; - GeminiWebPage page; - bool successfully_loaded = false; DocumentOutlineModel outline; |
