diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-08-17 22:48:01 +0300 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-08-18 10:47:39 +0300 |
commit | ce06956d314dc8d7080ba96b76f4ee8ad851912a (patch) | |
tree | c01cd1d1e61acb7ef11cbc439f120d7540f3add5 /src/plugins/rview.hpp | |
parent | Pass command line from secondary to primary instance (diff) | |
download | rekonq-ce06956d314dc8d7080ba96b76f4ee8ad851912a.tar.xz |
Show main window
- added Task Manager, showing all plugins, windows and view
Diffstat (limited to 'src/plugins/rview.hpp')
-rw-r--r-- | src/plugins/rview.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/plugins/rview.hpp b/src/plugins/rview.hpp index 71bf5ddf..6f0652d5 100644 --- a/src/plugins/rview.hpp +++ b/src/plugins/rview.hpp @@ -18,6 +18,8 @@ class rView : public QWidget { public: explicit rView(const QUrl &url = QUrl(), QWidget *parent = nullptr) : QWidget(parent) {} + [[nodiscard]] virtual QString title() const = 0; + signals: void iconChanged(const QIcon &); void urlChanged(const QUrl &); |