KDECore
#include <kcoreconfigskeleton.h>
Public Member Functions | |
| ItemInt (const QString &_group, const QString &_key, qint32 &reference, qint32 defaultValue=0) | |
| bool | isEqual (const QVariant &p) const |
| QVariant | maxValue () const |
| QVariant | minValue () const |
| QVariant | property () const |
| void | readConfig (KConfig *config) |
| void | setMaxValue (qint32) |
| void | setMinValue (qint32) |
| void | setProperty (const QVariant &p) |
Public Member Functions inherited from KConfigSkeletonGenericItem< qint32 > | |
| KConfigSkeletonGenericItem (const QString &_group, const QString &_key, qint32 &reference, qint32 defaultValue) | |
| void | readDefault (KConfig *config) |
| virtual void | setDefault () |
| virtual void | setDefaultValue (const qint32 &v) |
| void | setValue (const qint32 &v) |
| void | swapDefault () |
| qint32 & | value () |
| const qint32 & | value () const |
| virtual void | writeConfig (KConfig *config) |
Public Member Functions inherited from KConfigSkeletonItem | |
| KConfigSkeletonItem (const QString &_group, const QString &_key) | |
| virtual | ~KConfigSkeletonItem () |
| QString | group () const |
| bool | isImmutable () const |
| QString | key () const |
| QString | label () const |
| QString | name () const |
| void | setGroup (const QString &_group) |
| void | setKey (const QString &_key) |
| void | setLabel (const QString &l) |
| void | setName (const QString &_name) |
| void | setToolTip (const QString &t) |
| void | setWhatsThis (const QString &w) |
| QString | toolTip () const |
| QString | whatsThis () const |
Additional Inherited Members | |
Public Types inherited from KConfigSkeletonItem | |
| typedef QHash< QString, KConfigSkeletonItem * > | Dict |
| typedef QHash< QString, KConfigSkeletonItem * >::Iterator | DictIterator |
| typedef QList< KConfigSkeletonItem * > | List |
Protected Member Functions inherited from KConfigSkeletonItem | |
| void | readImmutability (const KConfigGroup &group) |
Protected Attributes inherited from KConfigSkeletonGenericItem< qint32 > | |
| qint32 | mDefault |
| qint32 | mLoadedValue |
| qint32 & | mReference |
Protected Attributes inherited from KConfigSkeletonItem | |
| QString | mGroup |
| QString | mKey |
| QString | mName |
Detailed Description
Class for handling a 32-bit integer preferences item.
Definition at line 520 of file kcoreconfigskeleton.h.
Constructor & Destructor Documentation
◆ ItemInt()
| KCoreConfigSkeleton::ItemInt::ItemInt | ( | const QString & | _group, |
| const QString & | _key, | ||
| qint32 & | reference, | ||
| qint32 | defaultValue = 0 |
||
| ) |
Constructor.
- Parameters
-
_group Config file group. _key Config file key. reference The initial value to hold in the item defaultValue The default value for the item
Definition at line 310 of file kcoreconfigskeleton.cpp.
Member Function Documentation
◆ isEqual()
Check whether the item is equal to p.
Use this function to compare items that use custom types such as KUrl, because QVariant::operator== will not work for those.
- Parameters
-
p QVariant to compare to
- Returns
- true if the item is equal to p, false otherwise
Implements KConfigSkeletonItem.
Definition at line 335 of file kcoreconfigskeleton.cpp.
◆ maxValue()
|
virtual |
Get the maximum value this is allowed to be stored in this item.
Reimplemented from KConfigSkeletonItem.
Definition at line 352 of file kcoreconfigskeleton.cpp.
◆ minValue()
|
virtual |
Get the minimum value that is allowed to be stored in this item.
Reimplemented from KConfigSkeletonItem.
Definition at line 345 of file kcoreconfigskeleton.cpp.
◆ property()
|
virtual |
Return item as property.
Implements KConfigSkeletonItem.
Definition at line 340 of file kcoreconfigskeleton.cpp.
◆ readConfig()
|
virtual |
This function is called by KCoreConfigSkeleton to read the value for this setting from a config file.
Implements KConfigSkeletonItem.
Reimplemented in KCoreConfigSkeleton::ItemEnum.
Definition at line 317 of file kcoreconfigskeleton.cpp.
◆ setMaxValue()
| void KCoreConfigSkeleton::ItemInt::setMaxValue | ( | qint32 | v | ) |
Set the maximum value for the item.
- See also
- maxValue
Definition at line 365 of file kcoreconfigskeleton.cpp.
◆ setMinValue()
| void KCoreConfigSkeleton::ItemInt::setMinValue | ( | qint32 | v | ) |
Set the minimum value for the item.
- See also
- minValue()
Definition at line 359 of file kcoreconfigskeleton.cpp.
◆ setProperty()
|
virtual |
Set item to p.
Implements KConfigSkeletonItem.
Definition at line 330 of file kcoreconfigskeleton.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2020 The KDE developers.
Generated on Sat Jan 18 2020 18:58:54 by doxygen 1.8.15 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.
Public Member Functions inherited from