diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2020-06-06 14:22:53 +0200 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2020-06-06 14:22:53 +0200 |
| commit | bcda97a2e17f6e1366cfe5b03bd0b407d4484255 (patch) | |
| tree | 2f485e8ff94e26a4c8e1b2e0310c396dbb23c5a0 /mainwindow.hpp | |
| parent | 7e7ac47308d88aa3a67836937a6888b7b3d90d56 (diff) | |
| download | kristall-bcda97a2e17f6e1366cfe5b03bd0b407d4484255.tar.gz | |
Reworks document rendering: Now generates QTextDocument directly instead of using HTML inbetween.
Diffstat (limited to 'mainwindow.hpp')
| -rw-r--r-- | mainwindow.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mainwindow.hpp b/mainwindow.hpp index c55a569..ea2af3e 100644 --- a/mainwindow.hpp +++ b/mainwindow.hpp @@ -20,7 +20,6 @@ public: MainWindow(QWidget *parent = nullptr); ~MainWindow(); - BrowserTab * addEmptyTab(bool focus_new); BrowserTab * addNewTab(bool focus_new, QUrl const & url); @@ -38,6 +37,10 @@ private slots: void on_history_view_doubleClicked(const QModelIndex &index); + void on_tab_titleChanged(QString const & title); + + void on_tab_locationChanged(QUrl const & url); + private: Ui::MainWindow *ui; |
