Some fixes to connection manager.
[jenirok] / src / gui / mainwindow.h
1 /*
2  * This file is part of Jenirok.
3  *
4  * Jenirok is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * Jenirok is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with Jenirok.  If not, see <http://www.gnu.org/licenses/>.
16  *
17  */
18
19 #ifndef MAINWINDOW_H
20 #define MAINWINDOW_H
21
22 #include <QtCore/QString>
23 #include <QtGui/QMainWindow>
24 #include <QtGui/QToolButton>
25 #include <QtGui/QListWidget>
26 #include "searchdialog.h"
27 #include "settingsdialog.h"
28 #include "aboutdialog.h"
29 #include "source.h"
30 #include "logwindow.h"
31
32 class MainWindow : public QMainWindow
33 {
34     Q_OBJECT
35
36 public:
37     MainWindow(QWidget* parent = 0);
38     ~MainWindow();
39
40 signals:
41     void search(SearchDialog::SearchDetails& details);
42     void logItemSelected(Source::Result const& result);
43
44 public slots:
45     void showSettings();
46     void showAbout();
47     void toggleDaemon();
48     void openSearch(QString const& str = QString());
49     void openLog();
50
51 private:
52     QToolButton* createButton(QString const& text);
53     QListWidget* searchResults_;
54     SettingsDialog* settingsDialog_;
55     bool running_;
56     QToolButton* toggleButton_;
57     SearchDialog* searchDialog_;
58     AboutDialog* aboutDialog_;
59     QDialog* warning_;
60     LogWindow* logWindow_;
61
62 };
63
64 #endif