Marble

NullTinyWebBrowser.h
1// SPDX-License-Identifier: LGPL-2.1-or-later
2//
3// SPDX-FileCopyrightText: 2015 Gábor Péterffy <peterffy95@gmail.com>
4//
5
6#ifndef NULLTINYWEBBROWSER_H
7#define NULLTINYWEBBROWSER_H
8
9// Qt
10#include <QWidget>
11
12// Marble
13#include "marble_export.h"
14
15class QString;
16class QByteArray;
17
18namespace Marble
19{
20
21class MARBLE_EXPORT TinyWebBrowser : public QWidget
22{
23 Q_OBJECT
24
25public:
26 explicit TinyWebBrowser(QWidget *parent = 0);
27
28 static QByteArray userAgent(const QString &platform, const QString &plugin);
29
30public Q_SLOTS:
31 void setWikipediaPath(const QString &relativeUrl);
32 void print();
33
34Q_SIGNALS:
35 void statusMessage(const QString &);
36};
37
38}
39
40#endif
KGuiItem print()
Binds a QML item to a specific geodetic location in screen coordinates.
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 4 2024 16:37:03 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.