/usr/include/kcal/recurrence.h is in kdepimlibs5-dev 4:4.14.10-7+b2.
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 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 | /*
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>
Copyright (c) 2002,2006 David Jarvie <software@astrojar.org.uk>
Copyright (C) 2005 Reinhold Kainhofer <reinhold@kainhofer.com>
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_RECURRENCE_H
#define KCAL_RECURRENCE_H
#include "kcal_export.h"
#include "recurrencerule.h"
#include <kdatetime.h>
#include <QtCore/QString>
#include <QtCore/QBitArray>
#include <QtCore/QList>
namespace KCal {
class RecurrenceRule;
/**
This class represents a recurrence rule for a calendar incidence.
It manages all recurrence rules, recurrence date/times, exception rules
and exception date times that can appear inside calendar items.
Each recurrence rule and exception rule is represented as an object
of type RecurrenceRule.
For the simple case where at most one recurrence
rule is present, this class provides shortcut methods to set the type:
setMinutely()
setHourly()
setDaily()
setWeekly()
setMonthly()
setYearly()
to set/get general information about the recurrence:
setEndDate()
setEndDateTime()
duration()
durationTo()
setDuration()
frequency()
setFrequency()
and to set/get specific information about the recurrence within the interval:
days()
monthDays()
monthPositions()
yearDays()
yearDates()
yearMonths()
yearPositions()
addMonthlyPos()
addMonthlyDate()
addYearlyDay()
addYearlyDate()
addYearlyPos()
addYearlyMonth()
These are all available so that you don't have to work on the RecurrenceRule
objects themselves.
In other words, in that simple situation the interface stays almost the
same compared to the old Recurrence class, which allowed only one
recurrence rule.
As soon as your recurrence consists of multiple recurrence rules or exception
rules, you cannot use the methods mentioned above any more (since each rule
will have a different type and different settings). If you still call
any of them, the set*ly methods will remove all rules and add one rule with
the specified type. The add* and the other set* methods will change only
the first recurrence rule, but leave the others untouched.
*/
class KCAL_DEPRECATED_EXPORT Recurrence : public RecurrenceRule::RuleObserver
{
public:
class RecurrenceObserver
{
public:
virtual ~RecurrenceObserver() {}
/** This method will be called on each change of the recurrence object */
virtual void recurrenceUpdated( Recurrence *r ) = 0;
};
/** enumeration for describing how an event recurs, if at all. */
enum {
rNone = 0,
rMinutely = 0x001,
rHourly = 0x0002,
rDaily = 0x0003,
rWeekly = 0x0004,
rMonthlyPos = 0x0005,
rMonthlyDay = 0x0006,
rYearlyMonth = 0x0007,
rYearlyDay = 0x0008,
rYearlyPos = 0x0009,
rOther = 0x000A,
rMax=0x00FF
};
/**
* Constructs an empty recurrence.
*/
Recurrence();
/**
* Copy constructor.
*
* @param r instance to copy from
*/
Recurrence( const Recurrence &r );
/**
* Destructor.
*/
virtual ~Recurrence();
/**
* Comparison operator for equality.
*
* @param r instance to compare with
* @return true if recurrences are the same, false otherwise
*/
bool operator==( const Recurrence &r ) const;
/**
* Comparison operator for inequality.
*
* @param r instance to compare with
* @return true if recurrences are the different, false if the same
*/
bool operator!=( const Recurrence &r ) const { return !operator==(r); }
/**
* Assignment operator.
*
* @param r the recurrence which will be assigned to this.
& @since 4.5
*/
Recurrence &operator=( const Recurrence &r );
/** Return the start date/time of the recurrence (Time for all-day recurrences will be 0:00).
@return the current start/time of the recurrence. */
KDateTime startDateTime() const;
/** Return the start date/time of the recurrence */
QDate startDate() const;
/** Set start of recurrence.
If @p start is date-only, the recurrence is set to all-day. Otherwise, the
start is set to a date and time, and the recurrence is set to non-all-day.
@param start the new start date or date/time of the recurrence.
*/
void setStartDateTime( const KDateTime &start );
/** Set whether the recurrence has no time, just a date.
* All-day means -- according to rfc2445 -- that the event has no time
* associated.
* N.B. This property is derived by default from whether setStartDateTime() is
* called with a date-only or date/time parameter.
* @return whether the recurrence has a time (false) or it is just a date (true). */
bool allDay() const;
/** Sets whether the dtstart is a all-day (i.e. has no time attached)
@param allDay If the recurrence is for all-day item (true) or has a time associated (false).
*/
void setAllDay( bool allDay );
/** Set if recurrence is read-only or can be changed. */
void setRecurReadOnly( bool readOnly );
/** Returns true if the recurrence is read-only, or false if it can be changed. */
bool recurReadOnly() const;
/** Returns whether the event recurs at all. */
bool recurs() const;
/** Returns the event's recurrence status. See the enumeration at the top
* of this file for possible values. */
ushort recurrenceType() const;
/** Returns the recurrence status for a recurrence rule.
* See the enumeration at the top of this file for possible values.
*
* @param rrule the recurrence rule to get the type for
*/
static ushort recurrenceType( const RecurrenceRule *rrule );
/**
Returns true if the date specified is one on which the event will recur.
@param date date to check.
@param timeSpec time specification for @p date.
*/
bool recursOn( const QDate &date, const KDateTime::Spec &timeSpec ) const;
/**
Returns true if the date/time specified is one at which the event will
recur. Times are rounded down to the nearest minute to determine the
result.
@param dt is the date/time to check.
*/
bool recursAt( const KDateTime &dt ) const;
/**
Removes all recurrence rules. Recurrence dates and exceptions are
not removed.
*/
void unsetRecurs();
/**
Removes all recurrence and exception rules and dates.
*/
void clear();
/** Returns a list of the times on the specified date at which the
* recurrence will occur. The returned times should be interpreted in the
* context of @p timeSpec.
* @param date the date for which to find the recurrence times
* @param timeSpec time specification for @p date
*/
TimeList recurTimesOn( const QDate &date, const KDateTime::Spec &timeSpec ) const;
/** Returns a list of all the times at which the recurrence will occur
* between two specified times.
*
* There is a (large) maximum limit to the number of times returned. If due to
* this limit the list is incomplete, this is indicated by the last entry being
* set to an invalid KDateTime value. If you need further values, call the
* method again with a start time set to just after the last valid time returned.
*
* @param start inclusive start of interval
* @param end inclusive end of interval
* @return list of date/time values
*/
DateTimeList timesInInterval( const KDateTime &start, const KDateTime &end ) const;
/** Returns the date and time of the next recurrence, after the specified date/time.
* If the recurrence has no time, the next date after the specified date is returned.
* @param preDateTime the date/time after which to find the recurrence.
* @return date/time of next recurrence (strictly later than the given
* KDateTime), or invalid date if none.
*/
KDateTime getNextDateTime( const KDateTime &preDateTime ) const;
/** Returns the date and time of the last previous recurrence, before the specified date/time.
* If a time later than 00:00:00 is specified and the recurrence has no time, 00:00:00 on
* the specified date is returned if that date recurs.
*
* @param afterDateTime the date/time before which to find the recurrence.
* @return date/time of previous recurrence (strictly earlier than the given
* KDateTime), or invalid date if none.
*/
KDateTime getPreviousDateTime( const KDateTime &afterDateTime ) const;
/** Returns frequency of recurrence, in terms of the recurrence time period type. */
int frequency() const;
/** Sets the frequency of recurrence, in terms of the recurrence time period type. */
void setFrequency( int freq );
/**
* Returns -1 if the event recurs infinitely, 0 if the end date is set,
* otherwise the total number of recurrences, including the initial occurrence.
*/
int duration() const;
/** Sets the total number of times the event is to occur, including both the
* first and last. */
void setDuration( int duration );
/** Returns the number of recurrences up to and including the date/time specified.
* @warning This function can be very time consuming - use it sparingly!
*/
int durationTo( const KDateTime &dt ) const;
/** Returns the number of recurrences up to and including the date specified.
* @warning This function can be very time consuming - use it sparingly!
*/
int durationTo( const QDate &date ) const;
/** Returns the date/time of the last recurrence.
* An invalid date is returned if the recurrence has no end.
*/
KDateTime endDateTime() const;
/** Returns the date of the last recurrence.
* An invalid date is returned if the recurrence has no end.
*/
QDate endDate() const;
/** Sets the date of the last recurrence. The end time is set to the recurrence start time.
* @param endDate the ending date after which to stop recurring. If the
* recurrence is not all-day, the end time will be 23:59.*/
void setEndDate( const QDate &endDate );
/** Sets the date and time of the last recurrence.
* @param endDateTime the ending date/time after which to stop recurring. */
void setEndDateTime( const KDateTime &endDateTime );
/**
Shift the times of the recurrence so that they appear at the same clock
time as before but in a new time zone. The shift is done from a viewing
time zone rather than from the actual recurrence time zone.
For example, shifting a recurrence whose start time is 09:00 America/New York,
using an old viewing time zone (@p oldSpec) of Europe/London, to a new time
zone (@p newSpec) of Europe/Paris, will result in the time being shifted
from 14:00 (which is the London time of the recurrence start) to 14:00 Paris
time.
@param oldSpec the time specification which provides the clock times
@param newSpec the new time specification
*/
void shiftTimes( const KDateTime::Spec &oldSpec, const KDateTime::Spec &newSpec );
/** Sets an event to recur minutely. By default infinite recurrence is used.
To set an end date use the method setEndDate and to set the number
of occurrences use setDuration.
This method clears all recurrence rules and adds one rule with a
minutely recurrence. All other recurrence components (recurrence
date/times, exception date/times and exception rules) are not
modified.
* @param freq the frequency to recur, e.g. 2 is every other minute
*/
void setMinutely( int freq );
/** Sets an event to recur hourly. By default infinite recurrence is used.
The minute of the recurrence is taken from the start date (if you
need to change it, you will have to modify the defaultRRule's
byMinute list manually.
To set an end date use the method setEndDate and to set the number
of occurrences use setDuration.
This method clears all recurrence rules and adds one rule with a
hourly recurrence. All other recurrence components (recurrence
date/times, exception date/times and exception rules) are not
modified.
* @param freq the frequency to recur, e.g. 2 is every other hour
*/
void setHourly( int freq );
/** Sets an event to recur daily. By default infinite recurrence is used.
The minute and second of the recurrence is taken from the start date
(if you need to change them, you will have to modify the defaultRRule's
byMinute list manually.
To set an end date use the method setEndDate and to set the number
of occurrences use setDuration.
This method clears all recurrence rules and adds one rule with a
daily recurrence. All other recurrence components (recurrence
date/times, exception date/times and exception rules) are not
modified.
* @param freq the frequency to recur, e.g. 2 is every other day
*/
void setDaily( int freq );
/** Sets an event to recur weekly. By default infinite recurrence is used.
To set an end date use the method setEndDate and to set the number
of occurrences use setDuration.
This method clears all recurrence rules and adds one rule with a
weekly recurrence. All other recurrence components (recurrence
date/times, exception date/times and exception rules) are not
modified.
* @param freq the frequency to recur, e.g. every other week etc.
* @param weekStart the first day of the week (Monday=1 .. Sunday=7, default is Monday).
*/
void setWeekly( int freq, int weekStart = 1 );
/** Sets an event to recur weekly. By default infinite recurrence is used.
To set an end date use the method setEndDate and to set the number
of occurrences use setDuration.
This method clears all recurrence rules and adds one rule with a
weekly recurrence. All other recurrence components (recurrence
date/times, exception date/times and exception rules) are not
modified.
* @param freq the frequency to recur, e.g. every other week etc.
* @param days a 7 bit array indicating which days on which to recur (bit 0 = Monday).
* @param weekStart the first day of the week (Monday=1 .. Sunday=7, default is Monday).
*/
void setWeekly( int freq, const QBitArray &days, int weekStart = 1 );
/** Adds days to the weekly day recurrence list.
* @param days a 7 bit array indicating which days on which to recur (bit 0 = Monday).
*/
void addWeeklyDays( const QBitArray &days );
/** Returns the first day of the week. Uses only the
* first RRULE if present (i.e. a second RRULE as well as all EXRULES are
* ignored!
* @return Weekday of the first day of the week (Monday=1 .. Sunday=7)
*/
int weekStart() const;
/** Returns week day mask (bit 0 = Monday). */
QBitArray days() const; // Emulate the old behavior
/** Sets an event to recur monthly. By default infinite recurrence is used.
The date of the monthly recurrence will be taken from the start date
unless you explicitly add one or more recurrence dates with
addMonthlyDate or a recurrence position in the month (e.g. first
monday) using addMonthlyPos.
To set an end date use the method setEndDate and to set the number
of occurrences use setDuration.
This method clears all recurrence rules and adds one rule with a
monthly recurrence. All other recurrence components (recurrence
date/times, exception date/times and exception rules) are not
modified.
* @param freq the frequency to recur, e.g. 3 for every third month.
*/
void setMonthly( int freq );
/** Adds a position (e.g. first monday) to the monthly recurrence rule.
* @param pos the position in the month for the recurrence, with valid
* values being 1-5 (5 weeks max in a month).
* @param days the days for the position to recur on (bit 0 = Monday).
* Example: pos = 2, and bits 0 and 2 are set in days:
* the rule is to repeat every 2nd Monday and Wednesday in the month.
*/
void addMonthlyPos( short pos, const QBitArray &days );
void addMonthlyPos( short pos, ushort day );
/** Adds a date (e.g. the 15th of each month) to the monthly day
* recurrence list.
* @param day the date in the month to recur.
*/
void addMonthlyDate( short day );
/** Returns list of day positions in months. */
QList<RecurrenceRule::WDayPos> monthPositions() const;
/** Returns list of day numbers of a month. */
// Emulate old behavior
QList<int> monthDays() const;
/** Sets an event to recur yearly. By default, this will recur every year
* on the same date (e.g. every year on April 15 if the start date was
* April 15).
* The day of the year can be specified with addYearlyDay().
* The day of the month can be specified with addYearlyByDate
* If both a month and a day ar specified with addYearlyMonth and
* addYearlyDay, the day is understood as day number within the month.
*
* A position (e.g. 3rd Sunday of year/month, or last Friday of year/month)
* can be specified with addYearlyPos. Again, if a month is specified,
* this position is understood as within that month, otherwise within
* the year.
*
* By default infinite recurrence is used. To set an end date use the
* method setEndDate and to set the number of occurrences use setDuration.
This method clears all recurrence rules and adds one rule with a
yearly recurrence. All other recurrence components (recurrence
date/times, exception date/times and exception rules) are not
modified.
* @param freq the frequency to recur, e.g. 3 for every third year.
*/
void setYearly( int freq );
/** Adds day number of year within a yearly recurrence.
* By default infinite recurrence is used. To set an end date use the
* method setEndDate and to set the number of occurrences use setDuration.
* @param day the day of the year for the event. E.g. if day is 60, this
* means Feb 29 in leap years and March 1 in non-leap years.
*/
void addYearlyDay( int day );
/** Adds date within a yearly recurrence. The month(s) for the recurrence
* can be specified with addYearlyMonth(), otherwise the month of the
* start date is used.
*
* By default infinite recurrence is used. To set an end date use the
* method setEndDate and to set the number of occurrences use setDuration.
* @param date the day of the month for the event
*/
void addYearlyDate( int date );
/** Adds month in yearly recurrence. You can specify specific day numbers
* within the months (by calling addYearlyDate()) or specific day positions
* within the month (by calling addYearlyPos).
* @param _rNum the month in which the event shall recur.
*/
void addYearlyMonth( short _rNum );
/** Adds position within month/year within a yearly recurrence. If months
* are specified (via addYearlyMonth()), the parameters are understood as
* position within these months, otherwise within the year.
*
* By default infinite recurrence is used.
* To set an end date use the method setEndDate and to set the number
* of occurrences use setDuration.
* @param pos the position in the month/year for the recurrence, with valid
* values being 1 to 53 and -1 to -53 (53 weeks max in a year).
* @param days the days for the position to recur on (bit 0 = Monday).
* Example: pos = 2, and bits 0 and 2 are set in days
* If months are specified (via addYearlyMonth), e.g. March, the rule is
* to repeat every year on the 2nd Monday and Wednesday of March.
* If no months are specified, the fule is to repeat every year on the
* 2nd Monday and Wednesday of the year.
*/
void addYearlyPos( short pos, const QBitArray &days );
/** Returns the day numbers within a yearly recurrence.
* @return the days of the year for the event. E.g. if the list contains
* 60, this means the recurrence happens on day 60 of the year, i.e.
* on Feb 29 in leap years and March 1 in non-leap years.
*/
QList<int> yearDays() const;
/** Returns the dates within a yearly recurrence.
* @return the days of the month for the event. E.g. if the list contains
* 13, this means the recurrence happens on the 13th of the month.
* The months for the recurrence can be obtained through
* yearlyMonths(). If this list is empty, the month of the start
* date is used.
*/
QList<int> yearDates() const;
/** Returns the months within a yearly recurrence.
* @return the months for the event. E.g. if the list contains
* 11, this means the recurrence happens in November.
* The days for the recurrence can be obtained either through
* yearDates() if they are given as dates within the month or
* through yearlyPositions() if they are given as positions within the
* month. If none is specified, the date of the start date is used.
*/
QList<int> yearMonths() const;
/** Returns the positions within a yearly recurrence.
* @return the positions for the event, either within a month (if months
* are set through addYearlyMonth()) or within the year.
* E.g. if the list contains {Pos=3, Day=5}, this means the third
* friday. If a month is set this position is understoodas third
* Friday in the given months, otherwise as third Friday of the
* year.
*/
/** Returns list of day positions in months, for a recursYearlyPos recurrence rule. */
QList<RecurrenceRule::WDayPos> yearPositions() const;
/** Upper date limit for recurrences */
static const QDate MAX_DATE;
/**
Debug output.
*/
void dump() const;
// RRULE
RecurrenceRule::List rRules() const;
/**
Add a recurrence rule to the recurrence.
@param rrule the recurrence rule to add
*/
void addRRule( RecurrenceRule *rrule );
/**
Remove a recurrence rule from the recurrence.
@p rrule is not deleted; it is the responsibility of the caller
to ensure that it is deleted.
@param rrule the recurrence rule to remove
*/
void removeRRule( RecurrenceRule *rrule );
/**
Remove a recurrence rule from the recurrence and delete it.
@param rrule the recurrence rule to remove
*/
void deleteRRule( RecurrenceRule *rrule );
// EXRULE
RecurrenceRule::List exRules() const;
/**
Add an exception rule to the recurrence.
@param exrule the exception rule to add
*/
void addExRule( RecurrenceRule *exrule );
/**
Remove an exception rule from the recurrence.
@p exrule is not deleted; it is the responsibility of the caller
to ensure that it is deleted.
@param exrule the exception rule to remove
*/
void removeExRule( RecurrenceRule *exrule );
/**
Remove an exception rule from the recurrence and delete it.
@param exrule the exception rule to remove
*/
void deleteExRule( RecurrenceRule *exrule );
// RDATE
DateTimeList rDateTimes() const;
DateList rDates() const;
void setRDateTimes( const DateTimeList &rdates );
void setRDates( const DateList &rdates );
void addRDateTime( const KDateTime &rdate );
void addRDate( const QDate &rdate );
// ExDATE
DateTimeList exDateTimes() const;
DateList exDates() const;
void setExDateTimes( const DateTimeList &exdates );
void setExDates( const DateList &exdates );
void addExDateTime( const KDateTime &exdate );
void addExDate( const QDate &exdate );
RecurrenceRule *defaultRRule( bool create = false ) const;
RecurrenceRule *defaultRRuleConst() const;
void updated();
/**
Installs an observer. Whenever some setting of this recurrence
object is changed, the recurrenceUpdated( Recurrence* ) method
of each observer will be called to inform it of changes.
@param observer the Recurrence::Observer-derived object, which
will be installed as an observer of this object.
*/
void addObserver( RecurrenceObserver *observer );
/**
Removes an observer that was added with addObserver. If the
given object was not an observer, it does nothing.
@param observer the Recurrence::Observer-derived object to
be removed from the list of observers of this object.
*/
void removeObserver( RecurrenceObserver *observer );
void recurrenceChanged( RecurrenceRule * );
protected:
RecurrenceRule *setNewRecurrenceType( RecurrenceRule::PeriodType type, int freq );
private:
//@cond PRIVATE
class Private;
Private *const d;
//@endcond
};
}
#endif
|