Marble

CloudRoutesDialog.h
1// SPDX-License-Identifier: LGPL-2.1-or-later
2//
3// SPDX-FileCopyrightText: 2013 Utku Aydın <utkuaydin34@gmail.com>
4//
5
6#ifndef CLOUDROUTESDIALOG_H
7#define CLOUDROUTESDIALOG_H
8
9#include <QDialog>
10
11namespace Marble
12{
13
14class CloudRouteModel;
15
16class CloudRoutesDialog : public QDialog
17{
19
20public:
21 explicit CloudRoutesDialog(CloudRouteModel *model, QWidget *parent = nullptr);
22 ~CloudRoutesDialog() override;
23 CloudRouteModel *model();
24
25public Q_SLOTS:
26 void updateListDownloadProgressbar(qint64 received, qint64 total);
27
29 void downloadButtonClicked(const QString &timestamp);
30 void openButtonClicked(const QString &timestamp);
31 void deleteButtonClicked(const QString &timestamp);
32 void removeFromCacheButtonClicked(const QString &timestamp);
33 void uploadToCloudButtonClicked(const QString &timestamp);
34
35private:
36 class Private;
37 Private *const d;
38
39private Q_SLOTS:
40 void updateNoRouteLabel();
41};
42
43}
44#endif // CLOUDROUTESDIALOG_H
Binds a QML item to a specific geodetic location in screen coordinates.
Q_OBJECTQ_OBJECT
Q_SIGNALSQ_SIGNALS
Q_SLOTSQ_SLOTS
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 4 2024 16:37:02 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.