1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
|
//
// Copyright 2006 Jim Bublitz <jbublitz@nwinternet.com>
// Earlier copyrights 1998 - 2005 Jim Bublitz and/or Phil Thompson
// may also apply
// Generated by preSip
// module tdecore version KDE 3.5.3
// This software is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of
// the License, or (at your option) any later version.
//
// This software is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public
// License along with this library; see the file COPYING.
// If not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
%ModuleHeaderCode
typedef long long longlong;
typedef unsigned long long ulonglong;
%End
class TDEConfigBase : TQObject
{
%TypeHeaderCode
#include <tdeconfigbase.h>
%End
public:
TDEConfigBase ();
void setGroup (const TQString&);
void setDesktopGroup ();
TQString group () const;
bool hasGroup (const TQString&) const;
virtual TQStringList groupList () const = 0;
TQString locale () const;
TQString readEntry (const TQString&, const TQString& = TQString ::null ) const;
TQString readEntry (const char*, const TQString& = TQString ::null ) const;
TQVariant readPropertyEntry (const TQString&, TQVariant::Type) const;
TQVariant readPropertyEntry (const char*, TQVariant::Type) const;
TQVariant readPropertyEntry (const TQString&, const TQVariant&) const;
TQVariant readPropertyEntry (const char*, const TQVariant&) const;
int readListEntry (const TQString&, TQStrList&, char = ',') const;
int readListEntry (const char*, TQStrList&, char = ',') const;
TQStringList readListEntry (const TQString&, char = ',') const;
TQStringList readListEntry (const char*, char = ',') const;
%If ( KDE_3_3_0 - )
TQStringList readListEntry (const char*, const TQStringList&, char = ',') const;
%End
TQValueList<int> readIntListEntry (const TQString&) const;
TQValueList<int> readIntListEntry (const char*) const;
TQString readPathEntry (const TQString&, const TQString& = TQString ::null ) const;
TQString readPathEntry (const char*, const TQString& = TQString ::null ) const;
%If ( KDE_3_1_3 - )
TQStringList readPathListEntry (const TQString&, char = ',') const;
TQStringList readPathListEntry (const char*, char = ',') const;
%End
int readNumEntry (const TQString&, int = 0) const;
int readNumEntry (const char*, int = 0) const;
uint readUnsignedNumEntry (const TQString&, uint = 0) const;
uint readUnsignedNumEntry (const char*, uint = 0) const;
long readLongNumEntry (const TQString&, long = 0) const;
long readLongNumEntry (const char*, long = 0) const;
ulong readUnsignedLongNumEntry (const TQString&, ulong = 0) const;
ulong readUnsignedLongNumEntry (const char*, ulong = 0) const;
%If ( KDE_3_2_0 - )
longlong readNum64Entry (const TQString&, longlong = 0) const;
longlong readNum64Entry (const char*, longlong = 0) const;
ulonglong readUnsignedNum64Entry (const TQString&, ulonglong = 0) const;
ulonglong readUnsignedNum64Entry (const char*, ulonglong = 0) const;
%End
double readDoubleNumEntry (const TQString&, double = 0.0) const;
double readDoubleNumEntry (const char*, double = 0.0) const;
TQFont readFontEntry (const TQString&, const TQFont* = 0) const;
TQFont readFontEntry (const char*, const TQFont* = 0) const;
bool readBoolEntry (const TQString&, const bool = 0) const;
bool readBoolEntry (const char*, const bool = 0) const;
TQRect readRectEntry (const TQString&, const TQRect* = 0) const;
TQRect readRectEntry (const char*, const TQRect* = 0) const;
TQPoint readPointEntry (const TQString&, const TQPoint* = 0) const;
TQPoint readPointEntry (const char*, const TQPoint* = 0) const;
TQSize readSizeEntry (const TQString&, const TQSize* = 0) const;
TQSize readSizeEntry (const char*, const TQSize* = 0) const;
TQColor readColorEntry (const TQString&, const TQColor* = 0) const;
TQColor readColorEntry (const char*, const TQColor* = 0) const;
TQDateTime readDateTimeEntry (const TQString&, const TQDateTime* = 0) const;
TQDateTime readDateTimeEntry (const char*, const TQDateTime* = 0) const;
TQString readEntryUntranslated (const TQString&, const TQString& = TQString ::null ) const;
TQString readEntryUntranslated (const char*, const TQString& = TQString ::null ) const;
void writeEntry (const TQString&, const TQString&, bool = 1, bool = 0, bool = 0);
void writeEntry (const char*, const TQString&, bool = 1, bool = 0, bool = 0);
void writeEntry (const TQString&, const TQVariant&, bool = 1, bool = 0, bool = 0);
void writeEntry (const char*, const TQVariant&, bool = 1, bool = 0, bool = 0);
void writeEntry (const TQString&, const TQStrList&, char = ',', bool = 1, bool = 0, bool = 0);
void writeEntry (const char*, const TQStrList&, char = ',', bool = 1, bool = 0, bool = 0);
void writeEntry (const TQString&, const TQStringList&, char = ',', bool = 1, bool = 0, bool = 0);
void writeEntry (const char*, const TQStringList&, char = ',', bool = 1, bool = 0, bool = 0);
void writeEntry (const TQString&, const TQValueList<int>&, bool = 1, bool = 0, bool = 0);
void writeEntry (const char*, const TQValueList<int>&, bool = 1, bool = 0, bool = 0);
void writeEntry (const TQString&, const char*, bool = 1, bool = 0, bool = 0);
void writeEntry (const char*, const char*, bool = 1, bool = 0, bool = 0);
void writeEntry (const TQString&, int, bool = 1, bool = 0, bool = 0);
void writeEntry (const char*, int, bool = 1, bool = 0, bool = 0);
%If ( KDE_3_2_0 - )
void writeEntry (const TQString&, longlong, bool = 1, bool = 0, bool = 0);
void writeEntry (const char*, longlong, bool = 1, bool = 0, bool = 0);
void writeEntry (const TQString&, ulonglong, bool = 1, bool = 0, bool = 0);
void writeEntry (const char*, ulonglong, bool = 1, bool = 0, bool = 0);
%End
//ig void writeEntry (const TQString&, double, bool = 1, bool = 0, char = 'g', int = 6, bool = 0);
//ig void writeEntry (const char*, double, bool = 1, bool = 0, char = 'g', int = 6, bool = 0);
void writeEntry (const TQString&, const TQFont&, bool = 1, bool = 0, bool = 0);
void writeEntry (const char*, const TQFont&, bool = 1, bool = 0, bool = 0);
void writeEntry (const TQString&, const TQColor&, bool = 1, bool = 0, bool = 0);
void writeEntry (const char*, const TQColor&, bool = 1, bool = 0, bool = 0);
void writeEntry (const TQString&, const TQDateTime&, bool = 1, bool = 0, bool = 0);
void writeEntry (const char*, const TQDateTime&, bool = 1, bool = 0, bool = 0);
void writeEntry (const TQString&, const TQRect&, bool = 1, bool = 0, bool = 0);
void writeEntry (const char*, const TQRect&, bool = 1, bool = 0, bool = 0);
void writeEntry (const TQString&, const TQPoint&, bool = 1, bool = 0, bool = 0);
void writeEntry (const char*, const TQPoint&, bool = 1, bool = 0, bool = 0);
void writeEntry (const TQString&, const TQSize&, bool = 1, bool = 0, bool = 0);
void writeEntry (const char*, const TQSize&, bool = 1, bool = 0, bool = 0);
void writePathEntry (const TQString&, const TQString&, bool = 1, bool = 0, bool = 0);
void writePathEntry (const char*, const TQString&, bool = 1, bool = 0, bool = 0);
%If ( KDE_3_1_3 - )
void writePathEntry (const TQString&, const TQStringList&, char = ',', bool = 1, bool = 0, bool = 0);
void writePathEntry (const char*, const TQStringList&, char = ',', bool = 1, bool = 0, bool = 0);
%End
void deleteEntry (const TQString&, bool = 0, bool = 0);
void deleteEntry (const char*, bool = 0, bool = 0);
bool deleteGroup (const TQString&, bool = 1, bool = 0);
void setDollarExpansion (bool = 1);
bool isDollarExpansion () const;
virtual void rollback (bool = 1);
virtual void sync ();
bool isDirty () const;
virtual void setReadOnly (bool);
bool isReadOnly () const;
bool hasKey (const TQString&) const;
virtual TQMap<TQString,TQString> entryMap (const TQString&) const = 0;
virtual void reparseConfiguration () = 0;
bool isImmutable () const;
bool groupIsImmutable (const TQString&) const;
bool entryIsImmutable (const TQString&) const;
enum ConfigState
{
NoAccess,
ReadOnly,
ReadWrite
};
ConfigState getConfigState () const;
%If ( KDE_3_2_0 - )
bool checkConfigFilesWritable (bool);
void setReadDefaults (bool);
bool readDefaults () const;
void revertToDefault (const TQString&);
bool hasDefault (const TQString&) const;
%End
protected:
void setLocale ();
virtual void setDirty (bool = 1);
virtual void parseConfigFiles ();
virtual KEntryMap internalEntryMap (const TQString&) const = 0;
virtual KEntryMap internalEntryMap () const = 0;
virtual void putData (const KEntryKey&, const KEntry&, bool = 1) = 0;
virtual KEntry lookupData (const KEntryKey&) const = 0;
virtual bool internalHasGroup (const TQCString&) const = 0;
public:
void setGroup (const TQCString&);
void setGroup (const char*);
bool hasGroup (const TQCString&) const;
bool hasGroup (const char*) const;
bool hasKey (const char*) const;
protected:
TQCString readEntryUtf8 (const char*) const;
protected:
//igx virtual void virtual_hook (int, void*);
}; // class TDEConfigBase
class TDEConfigGroupSaver
{
%TypeHeaderCode
#include <tdeconfigbase.h>
%End
public:
TDEConfigGroupSaver (TDEConfigBase*, TQString);
TDEConfigGroupSaver (TDEConfigBase*, const char*);
TDEConfigGroupSaver (TDEConfigBase*, const TQCString&);
TDEConfigBase* config ();
private:
TDEConfigGroupSaver (const TDEConfigGroupSaver&);
}; // class TDEConfigGroupSaver
class TDEConfigGroup : TDEConfigBase
{
%TypeHeaderCode
#include <tdeconfigbase.h>
%End
public:
TDEConfigGroup (TDEConfigBase*, const TQCString&);
TDEConfigGroup (TDEConfigBase*, const TQString&);
TDEConfigGroup (TDEConfigBase*, const char*);
void deleteGroup (bool = 0);
%If ( KDE_3_4_0 - )
bool groupIsImmutable () const;
%End
virtual void setDirty (bool);
virtual void putData (const KEntryKey&, const KEntry&, bool = 1);
virtual KEntry lookupData (const KEntryKey&) const;
virtual void sync ();
protected:
//igx virtual void virtual_hook (int, void*);
}; // class TDEConfigGroup
%MappedType longlong
//converts a Python long
{
%TypeHeaderCode
#if PY_MAJOR_VERSION >= 2 && PY_MINOR_VERSION >= 3
#define LONG_LONG PY_LONG_LONG
#endif
%End
%ConvertFromTypeCode
if (!sipCpp)
Py_INCREF (Py_None);
return Py_None;
// PyObject *LongLong;
return PyLong_FromLongLong (*(LONG_LONG *)sipCpp);
%End
%ConvertToTypeCode
if (sipIsErr == NULL)
return PyLong_Check (sipPy);
long long *ll = new long long;
*ll = 0;
if (PyLong_Check (sipPy))
*ll = PyLong_AsLongLong (sipPy);
*sipCppPtr = ll;
return 1;
%End
};
%MappedType ulonglong
//converts a Python long
{
%TypeHeaderCode
#if PY_MAJOR_VERSION >= 2 && PY_MINOR_VERSION >= 3
#define LONG_LONG PY_LONG_LONG
#endif
%End
%ConvertFromTypeCode
if (!sipCpp)
Py_INCREF (Py_None);
return Py_None;
return PyLong_FromUnsignedLongLong (*(LONG_LONG *)sipCpp);
%End
%ConvertToTypeCode
if (sipIsErr == NULL)
return PyLong_Check (sipPy);
unsigned long long *ul = new unsigned long long;
*ul = 0;
if (PyLong_Check (sipPy))
*ul = PyLong_AsUnsignedLongLong (sipPy);
*sipCppPtr = ul;
return 1;
%End
};
|