Add: Clear list (button +menu item). Tweak: status msgs.
[abby.git] / src / mainwnd.h
blob40311cff7554e2ec57fae11f001341df5b36bd59
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 onClear();
47 void onFormats();
48 void onProcStarted();
49 void onProcError(QProcess::ProcessError);
50 void onProcStdoutReady();
51 void onProcFinished(int exitCode, QProcess::ExitStatus exitStatus);
52 private:
53 QStringList hostsOutput;
54 PreferencesDialog *prefs;
55 RSSDialog *rss;
56 ScanDialog *scan;
57 FormatDialog *format;
58 QProcess process;
59 bool cancelled;
60 bool errorOccurred;
61 QString ccliveVersion;
62 QString curlVersion;
63 private:
64 void addPageLink(QString lnk);
65 void writeSettings();
66 void readSettings();
67 void updateLog(const QString& text);
68 void updateWidgets(const bool updateCcliveDepends);
69 void setProxy();
70 bool isCclive(QString& output);
71 bool ccliveSupportsFeature(const QString& buildOption);
72 bool ccliveSupportsHost(const QString &lnk);
73 void parseCcliveHostsOutput();
74 bool checkCclivePath();
75 protected:
76 void closeEvent(QCloseEvent *event);
78 #endif