Rev 12155 | Rev 20691 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
4430 | cbradney | 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 | */ |
||
415 | Franz | 7 | /*************************************************************************** |
8 | * Copyright (C) 2004 by Riku Leino * |
||
1184 | tsoots | 9 | * tsoots@gmail.com * |
415 | Franz | 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., * |
||
18122 | mrdocs | 24 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * |
415 | Franz | 25 | ***************************************************************************/ |
26 | |||
27 | #ifndef PREFSFILE_H |
||
28 | #define PREFSFILE_H |
||
29 | |||
10223 | cbradney | 30 | #include <QMap> |
10004 | fschmid | 31 | #include <QTextStream> |
2969 | craig | 32 | |
33 | #include "scribusapi.h" |
||
415 | Franz | 34 | #include "prefscontext.h" |
35 | |||
36 | typedef QMap<QString, PrefsContext*> ContextMap; |
||
37 | |||
2969 | craig | 38 | class SCRIBUS_API PrefsFile |
415 | Franz | 39 | { |
40 | private: |
||
41 | QString prefsFilePath; |
||
42 | ContextMap contexts; |
||
43 | ContextMap pluginContexts; |
||
11763 | cbradney | 44 | ContextMap userprefsContexts; |
415 | Franz | 45 | bool ioEnabled; |
46 | void load(); |
||
47 | QString replaceIllegalChars(const QString& text); |
||
10004 | fschmid | 48 | void writeContexts(ContextMap* contextMap, QTextStream& stream); |
418 | Franz | 49 | void canWrite(); |
415 | Franz | 50 | public: |
51 | PrefsFile(); |
||
418 | Franz | 52 | PrefsFile(const QString& pFilePath, bool write = true); |
415 | Franz | 53 | ~PrefsFile(); |
12155 | cbradney | 54 | bool hasContext(const QString& contextName) const; |
415 | Franz | 55 | PrefsContext* getContext(const QString& contextName, bool persistent = true); |
56 | PrefsContext* getPluginContext(const QString& contextName, bool persistent = true); |
||
11763 | cbradney | 57 | PrefsContext* getUserPrefsContext(const QString& contextName, bool persistent = true); |
415 | Franz | 58 | void write(); |
59 | }; |
||
60 | |||
61 | #endif // PREFSFILE_H |