httpmgr: fix: emit finished if != http/200.
[abby.git] / src / mainwnd.h
blob4e74d116cdbe110b80410eb24151a4f7dff18105
1 /*
2 * abby Copyright (C) 2009 Toni Gundogdu.
3 * This file is part of abby.
5 * abby 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 * abby 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/>.
18 #ifndef mainwnd_h
19 #define mainwnd_h
21 #include <QProcess>
23 #include "ui_mainwnd.h"
25 class QMainWindow;
26 class PreferencesDialog;
27 class RSSDialog;
28 class ScanDialog;
29 class FormatDialog;
31 typedef QMap<QString,QString> QStringMap;
33 class MainWindow : public QMainWindow, private Ui::MainWindow {
34 Q_OBJECT
35 public:
36 MainWindow();
37 private slots:
38 void onPreferences();
39 void onStart();
40 void onCancel();
41 void onAbout();
42 void onStreamStateChanged(int state);
43 void onRSS();
44 void onScan();
45 void onPasteURL();
46 void onAdd();
47 void onRemove();
48 void onClear();
49 void onFormats();
50 void onProcStarted();
51 void onProcError(QProcess::ProcessError);
52 void onProcStdoutReady();
53 void onProcFinished(int exitCode, QProcess::ExitStatus exitStatus);
54 void onItemDoubleClicked(QListWidgetItem *item);
55 private:
56 QStringMap hosts;
57 PreferencesDialog *prefs;
58 RSSDialog *rss;
59 ScanDialog *scan;
60 FormatDialog *format;
61 QProcess process;
62 bool cancelledFlag;
63 bool isCcliveFlag;
64 QString ccliveVersion;
65 QString libVersion;
66 QString libName;
67 private:
68 void addPageLink(QString lnk);
69 void writeSettings();
70 void readSettings();
71 void updateWidgets(const bool updateCcliveDepends);
72 void setProxy();
73 bool ccliveSupportsHost(const QString &lnk);
74 bool parseCcliveHostsOutput();
75 bool parseCcliveVersionOutput();
76 protected:
77 void closeEvent(QCloseEvent *event);
78 void dragEnterEvent(QDragEnterEvent *event);
79 void dropEvent(QDropEvent *event);
81 #endif