CuteLogger
Fast and simple logging solution for Qt based applications
filedownloaddialog.h
1/*
2 * Copyright (c) 2025 Meltytech, LLC
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef FILEDOWNLOADDIALOG_H
19#define FILEDOWNLOADDIALOG_H
20
21#include <QProgressDialog>
22#include <QSslError>
23
24class QFile;
25class QNetworkReply;
26
27class FileDownloadDialog : public QProgressDialog
28{
29public:
30 explicit FileDownloadDialog(const QString &title, QWidget *parent = nullptr);
31 ~FileDownloadDialog();
32 void setSrc(const QString &src);
33 void setDst(const QString &dst);
34 bool start();
35private slots:
36 void onDownloadProgress(qint64 bytesReceived, qint64 bytesTotal);
37 void onReadyRead();
38 void onFinished();
39 void sslErrors(const QList<QSslError> &errors);
40
41private:
42 QString m_src;
43 QString m_dst;
44 QFile *m_file;
45 QNetworkReply *m_reply;
46 int m_replyCode;
47};
48
49#endif // FILEDOWNLOADDIALOG_H