/usr/include/kcal/resourcelocal.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 | /*
This file is part of the kcal library.
Copyright (c) 1998 Preston Brown <pbrown@kde.org>
Copyright (c) 2001,2003 Cornelius Schumacher <schumacher@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 ResourceLocal class.
@author Preston Brown <pbrown@kde.org>
@author Cornelius Schumacher <schumacher@kde.org>
*/
#ifndef KCAL_RESOURCELOCAL_H
#define KCAL_RESOURCELOCAL_H
#include <QtCore/QString>
#include <kdatetime.h>
#include "kcal_export.h"
#include "resourcecached.h"
namespace KCal {
/**
@brief Provides a calendar resource stored as a local file.
*/
class KCAL_DEPRECATED_EXPORT ResourceLocal : public ResourceCached
{
Q_OBJECT
friend class ResourceLocalConfig;
public:
/**
Constructs a resource using default configuration information.
*/
ResourceLocal();
/**
Constructs a resource from configuration information
stored in a KConfig object.
@param group the configuration group to read the resource configuration from
*/
explicit ResourceLocal( const KConfigGroup &group );
/**
Constructs a resource for file named @p fileName.
@param fileName the file to link to the resource.
*/
explicit ResourceLocal( const QString &fileName );
/**
Destroys the resource.
**/
virtual ~ResourceLocal();
/**
Writes KConfig @p config to a local file.
**/
virtual void writeConfig( KConfigGroup &group );
/**
Returns the lock.
**/
KABC::Lock *lock();
/**
Returns the fileName for this resource.
@see setFileName()
**/
QString fileName() const;
/**
Sets the fileName for this resource. This will be the local
file where the resource data will be stored.
@param fileName the file to use for this resource
@see fileName()
**/
bool setFileName( const QString &fileName );
/**
Sets a value for this resource.
@param key the distinct name for this value.
@param value the actual data for this value.
**/
bool setValue( const QString &key, const QString &value );
/**
Dumps the resource.
**/
void dump() const;
protected Q_SLOTS:
/**
Reload the resource data from the local file.
**/
void reload();
protected:
/**
Actually loads the data from the local file.
**/
virtual bool doLoad( bool syncCache );
/**
Actually saves the data to the local file.
**/
virtual bool doSave( bool syncCache );
/**
@copydoc
ResourceCached::doSave(bool, Incidence*)
*/
virtual bool doSave( bool syncCache, Incidence *incidence );
/**
Called by reload() to reload the resource, if it is already open.
@return true if successful, else false. If true is returned,
reload() will emit a resourceChanged() signal.
@see doLoad(), doSave()
*/
virtual bool doReload();
/**
Returns the date/time the local file was last modified.
@see doSave()
**/
KDateTime readLastModified();
/**
Compares this ResourceLocal and @p other for equality.
Returns true if they are equal.
@param other the instance to compare with
**/
bool operator==( const ResourceLocal &other );
/**
Sets this ResourceLocal equal to @p other.
**/
ResourceLocal &operator=( const ResourceLocal &other );
private:
// Inherited virtual methods which should not be used by derived classes.
using ResourceCalendar::doLoad;
using ResourceCalendar::doSave;
void init();
//@cond PRIVATE
class Private;
Private *const d;
//@endcond
};
}
#endif
|