kde-playground/kdepimlibs/kcalcore/customproperties.h
2015-04-14 21:49:29 +00:00

227 lines
7.2 KiB
C++

/*
This file is part of the kcalcore library.
Copyright (c) 2002,2006,2010 David Jarvie <djarvie@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
/**
@file
This file is part of the API for handling calendar data and
defines the CustomProperties class.
@author David Jarvie \<djarvie@kde.org\>
*/
#ifndef KCALCORE_CUSTOMPROPERTIES_H
#define KCALCORE_CUSTOMPROPERTIES_H
#include "kcalcore_export.h"
#include <QtCore/QMap>
#include <QtCore/QString>
namespace KCalCore {
/**
@brief
A class to manage custom calendar properties.
This class represents custom calendar properties.
It is used as a base class for classes which represent calendar components.
A custom property name written by the kcalcore library has the form X-KDE-APP-KEY
where APP represents the application name, and KEY distinguishes individual
properties for the application.
In keeping with RFC2445, property names must be composed only of the
characters A-Z, a-z, 0-9 and '-'.
*/
class KCALCORE_EXPORT CustomProperties
{
friend KCALCORE_EXPORT QDataStream &operator<<(QDataStream &s,
const KCalCore::CustomProperties &properties);
friend KCALCORE_EXPORT QDataStream &operator>>(QDataStream &s,
KCalCore::CustomProperties &properties);
public:
/**
Constructs an empty custom properties instance.
*/
CustomProperties();
/**
Copy constructor.
@param other is the one to copy.
*/
CustomProperties(const CustomProperties &other);
/**
Destructor.
*/
virtual ~CustomProperties();
/**
Compare this with @p properties for equality.
@param properties is the one to compare.
@warning The comparison is not polymorphic.
*/
bool operator==(const CustomProperties &properties) const;
/**
Create or modify a custom calendar property.
@param app Application name as it appears in the custom property name.
@param key Property identifier specific to the application.
@param value The property's value. A call with a value of QString()
will be ignored.
@see removeCustomProperty().
*/
void setCustomProperty(const QByteArray &app, const QByteArray &key,
const QString &value);
/**
Delete a custom calendar property.
@param app Application name as it appears in the custom property name.
@param key Property identifier specific to the application.
@see setCustomProperty().
*/
void removeCustomProperty(const QByteArray &app, const QByteArray &key);
/**
Return the value of a custom calendar property.
@param app Application name as it appears in the custom property name.
@param key Property identifier specific to the application.
@return Property value, or QString() if (and only if) the property
does not exist.
*/
QString customProperty(const QByteArray &app, const QByteArray &key) const;
/**
Validate and return the full name of a custom calendar property.
@param app Application name as it appears in the custom property name.
@param key Property identifier specific to the application.
@return Full property name, or empty string if it would contain invalid
characters
*/
static QByteArray customPropertyName(const QByteArray &app, const QByteArray &key);
/**
Create or modify a non-KDE or non-standard custom calendar property.
@param name Full property name
@param value The property's value. A call with a value of QString()
will be ignored.
@param parameters The formatted list of parameters for the
property. They should be formatted as RFC specifies, that is,
KEY=VALUE;KEY2=VALUE2. We're mostly concerned about passing them
through as-is albeit they can be of course parsed if need be.
@see removeNonKDECustomProperty().
*/
void setNonKDECustomProperty(const QByteArray &name, const QString &value,
const QString &parameters = QString());
/**
Delete a non-KDE or non-standard custom calendar property.
@param name Full property name
@see setNonKDECustomProperty().
*/
void removeNonKDECustomProperty(const QByteArray &name);
/**
Return the value of a non-KDE or non-standard custom calendar property.
@param name Full property name
@return Property value, or QString() if (and only if) the property
does not exist.
*/
QString nonKDECustomProperty(const QByteArray &name) const;
/**
Return the parameters of a non-KDE or non-standard custom
calendar property.
@param name Full property name
@return The parameters for the given property. Empty string is
returned if none are set.
*/
QString nonKDECustomPropertyParameters(const QByteArray &name) const;
/**
Initialise the alarm's custom calendar properties to the specified
key/value pairs.
@param properties is a QMap of property key/value pairs.
@see customProperties().
*/
void setCustomProperties(const QMap<QByteArray, QString> &properties);
/**
Returns all custom calendar property key/value pairs.
@see setCustomProperties().
*/
QMap<QByteArray, QString> customProperties() const;
/**
Assignment operator.
@warning The assignment is not polymorphic.
@param other is the CustomProperty to assign.
*/
CustomProperties &operator=(const CustomProperties &other);
protected:
/**
Called before a custom property will be changed.
The default implementation does nothing: override in derived classes
to perform change processing.
*/
virtual void customPropertyUpdate();
/**
Called when a custom property has been changed.
The default implementation does nothing: override in derived classes
to perform change processing.
*/
virtual void customPropertyUpdated();
/**
@copydoc
IncidenceBase::virtual_hook()
*/
virtual void virtual_hook(int id, void *data);
private:
//@cond PRIVATE
class Private;
Private *const d;
//@endcond
};
/**
Serializes the @p properties object into the @p stream.
*/
KCALCORE_EXPORT QDataStream &operator<<(QDataStream &stream,
const KCalCore::CustomProperties &properties);
/**
Initializes the @p properties object from the @p stream.
*/
KCALCORE_EXPORT QDataStream &operator>>(QDataStream &stream,
KCalCore::CustomProperties &properties);
}
#endif