Rewrite readme with better howto-use instructions.
[abby.git] / src / mainwnd.h
blob092d8618b8910e14eeaf947d6f174fc77e2e59ee
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 versionOutput;
65 QString ccliveVersion;
66 QString curlMod;
67 QString curlVersion;
68 private:
69 void addPageLink(QString lnk);
70 void writeSettings();
71 void readSettings();
72 void updateLog(const QString& text);
73 void updateWidgets(const bool updateCcliveDepends);
74 void setProxy();
75 bool ccliveSupportsFeature(const QString& buildOption);
76 bool ccliveSupportsHost(const QString &lnk);
77 bool parseCcliveHostsOutput();
78 void parseCcliveVersionOutput();
79 protected:
80 void closeEvent(QCloseEvent *event);
82 #endif