Add email
[nomnom.git] / src / DownloadDiag.h
blobc768aeff32b322838cf493001cf4a1f140f8a6e0
1 /*
2 * NomNom
3 * Copyright (C) 2010-2011 Toni Gundogdu <legatvs@gmail.com>
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 #ifndef nomnom_downloaddiag_h
20 #define nomnom_downloaddiag_h
22 #include <QProgressDialog>
23 #include <QProcess>
25 #include "Media.h"
27 class DownloadDialog : public QProgressDialog
29 Q_OBJECT
30 public:
31 DownloadDialog(QWidget *parent=NULL);
32 public:
33 void start(QStringList&);
34 QString errmsg() const;
35 bool canceled() const;
36 bool failed() const;
37 signals:
38 void finished();
39 void error();
40 private slots:
41 void onCurlFinished(int, QProcess::ExitStatus);
42 void onCurlError(QProcess::ProcessError);
43 void onCurlReadyRead();
44 void onCurlStarted();
45 void onCanceled();
46 private:
47 QStringList _args;
48 QString _errmsg;
49 QProcess _proc;
50 bool _canceled;
53 #endif
55 // vim: set ts=2 sw=2 tw=72 expandtab: