...
[jenirok] / src / gui / settingsdialog.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 SETTINGSDIALOG_H
20 #define SETTINGSDIALOG_H
21
22 #include <QtCore/QMap>
23 #include <QtCore/QString>
24 #include <QtCore/QVariant>
25 #include <QtGui/QDialog>
26 #include <QtGui/QWidget>
27 #include <QtGui/QLineEdit>
28 #include <QtGui/QCheckBox>
29 #include <QtGui/QTabWidget>
30 #include <QMaemo5ListPickSelector>
31 #include "source.h"
32
33 class SourceGuiConfig;
34 class ButtonSelector;
35 class ConnectionSelector;
36
37
38 class SettingsDialog : public QDialog
39 {
40     Q_OBJECT
41
42 public:
43     SettingsDialog(QWidget* parent = 0);
44
45 signals:
46     void saved();
47
48 public slots:
49     void saveSettings();
50     void resetCache();
51
52 private slots:
53     void onSourceSelected(unsigned int index, QString const& text, QVariant const& value);
54
55 private:
56     static QList<Source::SourceDetails> sources_;
57     SourceGuiConfig* sourceConfig_;
58     QLineEdit* cacheInput_;
59     ButtonSelector* languageSelector_;
60     ButtonSelector* sourceSelector_;
61     ButtonSelector* autostartSelector_;
62     ConnectionSelector* connectionSelector_;
63     QString currentSource_;
64     QString selectedLanguage_;
65     QTabWidget* tabs_;
66 };
67
68 #endif