summaryrefslogtreecommitdiff
path: root/src/rview.h
blob: 4f4cc897b3203210c94dc50d6f243cf733915379 (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
/* ============================================================
 *     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 &);
};