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 /plugins/webengine/webview.h | |
parent | Remove source_location (diff) | |
download | rekonq-72190e0977c0e352e5055e6f65bf2095efa77805.tar.xz |
Add actions to RekonqView
- back, forward, refresh, reload
Diffstat (limited to 'plugins/webengine/webview.h')
-rw-r--r-- | plugins/webengine/webview.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/webengine/webview.h b/plugins/webengine/webview.h index 103b98b3..e4de8ac0 100644 --- a/plugins/webengine/webview.h +++ b/plugins/webengine/webview.h @@ -27,6 +27,12 @@ public: [[nodiscard]] QString title() const override; [[nodiscard]] QIcon icon() const override; +public slots: + void back() override; + void forward() override; + void refresh() override; + void reload() override; + private: QWebEngineView *view; int m_loadProgress = 0; |