/usr/include/kcal/icaltimezones.h is in kdepimlibs5-dev 4:4.14.10-1ubuntu2.
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 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 | /*
This file is part of the kcal library.
Copyright (c) 2005-2007 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.
*/
#ifndef KCAL_ICALTIMEZONES_H
#define KCAL_ICALTIMEZONES_H
#include <ktimezone.h>
#include "kcal_export.h"
#ifndef ICALCOMPONENT_H
typedef struct icalcomponent_impl icalcomponent;
#endif
#ifndef ICALTIMEZONE_DEFINED
#define ICALTIMEZONE_DEFINED
typedef struct _icaltimezone icaltimezone;
#endif
namespace KCal {
class ICalTimeZone;
class ICalTimeZoneSource;
class ICalTimeZoneData;
class ICalTimeZonesPrivate;
class ICalTimeZonePrivate;
class ICalTimeZoneSourcePrivate;
class ICalTimeZoneDataPrivate;
/**
* The ICalTimeZones class represents a time zone database which consists of a
* collection of individual iCalendar time zone definitions.
*
* Each individual time zone is defined in a ICalTimeZone instance. The time zones in the
* collection are indexed by name, which must be unique within the collection.
*
* Different calendars could define the same time zone differently. As a result,
* to avoid conflicting definitions, each calendar should normally have its own
* ICalTimeZones collection.
*
* This class is analogous to KTimeZones, but holds ICalTimeZone instances
* rather than generic KTimeZone instances.
*
* @short Represents a collection of iCalendar time zones
* @author David Jarvie <software@astrojar.org.uk>.
*/
class KCAL_DEPRECATED_EXPORT ICalTimeZones
{
public:
/**
* Constructs an empty time zone collection.
*/
ICalTimeZones();
/**
* Destructor.
*/
~ICalTimeZones();
/**
* Returns the time zone with the given name.
* Note that the ICalTimeZone returned remains a member of the ICalTimeZones
* collection, and should not be deleted without calling remove() first.
*
* @param name name of time zone
* @return time zone, or invalid if not found
*/
ICalTimeZone zone( const QString &name ) const;
typedef QMap<QString, ICalTimeZone> ZoneMap;
/**
* Returns all the time zones defined in this collection.
*
* @return time zone collection
*/
const ZoneMap zones() const;
/**
* Adds a time zone to the collection.
* The time zone's name must be unique within the collection.
*
* @param zone time zone to add
* @return @c true if successful, @c false if zone's name duplicates one
* already in the collection
*/
bool add( const ICalTimeZone &zone );
/**
* Removes a time zone from the collection.
*
* @param zone time zone to remove
* @return the time zone which was removed, or invalid if not found
*/
ICalTimeZone remove( const ICalTimeZone &zone );
/**
* Removes a time zone from the collection.
*
* @param name name of time zone to remove
* @return the time zone which was removed, or invalid if not found
*/
ICalTimeZone remove( const QString &name );
/**
* Clears the collection.
*/
void clear();
private:
ICalTimeZones( const ICalTimeZones & ); // prohibit copying
ICalTimeZones &operator=( const ICalTimeZones & ); // prohibit copying
ICalTimeZonesPrivate *const d;
};
/**
* The ICalTimeZone class represents an iCalendar VTIMEZONE component.
*
* ICalTimeZone instances are normally created by ICalTimeZoneSource::parse().
*
* @short An iCalendar time zone
* @see ICalTimeZoneSource, ICalTimeZoneData
* @author David Jarvie <software@astrojar.org.uk>.
*/
class KCAL_DEPRECATED_EXPORT ICalTimeZone : public KTimeZone //krazy:exclude=dpointer
//(no d-pointer for KTimeZone derived classes)
{
public:
/**
* Constructs a null time zone. A null time zone is invalid.
*
* @see isValid()
*/
ICalTimeZone();
/**
* Creates a time zone. This constructor is normally called from
* ICalTimeZoneSource::parse().
*
* @param source iCalendar VTIMEZONE reader and parser
* @param name time zone's unique name within the iCalendar object
* @param data parsed VTIMEZONE data
*/
ICalTimeZone( ICalTimeZoneSource *source, const QString &name, ICalTimeZoneData *data );
/**
* Constructor which converts a KTimeZone to an ICalTimeZone instance.
*
* @param tz KTimeZone instance
* @param earliest earliest date for which time zone data should be stored
*/
explicit ICalTimeZone( const KTimeZone &tz, const QDate &earliest = QDate() );
/**
* Destructor.
*/
virtual ~ICalTimeZone();
/**
* Returns the name of the city for this time zone, if any. There is no
* fixed format for the name.
*
* @return city name
*/
QString city() const;
/**
* Returns the URL of the published VTIMEZONE definition, if any.
*
* @return URL
*/
QByteArray url() const;
/**
* Returns the LAST-MODIFIED time of the VTIMEZONE, if any.
*
* @return time, or QDateTime() if none
*/
QDateTime lastModified() const;
/**
* Returns the VTIMEZONE string which represents this time zone.
*
* @return VTIMEZONE string
*/
QByteArray vtimezone() const;
/**
* Returns the ICal timezone structure which represents this time zone.
* The caller is responsible for freeing the returned structure using
* icaltimezone_free().
*
* @return icaltimezone structure
*/
icaltimezone *icalTimezone() const;
/**
* Update the definition of the time zone to be identical to another
* ICalTimeZone instance. A prerequisite is that the two instances must
* have the same name.
*
* The purpose of this method is to enable updates of ICalTimeZone
* definitions when a calendar is reloaded, without invalidating pointers
* to the instance (particularly pointers held by KDateTime objects).
*
* @param other time zone whose definition is to be used
* @return true if definition was updated (i.e. names are the same)
*/
bool update( const ICalTimeZone &other );
/**
* Returns a standard UTC time zone, with name "UTC".
*
* @note The ICalTimeZone returned by this method does not belong to any
* ICalTimeZones collection. Any ICalTimeZones instance may contain its own
* UTC ICalTimeZone defined by its time zone source data, but that will be
* a different instance than this ICalTimeZone.
*
* @return UTC time zone
*/
static ICalTimeZone utc();
private:
// d-pointer is in ICalTimeZoneBackend.
// This is a requirement for classes inherited from KTimeZone.
};
/**
* Backend class for KICalTimeZone class.
*
* This class implements KICalTimeZone's constructors and virtual methods. A
* backend class is required for all classes inherited from KTimeZone to
* allow KTimeZone virtual methods to work together with reference counting of
* private data.
*
* @short Backend class for KICalTimeZone class
* @see KTimeZoneBackend, KICalTimeZone, KTimeZone
* @ingroup timezones
* @author David Jarvie <software@astrojar.org.uk>.
*/
class KCAL_DEPRECATED_EXPORT ICalTimeZoneBackend : public KTimeZoneBackend
{
public:
/** Implements ICalTimeZone::ICalTimeZone(). */
ICalTimeZoneBackend();
/**
* Implements ICalTimeZone::ICalTimeZone().
*
* @param source iCalendar VTIMEZONE reader and parser
* @param name time zone's unique name within the iCalendar object
* @param countryCode ISO 3166 2-character country code, empty if unknown
* @param latitude in degrees (between -90 and +90), UNKNOWN if not known
* @param longitude in degrees (between -180 and +180), UNKNOWN if not known
* @param comment description of the time zone, if any
*/
ICalTimeZoneBackend( ICalTimeZoneSource *source, const QString &name,
const QString &countryCode = QString(),
float latitude = KTimeZone::UNKNOWN,
float longitude = KTimeZone::UNKNOWN,
const QString &comment = QString() );
/** Implements ICalTimeZone::ICalTimeZone().
*
* @param tz KTimeZone instance
* @param earliest earliest date for which time zone data should be stored
*/
ICalTimeZoneBackend( const KTimeZone &tz, const QDate &earliest );
virtual ~ICalTimeZoneBackend();
/**
* Creates a copy of this instance.
*
* @return new copy
*/
virtual KTimeZoneBackend *clone() const;
/**
* Returns the class name of the data represented by this instance.
*
* @return "ICalTimeZone"
*/
virtual QByteArray type() const;
/**
* Implements ICalTimeZone::hasTransitions().
*
* Return whether daylight saving transitions are available for the time zone.
*
* @param caller calling ICalTimeZone object
* @return @c true
*/
virtual bool hasTransitions( const KTimeZone *caller ) const;
private:
ICalTimeZonePrivate *d; //krazy:exclude=dpointer
//(non-const d-pointer for KTimeZoneBackend-derived classes)
};
/**
* A class which reads and parses iCalendar VTIMEZONE components, and accesses
* libical time zone data.
*
* ICalTimeZoneSource is used to parse VTIMEZONE components and create
* ICalTimeZone instances to represent them.
*
* @short Reader and parser for iCalendar time zone data
* @see ICalTimeZone, ICalTimeZoneData
* @author David Jarvie <software@astrojar.org.uk>.
*/
class KCAL_DEPRECATED_EXPORT ICalTimeZoneSource : public KTimeZoneSource
{
public:
/**
* Constructs an iCalendar time zone source.
*/
ICalTimeZoneSource();
/**
* Destructor.
*/
virtual ~ICalTimeZoneSource();
/**
* Creates an ICalTimeZone instance containing the detailed information
* parsed from a VTIMEZONE component.
*
* @param vtimezone the VTIMEZONE component from which data is to be extracted
* @return an ICalTimeZone instance containing the parsed data, or invalid on error
*/
ICalTimeZone parse( icalcomponent *vtimezone );
/**
* Creates an ICalTimeZone instance for each VTIMEZONE component within a
* CALENDAR component. The ICalTimeZone instances are added to a
* ICalTimeZones collection.
*
* If an error occurs while processing any time zone, any remaining time
* zones are left unprocessed.
*
* @param calendar the CALENDAR component from which data is to be extracted
* @param zones the time zones collection to which the ICalTimeZone
* instances are to be added
* @return @c false if any error occurred (either parsing a VTIMEZONE
* component or adding an ICalTimeZone to @p zones), @c true otherwise
*/
bool parse( icalcomponent *calendar, ICalTimeZones &zones );
/**
* Reads an iCalendar file and creates an ICalTimeZone instance for each
* VTIMEZONE component within it. The ICalTimeZone instances are added to a
* ICalTimeZones collection.
*
* If an error occurs while processing any time zone, any remaining time
* zones are left unprocessed.
*
* @param fileName the file from which data is to be extracted
* @param zones the time zones collection to which the ICalTimeZone
* instances are to be added
* @return @c false if any error occurred, @c true otherwise
*/
bool parse( const QString &fileName, ICalTimeZones &zones );
/**
* Creates an ICalTimeZone instance containing the detailed information
* contained in an icaltimezone structure.
*
* Note that an icaltimezone instance may internally refer to a built-in
* (i.e. system) time zone, in which case the data obtained from @p tz will
* actually be derived from the built-in time zone rather than from a
* VTIMEZONE component.
*
* @param tz the icaltimezone structure from which data is to be extracted
* @return an ICalTimeZone instance containing the time zone data, or invalid on error
*/
ICalTimeZone parse( icaltimezone *tz );
/**
* Creates an ICalTimeZone instance for a standard time zone. The system
* time zone definition is used in preference; otherwise, the built-in
* libical time zone definition is used.
*
* @param zone time zone name, which may optionally include the libical
* prefix string
* @param icalBuiltIn @p true to fetch only the libical built-in time zone,
* and ignore system time zone definitions
* @return an ICalTimeZone instance containing the time zone data, or invalid on error
*/
ICalTimeZone standardZone( const QString &zone, bool icalBuiltIn = false );
/**
* Returns the prefix string used in the TZID field in built-in libical
* time zones. The prefix string starts and ends with '/'. The name
* normally used for the time zone is obtained by stripping the prefix and
* the following characters up to the next '/', inclusive.
*
* @return prefix string
*/
static QByteArray icalTzidPrefix();
using KTimeZoneSource::parse; // prevent warning about hidden virtual method
private:
ICalTimeZoneSourcePrivate *const d;
};
/**
* Parsed iCalendar VTIMEZONE data.
*
* This class is used by the ICalTimeZoneSource class to pass parsed
* data to an ICalTimeZone intance.
*
* @short Parsed iCalendar time zone data
* @see ICalTimeZone, ICalTimeZoneSource
* @author David Jarvie <software@astrojar.org.uk>.
*/
class KCAL_DEPRECATED_EXPORT ICalTimeZoneData : public KTimeZoneData
{
friend class ICalTimeZoneSource;
public:
/**
* Default constructor.
*/
ICalTimeZoneData();
/**
* Copy constructor.
*
* @param rhs instance to copy from
*/
ICalTimeZoneData( const ICalTimeZoneData &rhs );
/**
* Constructor which converts a KTimeZoneData to an ICalTimeZoneData instance.
* If @p data is for a system time zone (i.e. @p tz is a KSystemTimeZone
* instance), the full time zone data is read from the system time zone
* database if possible; otherwise, the built-in libical time zone's data
* is used.
*
* @param rhs KTimeZoneData instance
* @param tz time zone which @p rhs belongs to
* @param earliest earliest date for which time zone data should be stored
*/
ICalTimeZoneData( const KTimeZoneData &rhs, const KTimeZone &tz, const QDate &earliest );
/**
* Destructor.
*/
virtual ~ICalTimeZoneData();
/**
* Assignment operator.
*
* @param rhs instance to copy from
* @return this instance
*/
ICalTimeZoneData &operator=( const ICalTimeZoneData &rhs );
/**
* Creates a new copy of this object.
* The caller is responsible for deleting the copy.
*
* @return copy of this instance
*/
virtual KTimeZoneData *clone() const;
/**
* Returns the name of the city for this time zone, if any. There is no fixed
* format for the name.
*
* @return city name
*/
QString city() const;
/**
* Returns the URL of the published VTIMEZONE definition, if any.
*
* @return URL
*/
QByteArray url() const;
/**
* Returns the LAST-MODIFIED time of the VTIMEZONE, if any.
*
* @return time, or QDateTime() if none
*/
QDateTime lastModified() const;
/**
* Returns the VTIMEZONE string which represents this time zone.
*
* @return VTIMEZONE string
*/
QByteArray vtimezone() const;
/**
* Returns the ICal timezone structure which represents this time zone.
* The caller is responsible for freeing the returned structure using
* icaltimezone_free().
*
* @return icaltimezone structure
*/
icaltimezone *icalTimezone() const;
/**
* Return whether daylight saving transitions are available for the time zone.
*
* @return @c true
*/
virtual bool hasTransitions() const;
private:
ICalTimeZoneDataPrivate *const d;
};
}
#endif
|