akonadi
Akonadi::CollectionQuotaAttribute Class Reference
Attribute that provides quota information for a collection. More...
#include <collectionquotaattribute.h>

Public Member Functions | |
| CollectionQuotaAttribute (qint64 currentValue, qint64 maxValue) | |
| CollectionQuotaAttribute () | |
| ~CollectionQuotaAttribute () | |
| virtual Attribute * | clone () const |
| qint64 | currentValue () const |
| virtual void | deserialize (const QByteArray &data) |
| qint64 | maximumValue () const |
| virtual QByteArray | serialized () const |
| void | setCurrentValue (qint64 value) |
| void | setMaximumValue (qint64 value) |
| virtual QByteArray | type () const |
Detailed Description
Attribute that provides quota information for a collection.
This attribute class provides quota information (e.g. current fill value and maximum fill value) for an Akonadi collection.
Example:
using namespace Akonadi; const Collection collection = collectionFetchJob->collections().first(); if ( collection.hasAttribute<CollectionQuotaAttribute>() ) { const CollectionQuotaAttribute *attribute = collection.attribute<CollectionQuotaAttribute>(); qDebug() << "current value" << attribute->currentValue(); }
- Since:
- 4.4
Definition at line 50 of file collectionquotaattribute.h.
Constructor & Destructor Documentation
| CollectionQuotaAttribute::CollectionQuotaAttribute | ( | ) |
Creates a new collection quota attribute.
Definition at line 38 of file collectionquotaattribute.cpp.
| CollectionQuotaAttribute::CollectionQuotaAttribute | ( | qint64 | currentValue, | |
| qint64 | maxValue | |||
| ) |
Creates a new collection quota attribute with initial values.
- Parameters:
-
currentValue The current quota value in bytes. maxValue The maximum quota value in bytes.
Definition at line 43 of file collectionquotaattribute.cpp.
| CollectionQuotaAttribute::~CollectionQuotaAttribute | ( | ) |
Destroys the collection quota attribute.
Definition at line 48 of file collectionquotaattribute.cpp.
Member Function Documentation
| Akonadi::Attribute * CollectionQuotaAttribute::clone | ( | ) | const [virtual] |
Creates a copy of this attribute.
Implements Akonadi::Attribute.
Definition at line 78 of file collectionquotaattribute.cpp.
| qint64 CollectionQuotaAttribute::currentValue | ( | ) | const |
Returns the current quota value in bytes.
Definition at line 63 of file collectionquotaattribute.cpp.
| void CollectionQuotaAttribute::deserialize | ( | const QByteArray & | data | ) | [virtual] |
Sets the data of this attribute, using the same encoding as returned by toByteArray().
- Parameters:
-
data The encoded attribute data.
Implements Akonadi::Attribute.
Definition at line 90 of file collectionquotaattribute.cpp.
| qint64 CollectionQuotaAttribute::maximumValue | ( | ) | const |
Returns the maximum quota value in bytes.
Definition at line 68 of file collectionquotaattribute.cpp.
| QByteArray CollectionQuotaAttribute::serialized | ( | ) | const [virtual] |
Returns a QByteArray representation of the attribute which will be storaged.
This can be raw binary data, no encoding needs to be applied.
Implements Akonadi::Attribute.
Definition at line 83 of file collectionquotaattribute.cpp.
| void CollectionQuotaAttribute::setCurrentValue | ( | qint64 | value | ) |
Sets the current quota value for the collection.
- Parameters:
-
value The current quota value in bytes.
Definition at line 53 of file collectionquotaattribute.cpp.
| void CollectionQuotaAttribute::setMaximumValue | ( | qint64 | value | ) |
Sets the maximum quota value for the collection.
- Parameters:
-
value The maximum quota value in bytes.
Definition at line 58 of file collectionquotaattribute.cpp.
| QByteArray CollectionQuotaAttribute::type | ( | ) | const [virtual] |
Returns the type of the attribute.
Implements Akonadi::Attribute.
Definition at line 73 of file collectionquotaattribute.cpp.
The documentation for this class was generated from the following files:
KDE 4.4 API Reference