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
29 Q_OBJECT
30
31 public:
32 explicit TileCreatorDialog( TileCreator *creator, QWidget *parent = nullptr );
33 ~TileCreatorDialog() override;
34
35 public Q_SLOTS:
36 void setProgress( int progress );
37 void setSummary( const QString& name, const QString& description );
38
39private Q_SLOTS:
40 void cancelTileCreation();
41
42 private:
43 Q_DISABLE_COPY( TileCreatorDialog )
44 TileCreatorDialogPrivate * const d;
45};
46
47}
48
49#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 Tue Mar 26 2024 11:18:17 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.