Add email
[nomnom.git] / src / ProcProgDiag.h
blob0cd17174a4189991eaa7f939250c74dbc235b9c5
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_procprogdiag_h
20 #define nomnom_procprogdiag_h
22 #include <QProgressDialog>
23 #include <QProcess>
24 #include <QHash>
26 class ProcessProgressDialog : public QProgressDialog
28 Q_OBJECT
29 public:
30 ProcessProgressDialog(QWidget *parent);
31 public:
32 void start(QStringList&);
33 QString errmsg() const;
34 bool canceled() const;
35 bool failed() const;
36 private slots:
37 void onProcFinished(int, QProcess::ExitStatus);
38 void onProcError(QProcess::ProcessError);
39 void onProcReadyRead();
40 void onProcStarted();
41 void onCanceled();
42 signals:
43 void finished(QString);
44 void error();
45 private:
46 QStringList _args;
47 QString _buffer;
48 QProcess _proc;
49 QString _errmsg;
50 bool _canceled;
53 #endif
55 // vim: set ts=2 sw=2 tw=72 expandtab: