summaryrefslogtreecommitdiff
path: root/src/plugins/rview.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/rview.hpp')
-rw-r--r--src/plugins/rview.hpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/plugins/rview.hpp b/src/plugins/rview.hpp
new file mode 100644
index 00000000..71bf5ddf
--- /dev/null
+++ b/src/plugins/rview.hpp
@@ -0,0 +1,25 @@
+/* ============================================================
+ * The rekonq project
+ * ============================================================
+ * SPDX-License-Identifier: GPL-3.0-only
+ * Copyright (C) 2022 aqua <aqua@iserlohn-fortress.net>
+ * ============================================================
+ * Description: View Interface
+ * ============================================================ */
+
+#pragma once
+
+#include <QUrl>
+#include <QWidget>
+
+class rView : public QWidget {
+ Q_OBJECT
+
+public:
+ explicit rView(const QUrl &url = QUrl(), QWidget *parent = nullptr) : QWidget(parent) {}
+
+signals:
+ void iconChanged(const QIcon &);
+ void urlChanged(const QUrl &);
+ void titleChanged(const QString &);
+};