Update Finnish translation
[nomnom.git] / src / settings / nsettingsmutator.h
blob739773ece726093c0499584b8837576eda1bddf8
1 /* NomNom
2 * Copyright (C) 2011 Toni Gundogdu <legatvs@gmail.com>
4 * This program 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.
9 * This program 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.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 #ifndef nsettingsmutator_h
19 #define nsettingsmutator_h
21 #include <QVariant>
22 #include <QHash>
24 #include <NSettings>
26 #define NSETTINGS_CMDPATH_SEPARATOR "^"
28 namespace nn
31 class NSettingsMutator
33 public:
34 QVariant eitherValue(SettingKey, SettingKey) const;
35 void setValue(SettingKey, const QVariant&);
36 QVariant value(SettingKey) const;
37 public:
38 static SettingKey toKey(const QString&);
39 static QString toString(SettingKey);
40 public:
41 void write();
42 void read();
43 private:
44 QHash<SettingKey,QVariant> values;
47 } // namespace nn
49 #endif
51 /* vim: set ts=2 sw=2 tw=72 expandtab: */