9686e373bd51dc6da4ccac51fe3f184c96904749
[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 public slots:
46     void saveSettings();
47     void resetCache();
48
49 private slots:
50     void onSourceSelected(unsigned int index, QString const& text, QVariant const& value);
51
52 private:
53     static QList<Source::SourceDetails> sources_;
54     SourceGuiConfig* sourceConfig_;
55     QLineEdit* cacheInput_;
56     ButtonSelector* languageSelector_;
57     ButtonSelector* sourceSelector_;
58     ButtonSelector* autostartSelector_;
59     ConnectionSelector* connectionSelector_;
60     QString currentSource_;
61     QString selectedLanguage_;
62     QTabWidget* tabs_;
63 };
64
65 #endif