blob: 6f0652d53f7721d2e419dceeaf78766b84a15826 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* ============================================================
* 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) {}
[[nodiscard]] virtual QString title() const = 0;
signals:
void iconChanged(const QIcon &);
void urlChanged(const QUrl &);
void titleChanged(const QString &);
};
|