diff options
author | aqua <aqua@iserlohn-fortress.net> | 2022-08-28 17:36:28 +0300 |
---|---|---|
committer | aqua <aqua@iserlohn-fortress.net> | 2022-09-05 23:07:42 +0300 |
commit | 72190e0977c0e352e5055e6f65bf2095efa77805 (patch) | |
tree | 6f13302e39141ed6c7ff5f382d310e7273c379d8 /include/rview.hpp | |
parent | Remove source_location (diff) | |
download | rekonq-72190e0977c0e352e5055e6f65bf2095efa77805.tar.xz |
Add actions to RekonqView
- back, forward, refresh, reload
Diffstat (limited to 'include/rview.hpp')
-rw-r--r-- | include/rview.hpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/rview.hpp b/include/rview.hpp index 46cba67c..f92aee7f 100644 --- a/include/rview.hpp +++ b/include/rview.hpp @@ -25,6 +25,12 @@ public: [[nodiscard]] virtual QString title() const = 0; [[nodiscard]] virtual QUrl url() const = 0; +public slots: + virtual void back() = 0; + virtual void forward() = 0; + virtual void refresh() = 0; + virtual void reload() = 0; + signals: void loadStarted(); void loadProgress(int); |