summaryrefslogtreecommitdiff
path: root/src/rview.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/rview.h')
-rw-r--r--src/rview.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/rview.h b/src/rview.h
new file mode 100644
index 00000000..4f4cc897
--- /dev/null
+++ b/src/rview.h
@@ -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);
+
+signals:
+ void iconChanged(const QIcon &);
+ void urlChanged(const QUrl &);
+ void titleChanged(const QString &);
+};