Scribus
Open source desktop publishing at your fingertips
prefscontext.h
1 /*
2 For general Scribus (>=1.3.2) copyright and licensing information please refer
3 to the COPYING file provided with the program. Following this notice may exist
4 a copyright and/or license notice that predates the release of Scribus 1.3.2
5 for which a new license (GPL+exception) is in place.
6 */
7 /***************************************************************************
8  * Copyright (C) 2004 by Riku Leino *
9  * tsoots@gmail.com *
10  * *
11  * This program is free software; you can redistribute it and/or modify *
12  * it under the terms of the GNU General Public License as published by *
13  * the Free Software Foundation; either version 2 of the License, or *
14  * (at your option) any later version. *
15  * *
16  * This program is distributed in the hope that it will be useful, *
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19  * GNU General Public License for more details. *
20  * *
21  * You should have received a copy of the GNU General Public License *
22  * along with this program; if not, write to the *
23  * Free Software Foundation, Inc., *
24  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
25  ***************************************************************************/
26 
27 #ifndef PREFSCONTEXT_H
28 #define PREFSCONTEXT_H
29 
30 #include <string>
31 #include <QMap>
32 #include <QString>
33 
34 #include "scribusapi.h"
35 #include "prefstable.h"
36 
37 typedef QMap<QString, QString> AttributeMap;
38 typedef QMap<QString, PrefsTable*> TableMap;
39 
40 class SCRIBUS_API PrefsContext
41 {
42 private:
43  QString name;
44  bool isplugin;
45  bool ispersistent;
46 public:
47  AttributeMap values;
48  TableMap tables;
49  PrefsContext();
50  PrefsContext(QString contextName, bool persistent = true, bool plugin = false);
51  ~PrefsContext();
52  QString getName();
53  bool isPersistent();
54  bool isPlugin();
55  bool isEmpty();
56  bool contains(const QString& key);
57  bool containsTable(const QString& key);
58  QString get(const QString& key, const QString& defValue = "");
59  void set(const QString& key, const char* value);
60  void set(const QString& key, const std::string& value);
61  void set(const QString& key, const QString& value);
62  int getInt(const QString& key, int defValue = -1);
63  void set(const QString& key, int value);
64  void set(const QString& key, uint value);
65  uint getUInt(const QString& key, uint defValue = 0);
66  double getDouble(const QString& key, double defValue = -1.0);
67  void set(const QString& key, double value);
68  bool getBool(const QString& key, bool defValue = false);
69  void set(const QString& key, bool value);
70  PrefsTable* getTable(const QString& name);
71  void removeTable(const QString& name);
72 };
73 
74 #endif // PREFSCONTEXTS_H
Definition: prefscontext.h:40
Definition: prefstable.h:40