Change: use QUrl for setting proxy.
[abby.git] / src / mainwnd.h
blob5bc708447f91091f8e043983109be59267a1b0e6
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 class MainWindow : public QMainWindow, private Ui::MainWindow {
32 Q_OBJECT
33 public:
34 MainWindow();
35 private slots:
36 void onPreferences();
37 void onStart();
38 void onCancel();
39 void onAbout();
40 void onStreamStateChanged(int state);
41 void onRSS();
42 void onScan();
43 void onPasteURL();
44 void onAdd();
45 void onRemove();
46 void onFormats();
47 void onProcStarted();
48 void onProcError(QProcess::ProcessError);
49 void onProcStdoutReady();
50 void onProcFinished(int exitCode, QProcess::ExitStatus exitStatus);
51 private:
52 QStringList hostsOutput;
53 PreferencesDialog *prefs;
54 RSSDialog *rss;
55 ScanDialog *scan;
56 FormatDialog *format;
57 QProcess process;
58 bool cancelled;
59 bool errorOccurred;
60 QString ccliveVersion;
61 QString curlVersion;
62 private:
63 void addPageLink(QString lnk);
64 void writeSettings();
65 void readSettings();
66 void updateLog(const QString& text);
67 void updateWidgets(const bool updateCcliveDepends);
68 void setProxy();
69 bool isCclive(QString& output);
70 bool ccliveSupportsFeature(const QString& buildOption);
71 bool ccliveSupportsHost(const QString &lnk);
72 void parseCcliveHostsOutput();
73 protected:
74 void closeEvent(QCloseEvent *event);
76 #endif