Update NEWS for 0.3.1
[nomnom.git] / src / ProcProgDiag.h
blobbb8f45648e75392c38065fff3fb4c61666c89d1a
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 int errcode() const;
36 bool failed() const;
37 private slots:
38 void onProcFinished(int, QProcess::ExitStatus);
39 void onProcError(QProcess::ProcessError);
40 void onProcReadyRead();
41 void onProcStarted();
42 void onCanceled();
43 signals:
44 void finished(QString);
45 void error();
46 private:
47 QStringList _args;
48 QString _buffer;
49 QString _errmsg;
50 QProcess _proc;
51 bool _canceled;
52 int _errcode;
55 #endif
57 // vim: set ts=2 sw=2 tw=72 expandtab: