|
|
Apply effects to icons.
| |
Construct a KConfig object.
Parameters:
| fileName | A file to parse in addition to the
system-wide file(s). If it is not provided, only global
KDE configuration data will be read (depending on the value of
bUseKDEGlobals).
|
| bReadOnly | Set the config object's read-only status. |
| bUseKDEGlobals | Toggle reading the global KDE configuration file. |
| resType | the place to look in (config, data, etc) See KStandardDirs |
| ~ |
[virtual]
Destructor.
Writes back any dirty configuration entries, and destroys dynamically created objects.
| void |
[virtual]
Clears all entries out of the dirtyEntryMap, so the
values will not be written to disk on a later call to
sync().
Parameters:
| bDeep | If true, the dirty map is actually emptied. otherwise, the config object's global dirty flag is set to false, but the dirty entries remain in the dirty entry map. |
Reimplemented from KConfigBase.
| bool |
[const virtual]
Parameters:
| _pGroup | The group to search for. |
Returns: true if the group exists.
Reimplemented from KConfigBase.
| QStringList |
[const virtual]
Retrieve a list of groups that are known.
Returns: The list of groups.
Reimplemented from KConfigBase.
| bool |
[const virtual]
Reimplemented from KConfigBase.
| QMap<QString, QString> |
[const virtual]
Retrieve a map (tree) of entries for all entries in a particular group.
Only the actual entry string is returned, none of the other internal data should be included.
Parameters:
| pGroup | A group to get keys from. |
Returns: A map of entries in the group specified, indexed by key. The returned map may be empty if the group is not found.
Reimplemented from KConfigBase.
| void |
[virtual]
Clear all internal data structures and then reread configuration information from disk.
Reimplemented from KConfigBase.
| protected: /** * Retrieve a |
[const]
| KEntryMap |
[const virtual]
Returns a copy of the internal map used to hold all entries.
Do not use this function, the implementation / return type are subject to change.
Parameters:
| pGroup | the group to provide a KEntryMap for. |
Returns: The map of the entries in the group.
Reimplemented from KConfigBase.
| void |
[virtual]
Insert a key,value pair into the internal storage mechanism of the configuration object.
Parameters:
| _key | The key to insert. It contains information both on the group of the key and the key itself. If the key already exists, the old value will be replaced. |
| _data | the KEntry that is to be stored. |
Reimplemented from KConfigBase.
| KEntry |
[const virtual]
Look up an entry in the config object's internal structure.
Parameters:
| _key | The key to look up It contains information both on the group of the key and the entry's key itself. |
Returns: the KEntry value (data) found for the key. KEntry.aValue will be the null string if nothing was located.
Reimplemented from KConfigBase.
| bool |
[const virtual]
Overloaded public functions.
Reimplemented from KConfigBase.
| bool |
[const virtual]
Reimplemented from KConfigBase.
| bool |
[const virtual]
Reimplemented from KConfigBase.
| |
copy-construction and assignment are not allowed
| KConfig& |
copy-construction and assignment are not allowed
| void |
[const]
Checks whether the cache is loaded from disk, and loads it if needed. Not actually a const function, so we need to do some internal funny business to get around constness, but needed to be const because of where it is called from (functions that really *should* remain const).
| private slots: /** * attempts to flush the entry cache. Will set isCached * variable to the appropriate value upon completion. */ void |