Some fixes to connection manager.
[jenirok] / src / common / settings.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 SETTINGS_H
20 #define SETTINGS_H
21
22 #include <QtCore/QString>
23 #include <QtCore/QList>
24 #include <QtCore/QMap>
25 #include <QtGui/QApplication>
26
27 class Settings;
28
29 class Settings
30 {
31     Q_DECLARE_TR_FUNCTIONS(Settings)
32
33 public:
34
35     enum ConnectionType {ALWAYS_ASK, WLAN, GPRS, ANY};
36
37     struct Language
38     {
39         QString name;
40         QString id;
41     };
42
43     static Settings* instance();
44     static void getLanguages(QList<Language>& languages);
45     ~Settings();
46     static void close();
47     void startEdit();
48     void endEdit();
49     void loadLanguage(QApplication& app);
50     bool set(QString const& name, QString const& value);
51     QString get(QString const& name);
52     QString getDefaultValue(QString const& name);
53     ConnectionType getConnectionType();
54     bool reset();
55
56 private:
57     Settings();
58     static Settings* instance_;
59     QMap<QString, QString> settings_;
60     bool editing_;
61
62 };
63
64 #endif
65