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

1507 lines
49 KiB
Objective-C

/*
This file is part of the kcalcore library.
Copyright (c) 1998 Preston Brown <pbrown@kde.org>
Copyright (c) 2001,2003,2004 Cornelius Schumacher <schumacher@kde.org>
Copyright (C) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com>
Copyright (c) 2006 David Jarvie <software@astrojar.org.uk>
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 Calendar class.
@author Preston Brown \<pbrown@kde.org\>
@author Cornelius Schumacher \<schumacher@kde.org\>
@author Reinhold Kainhofer \<reinhold@kainhofer.com\>
@author David Jarvie \<software@astrojar.org.uk\>
*/
/**
TODO: KDE5:
This API needs serious cleaning up:
- Most (all) methods aren't async ( deleteIncidence(), addIncidence(), load(), save(), ... )
so it's not very easy to make a derived class that loads from akonadi.
- It has too many methods. Why do we need fooEvent()/fooJournal()/fooTodo() when fooIncidence()
should be enough.
*/
#ifndef KCALCORE_CALENDAR_H
#define KCALCORE_CALENDAR_H
#include "kcalcore_export.h"
#include "event.h"
#include "customproperties.h"
#include "incidence.h"
#include "journal.h"
#include "todo.h"
#include <QtCore/QObject>
namespace KCalCore {
class CalFilter;
class Person;
class ICalTimeZones;
/**
Calendar Incidence sort directions.
*/
enum SortDirection {
SortDirectionAscending, /**< Sort in ascending order (first to last) */
SortDirectionDescending /**< Sort in descending order (last to first) */
};
/**
Calendar Event sort keys.
*/
enum EventSortField {
EventSortUnsorted, /**< Do not sort Events */
EventSortStartDate, /**< Sort Events chronologically, by start date */
EventSortEndDate, /**< Sort Events chronologically, by end date */
EventSortSummary /**< Sort Events alphabetically, by summary */
};
/**
Calendar Todo sort keys.
*/
enum TodoSortField {
TodoSortUnsorted, /**< Do not sort Todos */
TodoSortStartDate, /**< Sort Todos chronologically, by start date */
TodoSortDueDate, /**< Sort Todos chronologically, by due date */
TodoSortPriority, /**< Sort Todos by priority */
TodoSortPercentComplete, /**< Sort Todos by percentage completed */
TodoSortSummary, /**< Sort Todos alphabetically, by summary */
TodoSortCreated /**< Sort Todos chronologically, by creation date */
};
/**
Calendar Journal sort keys.
*/
enum JournalSortField {
JournalSortUnsorted, /**< Do not sort Journals */
JournalSortDate, /**< Sort Journals chronologically by date */
JournalSortSummary /**< Sort Journals alphabetically, by summary */
};
/**
@brief
Represents the main calendar class.
A calendar contains information like incidences (events, to-dos, journals),
alarms, time zones, and other useful information.
This is an abstract base class defining the interface to a calendar.
It is implemented by subclasses like MemoryCalendar, which use different
methods to store and access the data.
<b>Ownership of Incidences</b>:
Incidence ownership is handled by the following policy: as soon as an
incidence (or any other subclass of IncidenceBase) is added to the
Calendar by an add...() method it is owned by the Calendar object.
The Calendar takes care of deleting the incidence using the delete...()
methods. All Incidences returned by the query functions are returned
as pointers so that changes to the returned Incidences are immediately
visible in the Calendar. Do <em>Not</em> attempt to 'delete' any Incidence
object you get from Calendar -- use the delete...() methods.
*/
class KCALCORE_EXPORT Calendar : public QObject, public CustomProperties,
public IncidenceBase::IncidenceObserver
{
Q_OBJECT
public:
/**
A shared pointer to a Calendar
*/
typedef QSharedPointer<Calendar> Ptr;
/**
Constructs a calendar with a specified time zone @p timeZoneid.
The time specification is used as the default for creating or
modifying incidences in the Calendar. The time specification does
not alter existing incidences.
The constructor also calls setViewTimeSpec(@p timeSpec).
@param timeSpec time specification
*/
explicit Calendar(const KDateTime::Spec &timeSpec);
/**
Construct Calendar object using a time zone ID.
The time zone ID is used as the default for creating or modifying
incidences in the Calendar. The time zone does not alter existing
incidences.
The constructor also calls setViewTimeZoneId(@p timeZoneId).
@param timeZoneId is a string containing a time zone ID, which is
assumed to be valid. If no time zone is found, the viewing time
specification is set to local clock time.
@e Example: "Europe/Berlin"
*/
explicit Calendar(const QString &timeZoneId);
/**
Destroys the calendar.
*/
virtual ~Calendar();
/**
Sets the calendar Product ID to @p id.
@param id is a string containing the Product ID.
@see productId() const
*/
void setProductId(const QString &id);
/**
Returns the calendar's Product ID.
@see setProductId()
*/
QString productId() const;
/**
Sets the owner of the calendar to @p owner.
@param owner is a Person object. Must be a non-null pointer.
@see owner()
*/
void setOwner(const Person::Ptr &owner);
/**
Returns the owner of the calendar.
@return the owner Person object.
@see setOwner()
*/
Person::Ptr owner() const;
/**
Sets the default time specification (time zone, etc.) used for creating
or modifying incidences in the Calendar.
The method also calls setViewTimeSpec(@p timeSpec).
@param timeSpec time specification
*/
void setTimeSpec(const KDateTime::Spec &timeSpec);
/**
Get the time specification (time zone etc.) used for creating or
modifying incidences in the Calendar.
@return time specification
*/
KDateTime::Spec timeSpec() const;
/**
Sets the time zone ID used for creating or modifying incidences in the
Calendar. This method has no effect on existing incidences.
The method also calls setViewTimeZoneId(@p timeZoneId).
@param timeZoneId is a string containing a time zone ID, which is
assumed to be valid. The time zone ID is used to set the time zone
for viewing Incidence date/times. If no time zone is found, the
viewing time specification is set to local clock time.
@e Example: "Europe/Berlin"
@see setTimeSpec()
*/
void setTimeZoneId(const QString &timeZoneId);
/**
Returns the time zone ID used for creating or modifying incidences in
the calendar.
@return the string containing the time zone ID, or empty string if the
creation/modification time specification is not a time zone.
*/
QString timeZoneId() const;
/**
Notes the time specification which the client application intends to
use for viewing the incidences in this calendar. This is simply a
convenience method which makes a note of the new time zone so that
it can be read back by viewTimeSpec(). The client application must
convert date/time values to the desired time zone itself.
The time specification is not used in any way by the Calendar or its
incidences; it is solely for use by the client application.
@param timeSpec time specification
@see viewTimeSpec()
*/
void setViewTimeSpec(const KDateTime::Spec &timeSpec) const;
/**
Notes the time zone Id which the client application intends to use for
viewing the incidences in this calendar. This is simply a convenience
method which makes a note of the new time zone so that it can be read
back by viewTimeId(). The client application must convert date/time
values to the desired time zone itself.
The Id is not used in any way by the Calendar or its incidences.
It is solely for use by the client application.
@param timeZoneId is a string containing a time zone ID, which is
assumed to be valid. The time zone ID is used to set the time zone
for viewing Incidence date/times. If no time zone is found, the
viewing time specification is set to local clock time.
@e Example: "Europe/Berlin"
@see viewTimeZoneId()
*/
void setViewTimeZoneId(const QString &timeZoneId) const;
/**
Returns the time specification used for viewing the incidences in
this calendar. This simply returns the time specification last
set by setViewTimeSpec().
@see setViewTimeSpec().
*/
KDateTime::Spec viewTimeSpec() const;
/**
Returns the time zone Id used for viewing the incidences in this
calendar. This simply returns the time specification last set by
setViewTimeSpec().
@see setViewTimeZoneId().
*/
QString viewTimeZoneId() const;
/**
Shifts the times of all incidences 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 incidence time zone.
For example, shifting an incidence 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 incidence start) to 14:00 Paris
time.
@param oldSpec the time specification which provides the clock times
@param newSpec the new time specification
@see isLocalTime()
*/
void shiftTimes(const KDateTime::Spec &oldSpec, const KDateTime::Spec &newSpec);
/**
Returns the time zone collection used by the calendar.
@return the time zones collection.
@see setLocalTime()
*/
ICalTimeZones *timeZones() const;
/**
Set the time zone collection used by the calendar.
@param zones time zones collection. Important: all time zones references
in the calendar must be included in the collection.
*/
void setTimeZones(ICalTimeZones *zones);
/**
Sets if the calendar has been modified.
@param modified is true if the calendar has been modified since open
or last save.
@see isModified()
*/
void setModified(bool modified);
/**
Determine the calendar's modification status.
@return true if the calendar has been modified since open or last save.
@see setModified()
*/
bool isModified() const;
/**
Clears out the current calendar, freeing all used memory etc.
*/
virtual void close() = 0;
/**
Syncs changes in memory to persistent storage.
@return true if the save was successful; false otherwise.
Base implementation returns true.
*/
virtual bool save();
/**
Loads the calendar contents from storage. This requires that the
calendar has been previously loaded (initialized).
@return true if the reload was successful; otherwise false.
Base implementation returns true.
*/
virtual bool reload();
/**
Determine if the calendar is currently being saved.
@return true if the calendar is currently being saved; false otherwise.
*/
virtual bool isSaving() const;
/**
Returns a list of all categories used by Incidences in this Calendar.
@return a QStringList containing all the categories.
*/
QStringList categories() const;
// Incidence Specific Methods //
/**
Call this to tell the calendar that you're adding a batch of incidences.
So it doesn't, for example, ask the destination for each incidence.
@see endBatchAdding()
*/
virtual void startBatchAdding();
/**
Tells the Calendar that you stoped adding a batch of incidences.
@see startBatchAdding()
*/
virtual void endBatchAdding();
/**
@return true if batch adding is in progress
*/
bool batchAdding() const;
/**
Inserts an Incidence into the calendar.
@param incidence is a pointer to the Incidence to insert.
@return true if the Incidence was successfully inserted; false otherwise.
@see deleteIncidence()
*/
virtual bool addIncidence(const Incidence::Ptr &incidence);
/**
Removes an Incidence from the calendar.
@param incidence is a pointer to the Incidence to remove.
@return true if the Incidence was successfully removed; false otherwise.
@see addIncidence()
*/
virtual bool deleteIncidence(const Incidence::Ptr &incidence);
/**
Returns a filtered list of all Incidences for this Calendar.
@return the list of all filtered Incidences.
*/
virtual Incidence::List incidences() const;
/**
Returns a filtered list of all Incidences which occur on the given date.
@param date request filtered Incidence list for this QDate only.
@return the list of filtered Incidences occurring on the specified date.
*/
virtual Incidence::List incidences(const QDate &date) const;
/**
Returns an unfiltered list of all Incidences for this Calendar.
@return the list of all unfiltered Incidences.
*/
virtual Incidence::List rawIncidences() const;
/**
Returns an unfiltered list of all exceptions of this recurring incidence.
@param incidence incidence to check
@return the list of all unfiltered exceptions.
*/
virtual Incidence::List instances(const Incidence::Ptr &incidence) const;
// Notebook Specific Methods //
/**
Clears notebook associations from hash-tables for incidences.
Called when in-memory content of the calendar is cleared.
*/
virtual void clearNotebookAssociations();
/**
Associate notebook for an incidence.
@param incidence incidence
@param notebook notebook uid
@return true if the operation was successful; false otherwise.
*/
virtual bool setNotebook(const Incidence::Ptr &incidence, const QString &notebook);
/**
Get incidence's notebook.
@param incidence incidence
@return notebook uid
*/
virtual QString notebook(const Incidence::Ptr &incidence) const;
/**
Get incidence's notebook.
@param uid is a unique identifier string
@return notebook uid
*/
virtual QString notebook(const QString &uid) const;
/**
List all uids of notebooks currently in the memory.
@return list of uids of notebooks
*/
virtual QStringList notebooks() const;
/**
Check if calendar knows about the given notebook.
This means that it will be saved by one of the attached storages.
@param notebook notebook uid
@return true if calendar has valid notebook
*/
bool hasValidNotebook(const QString &notebook) const;
/**
Add notebook information into calendar.
Is usually called by storages only.
@param notebook notebook uid
@param isVisible notebook visibility
@return true if operation succeeded
@see isVisible()
*/
bool addNotebook(const QString &notebook, bool isVisible);
/**
Update notebook information in calendar.
Is usually called by storages only.
@param notebook notebook uid
@param isVisible notebook visibility
@return true if operation succeeded
@see isVisible()
*/
bool updateNotebook(const QString &notebook, bool isVisible);
/**
Delete notebook information from calendar.
Is usually called by storages only.
@param notebook notebook uid
@return true if operation succeeded
@see isVisible()
*/
bool deleteNotebook(const QString &notebook);
/**
set DefaultNotebook information to calendar.
@param notebook notebook uid
@return true if operation was successful; false otherwise.
*/
bool setDefaultNotebook(const QString &notebook);
/**
Get uid of default notebook.
@return notebook uid
*/
QString defaultNotebook() const;
/**
Check if incidence is visible.
@param incidence is a pointer to the Incidence to check for visibility.
@return true if incidence is visible, false otherwise
*/
bool isVisible(const Incidence::Ptr &incidence) const;
/**
List all notebook incidences in the memory.
@param notebook is the notebook uid.
@return a list of incidences for the notebook.
*/
virtual Incidence::List incidences(const QString &notebook) const;
/**
List all possible duplicate incidences.
@param incidence is the incidence to check.
@return a list of duplicate incidences.
*/
virtual Incidence::List duplicates(const Incidence::Ptr &incidence);
/**
Returns the Incidence associated with the given unique identifier.
@param uid is a unique identifier string.
@param recurrenceId is possible recurrenceid of incidence, default is null
@return a pointer to the Incidence.
A null pointer is returned if no such Incidence exists.
*/
Incidence::Ptr incidence(const QString &uid,
const KDateTime &recurrenceId = KDateTime()) const;
/**
Returns the deleted Incidence associated with the given unique identifier.
@param uid is a unique identifier string.
@param recurrenceId is possible recurrenceid of incidence, default is null
@return a pointer to the Incidence.
A null pointer is returned if no such Incidence exists.
*/
Incidence::Ptr deleted(const QString &uid, const KDateTime &recurrenceId = KDateTime()) const;
/**
Delete all incidences that are instances of recurring incidence @p incidence.
@param incidence is a pointer to a deleted Incidence
@return true if delete was successful; false otherwise
*/
virtual bool deleteIncidenceInstances(const Incidence::Ptr &incidence) = 0;
/**
Returns the Incidence associated with the given scheduling identifier.
@param sid is a unique scheduling identifier string.
@return a pointer to the Incidence.
A null pointer is returned if no such Incidence exists.
*/
virtual Incidence::Ptr incidenceFromSchedulingID(const QString &sid) const;
/**
Searches all events and todos for an incidence with this
scheduling identifier. Returns a list of matching results.
@param sid is a unique scheduling identifier string.
*/
virtual Incidence::List incidencesFromSchedulingID(const QString &sid) const;
/**
Create a merged list of Events, Todos, and Journals.
@param events is an Event list to merge.
@param todos is a Todo list to merge.
@param journals is a Journal list to merge.
@return a list of merged Incidences.
*/
static Incidence::List mergeIncidenceList(const Event::List &events,
const Todo::List &todos,
const Journal::List &journals);
/**
Flag that a change to a Calendar Incidence is starting.
@param incidence is a pointer to the Incidence that will be changing.
*/
virtual bool beginChange(const Incidence::Ptr &incidence);
/**
Flag that a change to a Calendar Incidence has completed.
@param incidence is a pointer to the Incidence that was changed.
*/
virtual bool endChange(const Incidence::Ptr &incidence);
/**
Dissociate an Incidence from a recurring Incidence.
By default, only one single Incidence for the specified @a date
will be dissociated and returned. If @a single is false, then
the recurrence will be split at @a date, the old Incidence will
have its recurrence ending at @a date and the new Incidence
will have all recurrences past the @a date.
@param incidence is a pointer to a recurring Incidence.
@param date is the QDate within the recurring Incidence on which
the dissociation will be performed.
@param spec is the spec in which the @a date is formulated.
@param single is a flag meaning that a new Incidence should be created
from the recurring Incidences after @a date.
@return a pointer to a new recurring Incidence if @a single is false.
@deprecated Use createException()
*/
KCALCORE_DEPRECATED Incidence::Ptr dissociateOccurrence(
const Incidence::Ptr &incidence, const QDate &date,
const KDateTime::Spec &spec, bool single = true);
/**
Creates an exception for an occurrence from a recurring Incidence.
The returned exception is not automatically inserted into the calendar.
@param incidence is a pointer to a recurring Incidence.
@param recurrenceId specifies the specific occurrence for which the
exception applies.
@param thisAndFuture specifies if the exception applies only this specific
occcurrence or also to all future occurrences.
@return a pointer to a new exception incidence with @param recurrenceId set.
@since 4.11
*/
static Incidence::Ptr createException(const Incidence::Ptr &incidence,
const KDateTime &recurrenceId,
bool thisAndFuture = false);
// Event Specific Methods //
/**
Inserts an Event into the calendar.
@param event is a pointer to the Event to insert.
@return true if the Event was successfully inserted; false otherwise.
@see deleteEvent()
*/
virtual bool addEvent(const Event::Ptr &event) = 0;
/**
Removes an Event from the calendar.
@param event is a pointer to the Event to remove.
@return true if the Event was successfully remove; false otherwise.
@see addEvent(), deleteAllEvents()
*/
virtual bool deleteEvent(const Event::Ptr &event) = 0;
/**
Delete all events that are instances of recurring event @p event.
@param event is a pointer to a deleted Event
@return true if delete was successful; false otherwise
*/
virtual bool deleteEventInstances(const Event::Ptr &event) = 0;
/**
Removes all Events from the calendar.
@see deleteEvent()
TODO_KDE5: Remove these methods. They are dangerous and don't add value.
*/
virtual void deleteAllEvents() = 0;
/**
Sort a list of Events.
@param eventList is a pointer to a list of Events.
@param sortField specifies the EventSortField.
@param sortDirection specifies the SortDirection.
@return a list of Events sorted as specified.
*/
static Event::List sortEvents(const Event::List &eventList,
EventSortField sortField,
SortDirection sortDirection);
/**
Returns a sorted, filtered list of all Events for this Calendar.
@param sortField specifies the EventSortField.
@param sortDirection specifies the SortDirection.
@return the list of all filtered Events sorted as specified.
*/
virtual Event::List events(EventSortField sortField = EventSortUnsorted,
SortDirection sortDirection = SortDirectionAscending) const;
/**
Returns a filtered list of all Events which occur on the given timestamp.
@param dt request filtered Event list for this KDateTime only.
@return the list of filtered Events occurring on the specified timestamp.
*/
Event::List events(const KDateTime &dt) const;
/**
Returns a filtered list of all Events occurring within a date range.
@param start is the starting date.
@param end is the ending date.
@param timeSpec time zone etc. to interpret @p start and @p end,
or the calendar's default time spec if none is specified
@param inclusive if true only Events which are completely included
within the date range are returned.
@return the list of filtered Events occurring within the specified
date range.
*/
Event::List events(const QDate &start, const QDate &end,
const KDateTime::Spec &timeSpec = KDateTime::Spec(),
bool inclusive = false) const;
/**
Returns a sorted, filtered list of all Events which occur on the given
date. The Events are sorted according to @a sortField and
@a sortDirection.
@param date request filtered Event list for this QDate only.
@param timeSpec time zone etc. to interpret @p start and @p end,
or the calendar's default time spec if none is specified
@param sortField specifies the EventSortField.
@param sortDirection specifies the SortDirection.
@return the list of sorted, filtered Events occurring on @a date.
*/
Event::List events(const QDate &date,
const KDateTime::Spec &timeSpec = KDateTime::Spec(),
EventSortField sortField = EventSortUnsorted,
SortDirection sortDirection = SortDirectionAscending) const;
/**
Returns a sorted, unfiltered list of all Events for this Calendar.
@param sortField specifies the EventSortField.
@param sortDirection specifies the SortDirection.
@return the list of all unfiltered Events sorted as specified.
*/
virtual Event::List rawEvents(
EventSortField sortField = EventSortUnsorted,
SortDirection sortDirection = SortDirectionAscending) const = 0;
/**
Returns an unfiltered list of all Events which occur on the given
timestamp.
@param dt request unfiltered Event list for this KDateTime only.
@return the list of unfiltered Events occurring on the specified
timestamp.
*/
virtual Event::List rawEventsForDate(const KDateTime &dt) const = 0;
/**
Returns an unfiltered list of all Events occurring within a date range.
@param start is the starting date
@param end is the ending date
@param timeSpec time zone etc. to interpret @p start and @p end,
or the calendar's default time spec if none is specified
@param inclusive if true only Events which are completely included
within the date range are returned.
@return the list of unfiltered Events occurring within the specified
date range.
*/
virtual Event::List rawEvents(const QDate &start, const QDate &end,
const KDateTime::Spec &timeSpec = KDateTime::Spec(),
bool inclusive = false) const = 0;
/**
Returns a sorted, unfiltered list of all Events which occur on the given
date. The Events are sorted according to @a sortField and
@a sortDirection.
@param date request unfiltered Event list for this QDate only
@param timeSpec time zone etc. to interpret @p date,
or the calendar's default time spec if none is specified
@param sortField specifies the EventSortField
@param sortDirection specifies the SortDirection
@return the list of sorted, unfiltered Events occurring on @p date
*/
virtual Event::List rawEventsForDate(
const QDate &date,
const KDateTime::Spec &timeSpec = KDateTime::Spec(),
EventSortField sortField = EventSortUnsorted,
SortDirection sortDirection = SortDirectionAscending) const = 0;
/**
Returns the Event associated with the given unique identifier.
@param uid is a unique identifier string.
@param recurrenceId is possible recurrenceId of event, default is null
@return a pointer to the Event.
A null pointer is returned if no such Event exists.
*/
virtual Event::Ptr event(const QString &uid,
const KDateTime &recurrenceId = KDateTime()) const = 0;
/**
Returns the deleted Event associated with the given unique identifier.
@param uid is a unique identifier string.
@param recurrenceId is possible recurrenceId of event, default is null
@return a pointer to the deleted Event.
A null pointer is returned if no such deleted Event exists, or if deletion tracking
is disabled.
@see deletionTracking()
*/
virtual Event::Ptr deletedEvent(const QString &uid,
const KDateTime &recurrenceId = KDateTime()) const = 0;
/**
Returns a sorted, unfiltered list of all deleted Events for this Calendar.
@param sortField specifies the EventSortField.
@param sortDirection specifies the SortDirection.
@return the list of all unfiltered deleted Events sorted as specified. An empty list
is returned if deletion tracking is disabled.
@see deletionTracking()
*/
virtual Event::List deletedEvents(
EventSortField sortField = EventSortUnsorted,
SortDirection sortDirection = SortDirectionAscending) const = 0;
/**
Returns a sorted, unfiltered list of all possible instances for this recurring Event.
@param event event to check for. Caller guarantees it's of type Event.
@param sortField specifies the EventSortField.
@param sortDirection specifies the SortDirection.
@return the list of all unfiltered event instances sorted as specified.
*/
virtual Event::List eventInstances(
const Incidence::Ptr &event,
EventSortField sortField = EventSortUnsorted,
SortDirection sortDirection = SortDirectionAscending) const = 0;
// Todo Specific Methods //
/**
Inserts a Todo into the calendar.
@param todo is a pointer to the Todo to insert.
@return true if the Todo was successfully inserted; false otherwise.
@see deleteTodo()
*/
virtual bool addTodo(const Todo::Ptr &todo) = 0;
/**
Removes a Todo from the calendar.
@param todo is a pointer to the Todo to remove.
@return true if the Todo was successfully removed; false otherwise.
@see addTodo(), deleteAllTodos()
*/
virtual bool deleteTodo(const Todo::Ptr &todo) = 0;
/**
Delete all to-dos that are instances of recurring to-do @p todo.
@param todo is a pointer to a deleted Todo
@return true if delete was successful; false otherwise
*/
virtual bool deleteTodoInstances(const Todo::Ptr &todo) = 0;
/**
Removes all To-dos from the calendar.
@see deleteTodo()
*/
virtual void deleteAllTodos() = 0;
/**
Sort a list of Todos.
@param todoList is a pointer to a list of Todos.
@param sortField specifies the TodoSortField.
@param sortDirection specifies the SortDirection.
@return a list of Todos sorted as specified.
*/
static Todo::List sortTodos(const Todo::List &todoList,
TodoSortField sortField,
SortDirection sortDirection);
/**
Returns a sorted, filtered list of all Todos for this Calendar.
@param sortField specifies the TodoSortField.
@param sortDirection specifies the SortDirection.
@return the list of all filtered Todos sorted as specified.
*/
virtual Todo::List todos(TodoSortField sortField = TodoSortUnsorted,
SortDirection sortDirection = SortDirectionAscending) const;
/**
Returns a filtered list of all Todos which are due on the specified date.
@param date request filtered Todos due on this QDate.
@return the list of filtered Todos due on the specified date.
*/
virtual Todo::List todos(const QDate &date) const;
/**
Returns a filtered list of all Todos occurring within a date range.
@param start is the starting date
@param end is the ending date
@param timespec time zone etc. to interpret @p start and @p end,
or the calendar's default time spec if none is specified
@param inclusive if true only Todos which are completely included
within the date range are returned.
@return the list of filtered Todos occurring within the specified
date range.
*/
virtual Todo::List todos(const QDate &start, const QDate &end,
const KDateTime::Spec &timespec = KDateTime::Spec(),
bool inclusive = false) const;
/**
Returns a sorted, unfiltered list of all Todos for this Calendar.
@param sortField specifies the TodoSortField.
@param sortDirection specifies the SortDirection.
@return the list of all unfiltered Todos sorted as specified.
*/
virtual Todo::List rawTodos(
TodoSortField sortField = TodoSortUnsorted,
SortDirection sortDirection = SortDirectionAscending) const = 0;
/**
Returns an unfiltered list of all Todos which due on the specified date.
@param date request unfiltered Todos due on this QDate.
@return the list of unfiltered Todos due on the specified date.
*/
virtual Todo::List rawTodosForDate(const QDate &date) const = 0;
/**
Returns an unfiltered list of all Todos occurring within a date range.
@param start is the starting date
@param end is the ending date
@param timespec time zone etc. to interpret @p start and @p end,
or the calendar's default time spec if none is specified
@param inclusive if true only Todos which are completely included
within the date range are returned.
@return the list of unfiltered Todos occurring within the specified
date range.
*/
virtual Todo::List rawTodos(const QDate &start, const QDate &end,
const KDateTime::Spec &timespec = KDateTime::Spec(),
bool inclusive = false) const = 0;
/**
Returns the Todo associated with the given unique identifier.
@param uid is a unique identifier string.
@param recurrenceId is possible recurrenceId of todo, default is null
@return a pointer to the Todo.
A null pointer is returned if no such Todo exists.
*/
virtual Todo::Ptr todo(const QString &uid,
const KDateTime &recurrenceId = KDateTime()) const = 0;
/**
Returns the deleted Todo associated with the given unique identifier.
@param uid is a unique identifier string.
@param recurrenceId is possible recurrenceId of todo, default is null
@return a pointer to the deleted Todo.
A null pointer is returned if no such deleted Todo exists or if deletion tracking
is disabled.
@see deletionTracking()
*/
virtual Todo::Ptr deletedTodo(const QString &uid,
const KDateTime &recurrenceId = KDateTime()) const = 0;
/**
Returns a sorted, unfiltered list of all deleted Todos for this Calendar.
@param sortField specifies the TodoSortField.
@param sortDirection specifies the SortDirection.
@return the list of all unfiltered deleted Todos sorted as specified. An empty list
is returned if deletion tracking is disabled.
@see deletionTracking()
*/
virtual Todo::List deletedTodos(
TodoSortField sortField = TodoSortUnsorted,
SortDirection sortDirection = SortDirectionAscending) const = 0;
/**
Returns a sorted, unfiltered list of all possible instances for this recurring Todo.
@param todo todo to check for. Caller guarantees it's of type Todo.
@param sortField specifies the TodoSortField.
@param sortDirection specifies the SortDirection.
@return the list of all unfiltered todo instances sorted as specified.
*/
virtual Todo::List todoInstances(
const Incidence::Ptr &todo,
TodoSortField sortField = TodoSortUnsorted,
SortDirection sortDirection = SortDirectionAscending) const = 0;
// Journal Specific Methods //
/**
Inserts a Journal into the calendar.
@param journal is a pointer to the Journal to insert.
@return true if the Journal was successfully inserted; false otherwise.
@see deleteJournal()
*/
virtual bool addJournal(const Journal::Ptr &journal) = 0;
/**
Removes a Journal from the calendar.
@param journal is a pointer to the Journal to remove.
@return true if the Journal was successfully removed; false otherwise.
@see addJournal(), deleteAllJournals()
*/
virtual bool deleteJournal(const Journal::Ptr &journal) = 0;
/**
Delete all journals that are instances of recurring journal @p journal.
@param journal is a pointer to a deleted Journal
@return true if delete was successful; false otherwise
*/
virtual bool deleteJournalInstances(const Journal::Ptr &journal) = 0;
/**
Removes all Journals from the calendar.
@see deleteJournal()
*/
virtual void deleteAllJournals() = 0;
/**
Sort a list of Journals.
@param journalList is a pointer to a list of Journals.
@param sortField specifies the JournalSortField.
@param sortDirection specifies the SortDirection.
@return a list of Journals sorted as specified.
*/
static Journal::List sortJournals(const Journal::List &journalList,
JournalSortField sortField,
SortDirection sortDirection);
/**
Returns a sorted, filtered list of all Journals for this Calendar.
@param sortField specifies the JournalSortField.
@param sortDirection specifies the SortDirection.
@return the list of all filtered Journals sorted as specified.
*/
virtual Journal::List journals(
JournalSortField sortField = JournalSortUnsorted,
SortDirection sortDirection = SortDirectionAscending) const;
/**
Returns a filtered list of all Journals for on the specified date.
@param date request filtered Journals for this QDate only.
@return the list of filtered Journals for the specified date.
*/
virtual Journal::List journals(const QDate &date) const;
/**
Returns a sorted, unfiltered list of all Journals for this Calendar.
@param sortField specifies the JournalSortField.
@param sortDirection specifies the SortDirection.
@return the list of all unfiltered Journals sorted as specified.
*/
virtual Journal::List rawJournals(
JournalSortField sortField = JournalSortUnsorted,
SortDirection sortDirection = SortDirectionAscending) const = 0;
/**
Returns an unfiltered list of all Journals for on the specified date.
@param date request unfiltered Journals for this QDate only.
@return the list of unfiltered Journals for the specified date.
*/
virtual Journal::List rawJournalsForDate(const QDate &date) const = 0;
/**
Returns the Journal associated with the given unique identifier.
@param uid is a unique identifier string.
@param recurrenceId is possible recurrenceId of journal, default is null
@return a pointer to the Journal.
A null pointer is returned if no such Journal exists.
*/
virtual Journal::Ptr journal(const QString &uid,
const KDateTime &recurrenceId = KDateTime()) const = 0;
/**
Returns the deleted Journal associated with the given unique identifier.
@param uid is a unique identifier string.
@param recurrenceId is possible recurrenceId of journal, default is null
@return a pointer to the deleted Journal.
A null pointer is returned if no such deleted Journal exists or if deletion tracking
is disabled.
@see deletionTracking()
*/
virtual Journal::Ptr deletedJournal(const QString &uid,
const KDateTime &recurrenceId = KDateTime()) const = 0;
/**
Returns a sorted, unfiltered list of all deleted Journals for this Calendar.
@param sortField specifies the JournalSortField.
@param sortDirection specifies the SortDirection.
@return the list of all unfiltered deleted Journals sorted as specified. An empty list
is returned if deletion tracking is disabled.
@see deletionTracking()
*/
virtual Journal::List deletedJournals(
JournalSortField sortField = JournalSortUnsorted,
SortDirection sortDirection = SortDirectionAscending) const = 0;
/**
Returns a sorted, unfiltered list of all instances for this recurring Journal.
@param journal journal to check for. Caller guarantees it's of type Journal.
@param sortField specifies the JournalSortField.
@param sortDirection specifies the SortDirection.
@return the list of all unfiltered journal instances sorted as specified.
*/
virtual Journal::List journalInstances(
const Incidence::Ptr &journal,
JournalSortField sortField = JournalSortUnsorted,
SortDirection sortDirection = SortDirectionAscending) const = 0;
// Relations Specific Methods //
/**
Setup Relations for an Incidence.
@param incidence is a pointer to the Incidence to have a Relation setup.
*/
virtual void setupRelations(const Incidence::Ptr &incidence);
/**
Removes all Relations from an Incidence.
@param incidence is a pointer to the Incidence to have a Relation removed.
*/
virtual void removeRelations(const Incidence::Ptr &incidence);
/**
Checks if @p ancestor is an ancestor of @p incidence
@param ancestor is the incidence we are testing to be an ancestor.
@param incidence is the incidence we are testing to be descended from @p ancestor.
*/
bool isAncestorOf(const Incidence::Ptr &ancestor,
const Incidence::Ptr &incidence) const;
/**
Returns a list of incidences that have a relation of RELTYPE parent
to incidence @p uid.
@param uid The parent identifier whos children we want to obtain.
*/
Incidence::List relations(const QString &uid) const;
// Filter Specific Methods //
/**
Sets the calendar filter.
@param filter a pointer to a CalFilter object which will be
used to filter Calendar Incidences. The Calendar takes
ownership of @p filter.
@see filter()
*/
void setFilter(CalFilter *filter);
/**
Returns the calendar filter.
@return a pointer to the calendar CalFilter.
A null pointer is returned if no such CalFilter exists.
@see setFilter()
*/
CalFilter *filter() const;
// Alarm Specific Methods //
/**
Returns a list of Alarms within a time range for this Calendar.
@param from is the starting timestamp.
@param to is the ending timestamp.
@return the list of Alarms for the for the specified time range.
*/
virtual Alarm::List alarms(const KDateTime &from, const KDateTime &to) const = 0;
// Observer Specific Methods //
/**
@class CalendarObserver
The CalendarObserver class.
*/
class KCALCORE_EXPORT CalendarObserver //krazy:exclude=dpointer
{
public:
/**
Destructor.
*/
virtual ~CalendarObserver();
/**
Notify the Observer that a Calendar has been modified.
@param modified set if the calendar has been modified.
@param calendar is a pointer to the Calendar object that
is being observed.
*/
virtual void calendarModified(bool modified, Calendar *calendar);
/**
Notify the Observer that an Incidence has been inserted.
@param incidence is a pointer to the Incidence that was inserted.
*/
virtual void calendarIncidenceAdded(const Incidence::Ptr &incidence);
/**
Notify the Observer that an Incidence has been modified.
@param incidence is a pointer to the Incidence that was modified.
*/
virtual void calendarIncidenceChanged(const Incidence::Ptr &incidence);
/**
Notify the Observer that an Incidence has been removed.
@param incidence is a pointer to the Incidence that was removed.
*/
virtual void calendarIncidenceDeleted(const Incidence::Ptr &incidence);
/**
Notify the Observer that an addition of Incidence has been canceled.
@param incidence is a pointer to the Incidence that was removed.
*/
virtual void calendarIncidenceAdditionCanceled(const Incidence::Ptr &incidence);
};
/**
Registers an Observer for this Calendar.
@param observer is a pointer to an Observer object that will be
watching this Calendar.
@see unregisterObserver()
*/
void registerObserver(CalendarObserver *observer);
/**
Unregisters an Observer for this Calendar.
@param observer is a pointer to an Observer object that has been
watching this Calendar.
@see registerObserver()
*/
void unregisterObserver(CalendarObserver *observer);
using QObject::event; // prevent warning about hidden virtual method
protected:
/**
The Observer interface. So far not implemented.
@param uid is the UID for the Incidence that has been updated.
@param recurrenceId is possible recurrenceid of incidence.
*/
void incidenceUpdated(const QString &uid, const KDateTime &recurrenceId);
/**
Let Calendar subclasses set the time specification.
@param timeSpec is the time specification (time zone, etc.) for
viewing Incidence dates.\n
*/
virtual void doSetTimeSpec(const KDateTime::Spec &timeSpec);
/**
Let Calendar subclasses notify that they inserted an Incidence.
@param incidence is a pointer to the Incidence object that was inserted.
*/
void notifyIncidenceAdded(const Incidence::Ptr &incidence);
/**
Let Calendar subclasses notify that they modified an Incidence.
@param incidence is a pointer to the Incidence object that was modified.
*/
void notifyIncidenceChanged(const Incidence::Ptr &incidence);
/**
Let Calendar subclasses notify that they removed an Incidence.
@param incidence is a pointer to the Incidence object that was removed.
*/
void notifyIncidenceDeleted(const Incidence::Ptr &incidence);
/**
Let Calendar subclasses notify that they canceled addition of an Incidence.
@param incidence is a pointer to the Incidence object that addition as canceled.
*/
void notifyIncidenceAdditionCanceled(const Incidence::Ptr &incidence);
/**
@copydoc
CustomProperties::customPropertyUpdated()
*/
virtual void customPropertyUpdated();
/**
Let Calendar subclasses notify that they enabled an Observer.
@param enabled if true tells the calendar that a subclass has
enabled an Observer.
*/
void setObserversEnabled(bool enabled);
/**
Appends alarms of incidence in interval to list of alarms.
@param alarms is a List of Alarms to be appended onto.
@param incidence is a pointer to an Incidence containing the Alarm
to be appended.
@param from is the lower range of the next Alarm repitition.
@param to is the upper range of the next Alarm repitition.
*/
void appendAlarms(Alarm::List &alarms, const Incidence::Ptr &incidence,
const KDateTime &from, const KDateTime &to) const;
/**
Appends alarms of recurring events in interval to list of alarms.
@param alarms is a List of Alarms to be appended onto.
@param incidence is a pointer to an Incidence containing the Alarm
to be appended.
@param from is the lower range of the next Alarm repitition.
@param to is the upper range of the next Alarm repitition.
*/
void appendRecurringAlarms(Alarm::List &alarms, const Incidence::Ptr &incidence,
const KDateTime &from, const KDateTime &to) const;
/**
Enables or disabled deletion tracking.
Default is true.
@see deletedEvent()
@see deletedTodo()
@see deletedJournal()
@since 4.11
*/
void setDeletionTracking(bool enable);
/**
Returns if deletion tracking is enabled.
Default is true.
@since 4.11
*/
bool deletionTracking() const;
/**
@copydoc
IncidenceBase::virtual_hook()
*/
virtual void virtual_hook(int id, void *data);
Q_SIGNALS:
/**
Emitted when setFilter() is called.
@since 4.11
*/
void filterChanged();
private:
//@cond PRIVATE
class Private;
Private *const d;
//@endcond
Q_DISABLE_COPY(Calendar)
};
}
#endif