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
13class CloudRouteModel;
14
15class CloudRoutesDialog : public QDialog
16{
18
19public:
20 explicit CloudRoutesDialog( CloudRouteModel *model, QWidget *parent = nullptr );
21 ~CloudRoutesDialog() override;
22 CloudRouteModel *model();
23
24public Q_SLOTS:
25 void updateListDownloadProgressbar( qint64 received, qint64 total );
26
28 void downloadButtonClicked( const QString& timestamp );
29 void openButtonClicked( const QString& timestamp );
30 void deleteButtonClicked( const QString& timestamp );
31 void removeFromCacheButtonClicked( const QString& timestamp );
32 void uploadToCloudButtonClicked( const QString& timestamp );
33
34private:
35 class Private;
36 Private *d;
37
38private Q_SLOTS:
39 void updateNoRouteLabel();
40};
41
42}
43#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
T qobject_cast(QObject *object)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:18:16 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.