diff options
| author | Felix (xq) Queißner <git@mq32.de> | 2021-03-06 15:26:07 +0100 |
|---|---|---|
| committer | Felix (xq) Queißner <git@mq32.de> | 2021-03-06 15:26:07 +0100 |
| commit | 9457e720f24d8365ed6a1e82b016078b0bc17eb6 (patch) | |
| tree | d810dcd8189ce508a9a0e666f7d819f3c63bcbca /src/mainwindow.hpp | |
| parent | e16c85887a58381f225d706a8d740bf96a5fdf6a (diff) | |
| download | kristall-9457e720f24d8365ed6a1e82b016078b0bc17eb6.tar.gz | |
Implements proper multi-window support.
Diffstat (limited to 'src/mainwindow.hpp')
| -rw-r--r-- | src/mainwindow.hpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/mainwindow.hpp b/src/mainwindow.hpp index 7113587..a268ec7 100644 --- a/src/mainwindow.hpp +++ b/src/mainwindow.hpp @@ -45,6 +45,9 @@ public: QString newGroupDialog(); + //! Applies setting changes to the window. + void applySettings(); + void mousePressEvent(QMouseEvent *event) override; void closeEvent(QCloseEvent *event) override; @@ -100,6 +103,10 @@ private slots: void on_actionShow_document_source_triggered(); + void on_actionNew_window_triggered(); + + void on_actionClose_Window_triggered(); + private: // slots void on_tab_fileLoaded(DocumentStats const & stats); |
