summaryrefslogtreecommitdiff
path: root/library/config.h
authorzecke <zecke>2004-12-24 23:05:54 (UTC)
committer zecke <zecke>2004-12-24 23:05:54 (UTC)
commiteb16a7b3d17b0659a7d83900843cef8efb510ceb (patch) (unidiff)
tree7e493f8b38e9e1a3553d4e87fb36a962acd82c5c /library/config.h
parentd36845f5f7e7d6bd49529524cdc9f39ce1164491 (diff)
downloadopie-eb16a7b3d17b0659a7d83900843cef8efb510ceb.zip
opie-eb16a7b3d17b0659a7d83900843cef8efb510ceb.tar.gz
opie-eb16a7b3d17b0659a7d83900843cef8efb510ceb.tar.bz2
Config:
Merged: void writeEntry( const QString &key, const QStringList &lst) QStringList readListEntry( const QString &key ) const void removeGroup() void removeGroup(const QString&) QStringList allGroups() const Uninlined: const versions of read*Entry bool hasGroup ( const QString &gname )const QStringList groupList ( )const Marked these methods as NOT_IN_QPE, NOT_IN_SHARP, QTOPIA_MERGED_METHOD(version) to make them weak by default and to know which functions needs to be defined for possible SHARP.ROM versions
Diffstat (limited to 'library/config.h') (more/less context) (ignore whitespace changes)
-rw-r--r--library/config.h33
1 files changed, 16 insertions, 17 deletions
diff --git a/library/config.h b/library/config.h
index a2f9b2d..29ba0d6 100644
--- a/library/config.h
+++ b/library/config.h
@@ -1,5 +1,5 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2000 Trolltech AS. All rights reserved. 2** Copyright (C) 2000, 2004 Trolltech AS. All rights reserved.
3** 3**
4** This file is part of Qtopia Environment. 4** This file is part of Qtopia Environment.
5** 5**
@@ -23,19 +23,25 @@
23 23
24// ##### could use QSettings with Qt 3.0 24// ##### could use QSettings with Qt 3.0
25 25
26#include <qpe/qpeglobal.h>
27
26#include <qmap.h> 28#include <qmap.h>
27#include <qstringlist.h> 29#include <qstringlist.h>
28 30
31typedef QMap< QString, QString > ConfigGroup;
32typedef QMap< QString, ConfigGroup> ConfigGroupMap;
33
29class ConfigPrivate; 34class ConfigPrivate;
30class Config 35class Config
31{ 36{
32public: 37public:
33 typedef QMap< QString, QString > ConfigGroup;
34 38
35 enum Domain { File, User }; 39 enum Domain { File, User };
36 Config( const QString &name, Domain domain=User ); 40 Config( const QString &name, Domain domain=User );
37 ~Config(); 41 ~Config();
38 42
43 QTOPIA_MERGED_METHOD(static long timeStamp( const QString &name, Domain domain=User ), "2.1");
44
39 bool operator == ( const Config & other ) const { return (filename == other.filename); } 45 bool operator == ( const Config & other ) const { return (filename == other.filename); }
40 bool operator != ( const Config & other ) const { return (filename != other.filename); } 46 bool operator != ( const Config & other ) const { return (filename != other.filename); }
41 47
@@ -43,8 +49,8 @@ public:
43 bool hasKey( const QString &key ) const; 49 bool hasKey( const QString &key ) const;
44 50
45 // inline for better SharpROM BC 51 // inline for better SharpROM BC
46 inline bool hasGroup ( const QString &gname ) const { return ( groups. find ( gname ) != groups. end ( )); }; 52 NOT_IN_QPE(bool hasGroup ( const QString &gname ) const);
47 inline QStringList groupList ( ) const { QStringList sl; for ( QMap< QString, ConfigGroup >::ConstIterator it = groups. begin ( ); it != groups. end ( ); ++it ) { sl << it.key(); } return sl; }; 53 NOT_IN_QPE(QStringList groupList ( ) const);
48 54
49 void setGroup( const QString &gname ); 55 void setGroup( const QString &gname );
50 void writeEntry( const QString &key, const char* value ); 56 void writeEntry( const QString &key, const char* value );
@@ -55,6 +61,8 @@ public:
55 void writeEntry( const QString &key, bool b ); 61 void writeEntry( const QString &key, bool b );
56#endif 62#endif
57 void writeEntry( const QString &key, const QStringList &lst, const QChar &sep ); 63 void writeEntry( const QString &key, const QStringList &lst, const QChar &sep );
64 QTOPIA_MERGED_METHOD(void writeEntry( const QString &key, const QStringList &lst ), "2.1.0");
65
58 void removeEntry( const QString &key ); 66 void removeEntry( const QString &key );
59 67
60 QString readEntry( const QString &key, const QString &deflt = QString::null ) const; 68 QString readEntry( const QString &key, const QString &deflt = QString::null ) const;
@@ -63,6 +71,7 @@ public:
63 int readNumEntry( const QString &key, int deflt = -1 ) const; 71 int readNumEntry( const QString &key, int deflt = -1 ) const;
64 bool readBoolEntry( const QString &key, bool deflt = FALSE ) const; 72 bool readBoolEntry( const QString &key, bool deflt = FALSE ) const;
65 QStringList readListEntry( const QString &key, const QChar &sep ) const; 73 QStringList readListEntry( const QString &key, const QChar &sep ) const;
74 QTOPIA_MERGED_METHOD(QStringList readListEntry( const QString &key ) const, "2.1.0");
66 75
67 // For compatibility, non-const versions. 76 // For compatibility, non-const versions.
68 QString readEntry( const QString &key, const QString &deflt ); 77 QString readEntry( const QString &key, const QString &deflt );
@@ -73,6 +82,9 @@ public:
73 QStringList readListEntry( const QString &key, const QChar &sep ); 82 QStringList readListEntry( const QString &key, const QChar &sep );
74 83
75 void clearGroup(); 84 void clearGroup();
85 QTOPIA_MERGED_METHOD(void removeGroup(), "2.1.0");
86 QTOPIA_MERGED_METHOD(void removeGroup(const QString&), "2.1.0");
87 QTOPIA_MERGED_METHOD(QStringList allGroups() const, "2.1.0");
76 88
77 void write( const QString &fn = QString::null ); 89 void write( const QString &fn = QString::null );
78 90
@@ -93,17 +105,4 @@ private: // Sharp ROM compatibility
93 Config( const QString &name, bool what ); 105 Config( const QString &name, bool what );
94}; 106};
95 107
96inline QString Config::readEntry( const QString &key, const QString &deflt ) const
97{ return ((Config*)this)->readEntry(key,deflt); }
98inline QString Config::readEntryCrypt( const QString &key, const QString &deflt ) const
99{ return ((Config*)this)->readEntryCrypt(key,deflt); }
100inline QString Config::readEntryDirect( const QString &key, const QString &deflt ) const
101{ return ((Config*)this)->readEntryDirect(key,deflt); }
102inline int Config::readNumEntry( const QString &key, int deflt ) const
103{ return ((Config*)this)->readNumEntry(key,deflt); }
104inline bool Config::readBoolEntry( const QString &key, bool deflt ) const
105{ return ((Config*)this)->readBoolEntry(key,deflt); }
106inline QStringList Config::readListEntry( const QString &key, const QChar &sep ) const
107{ return ((Config*)this)->readListEntry(key,sep); }
108
109#endif 108#endif