Marble

TileCreatorDialog.h
1// SPDX-License-Identifier: LGPL-2.1-or-later
2//
3// SPDX-FileCopyrightText: 2006-2007 Torsten Rahn <tackat@kde.org>
4// SPDX-FileCopyrightText: 2007 Inge Wallin <ingwa@kde.org>
5//
6
7//
8// The TileCreatorDialog displays the progress of the tile creation.
9//
10
11#ifndef MARBLE_TILECREATORDIALOG_H
12#define MARBLE_TILECREATORDIALOG_H
13
14#include <QDialog>
15
16#include "marble_export.h"
17
18class QString;
19
20namespace Marble
21{
22
23class TileCreator;
24class TileCreatorDialogPrivate;
25
26class MARBLE_EXPORT TileCreatorDialog : public QDialog
27{
28 Q_OBJECT
29
30public:
31 explicit TileCreatorDialog(TileCreator *creator, QWidget *parent = nullptr);
32 ~TileCreatorDialog() override;
33
34public Q_SLOTS:
35 void setProgress(int progress);
36 void setSummary(const QString &name, const QString &description);
37
38private Q_SLOTS:
39 void cancelTileCreation();
40
41private:
42 Q_DISABLE_COPY(TileCreatorDialog)
43 TileCreatorDialogPrivate *const d;
44};
45
46}
47
48#endif
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:04 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.