summaryrefslogtreecommitdiff
authorsandman <sandman>2002-12-22 16:43:55 (UTC)
committer sandman <sandman>2002-12-22 16:43:55 (UTC)
commit5377a2c897ae67ec2cd0cf8e57da9037366efe67 (patch) (unidiff)
treecdfcb13df87ead22407425b2b4172a1494c4bfe9
parentf86b3c6613548c9f59019892233f5f90a17d472c (diff)
downloadopie-5377a2c897ae67ec2cd0cf8e57da9037366efe67.zip
opie-5377a2c897ae67ec2cd0cf8e57da9037366efe67.tar.gz
opie-5377a2c897ae67ec2cd0cf8e57da9037366efe67.tar.bz2
added a funtion to check the presence of a group in a config file -- if you
setGroup() to a non-existing group this group gets created and the config file is rewritten with an empty group, which is not needed in most cases.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/config.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/library/config.h b/library/config.h
index 0bab7ca..c908fea 100644
--- a/library/config.h
+++ b/library/config.h
@@ -12,64 +12,67 @@
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14** See http://www.trolltech.com/gpl/ for GPL licensing information. 14** See http://www.trolltech.com/gpl/ for GPL licensing information.
15** 15**
16** Contact info@trolltech.com if any conditions of this licensing are 16** Contact info@trolltech.com if any conditions of this licensing are
17** not clear to you. 17** not clear to you.
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#ifndef CONFIG_H 21#ifndef CONFIG_H
22#define CONFIG_H 22#define CONFIG_H
23 23
24// ##### could use QSettings with Qt 3.0 24// ##### could use QSettings with Qt 3.0
25 25
26#include <qmap.h> 26#include <qmap.h>
27#include <qstringlist.h> 27#include <qstringlist.h>
28 28
29class ConfigPrivate; 29class ConfigPrivate;
30class Config 30class Config
31{ 31{
32public: 32public:
33 typedef QMap< QString, QString > ConfigGroup; 33 typedef QMap< QString, QString > ConfigGroup;
34 34
35 enum Domain { File, User }; 35 enum Domain { File, User };
36 Config( const QString &name, Domain domain=User ); 36 Config( const QString &name, Domain domain=User );
37 ~Config(); 37 ~Config();
38 38
39 bool operator == ( const Config & other ) const { return (filename == other.filename); } 39 bool operator == ( const Config & other ) const { return (filename == other.filename); }
40 bool operator != ( const Config & other ) const { return (filename != other.filename); } 40 bool operator != ( const Config & other ) const { return (filename != other.filename); }
41 41
42 bool isValid() const; 42 bool isValid() const;
43 bool hasKey( const QString &key ) const; 43 bool hasKey( const QString &key ) const;
44
45 // inline for better SharpROM BC
46 inline bool hasGroup ( const QString &gname ) const { return ( groups. find ( gname ) != groups. end ( )); };
44 47
45 void setGroup( const QString &gname ); 48 void setGroup( const QString &gname );
46 void writeEntry( const QString &key, const char* value ); 49 void writeEntry( const QString &key, const char* value );
47 void writeEntry( const QString &key, const QString &value ); 50 void writeEntry( const QString &key, const QString &value );
48 void writeEntryCrypt( const QString &key, const QString &value ); 51 void writeEntryCrypt( const QString &key, const QString &value );
49 void writeEntry( const QString &key, int num ); 52 void writeEntry( const QString &key, int num );
50#ifdef Q_HAS_BOOL_TYPE 53#ifdef Q_HAS_BOOL_TYPE
51 void writeEntry( const QString &key, bool b ); 54 void writeEntry( const QString &key, bool b );
52#endif 55#endif
53 void writeEntry( const QString &key, const QStringList &lst, const QChar &sep ); 56 void writeEntry( const QString &key, const QStringList &lst, const QChar &sep );
54 void removeEntry( const QString &key ); 57 void removeEntry( const QString &key );
55 58
56 QString readEntry( const QString &key, const QString &deflt = QString::null ) const; 59 QString readEntry( const QString &key, const QString &deflt = QString::null ) const;
57 QString readEntryCrypt( const QString &key, const QString &deflt = QString::null ) const; 60 QString readEntryCrypt( const QString &key, const QString &deflt = QString::null ) const;
58 QString readEntryDirect( const QString &key, const QString &deflt = QString::null ) const; 61 QString readEntryDirect( const QString &key, const QString &deflt = QString::null ) const;
59 int readNumEntry( const QString &key, int deflt = -1 ) const; 62 int readNumEntry( const QString &key, int deflt = -1 ) const;
60 bool readBoolEntry( const QString &key, bool deflt = FALSE ) const; 63 bool readBoolEntry( const QString &key, bool deflt = FALSE ) const;
61 QStringList readListEntry( const QString &key, const QChar &sep ) const; 64 QStringList readListEntry( const QString &key, const QChar &sep ) const;
62 65
63 // For compatibility, non-const versions. 66 // For compatibility, non-const versions.
64 QString readEntry( const QString &key, const QString &deflt ); 67 QString readEntry( const QString &key, const QString &deflt );
65 QString readEntryCrypt( const QString &key, const QString &deflt ); 68 QString readEntryCrypt( const QString &key, const QString &deflt );
66 QString readEntryDirect( const QString &key, const QString &deflt ); 69 QString readEntryDirect( const QString &key, const QString &deflt );
67 int readNumEntry( const QString &key, int deflt ); 70 int readNumEntry( const QString &key, int deflt );
68 bool readBoolEntry( const QString &key, bool deflt ); 71 bool readBoolEntry( const QString &key, bool deflt );
69 QStringList readListEntry( const QString &key, const QChar &sep ); 72 QStringList readListEntry( const QString &key, const QChar &sep );
70 73
71 void clearGroup(); 74 void clearGroup();
72 75
73 void write( const QString &fn = QString::null ); 76 void write( const QString &fn = QString::null );
74 77
75protected: 78protected: