File indexing completed on 2024-04-28 15:15:47

0001 // SPDX-License-Identifier: LGPL-2.1-or-later
0002 //
0003 // SPDX-FileCopyrightText: 2013 Bernhard Beschow <bbeschow@cs.tu-berlin.de>
0004 // SPDX-FileCopyrightText: 2013 Dennis Nienhüser <nienhueser@kde.org>
0005 //
0006 
0007 #ifndef MARBLE_MAPTHEMEDOWNLOADDIALOG_H
0008 #define MARBLE_MAPTHEMEDOWNLOADDIALOG_H
0009 
0010 #include <QDialog>
0011 
0012 #include "marble_export.h"
0013 
0014 namespace Marble {
0015 
0016 class MarbleWidget;
0017 
0018 class MARBLE_EXPORT MapThemeDownloadDialog : public QDialog
0019 {
0020     Q_OBJECT
0021 
0022 public:
0023     explicit MapThemeDownloadDialog( MarbleWidget *marbleWidget );
0024     ~MapThemeDownloadDialog() override;
0025 
0026 private:
0027     Q_DISABLE_COPY( MapThemeDownloadDialog )
0028     class Private;
0029     Private *const d;
0030 };
0031 
0032 }
0033 
0034 #endif