/usr/include/kcal/customproperties.h is in kdepimlibs5-dev 4:4.13.0-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
This file is part of the kcal 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 KCAL_CUSTOMPROPERTIES_H
#define KCAL_CUSTOMPROPERTIES_H
#include "kcal_export.h"
#include <QtCore/QString>
#include <QtCore/QMap>
#include <QtCore/QByteArray>
namespace KCal {
/**
@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 kcal 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 KCAL_DEPRECATED_EXPORT CustomProperties
{
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.
*/
// KDE5: make protected to prevent accidental usage
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
@since 4.5
*/
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.
@see removeNonKDECustomProperty().
*/
void setNonKDECustomProperty( const QByteArray &name, const QString &value );
/**
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;
/**
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.
*/
// KDE5: make protected to prevent accidental usage
CustomProperties &operator=( const CustomProperties &other );
protected:
/**
Called when a custom property has been changed.
The default implementation does nothing: override in derived classes
to perform change processing.
*/
virtual void customPropertyUpdated() {}
private:
//@cond PRIVATE
class Private;
Private *const d;
//@endcond
};
}
#endif
|