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
23class QFile;
24class QNetworkReply;
25
26class FileDownloadDialog : public QProgressDialog
27{
28public:
29 explicit FileDownloadDialog(const QString &title, QWidget *parent = nullptr);
30 ~FileDownloadDialog();
31 void setSrc(const QString &src);
32 void setDst(const QString &dst);
33 bool start();
34private slots:
35 void onDownloadProgress(qint64 bytesReceived, qint64 bytesTotal);
36 void onReadyRead();
37 void onFinished();
38
39private:
40 QString m_src;
41 QString m_dst;
42 QFile *m_file;
43 QNetworkReply *m_reply;
44 int m_replyCode;
45};
46
47#endif // FILEDOWNLOADDIALOG_H