KCalendarCore::Calendar
#include <calendar.h>
Classes | |
class | CalendarObserver |
Public Types | |
typedef QSharedPointer< Calendar > | Ptr |
Public Types inherited from QObject | |
typedef | QObjectList |
Properties | |
KCalendarCore::AccessMode | accessMode |
QIcon | icon |
QString | id |
bool | isLoading |
QString | name |
KCalendarCore::Person | owner |
QString | productId |
Properties inherited from QObject | |
objectName | |
Signals | |
void | accessModeChanged () |
void | filterChanged () |
void | iconChanged () |
void | idChanged () |
void | isLoadingChanged () |
void | nameChanged () |
void | ownerChanged () |
Static Public Member Functions | |
static Incidence::Ptr | createException (const Incidence::Ptr &incidence, const QDateTime &recurrenceId, bool thisAndFuture=false) |
static Incidence::List | mergeIncidenceList (const Event::List &events, const Todo::List &todos, const Journal::List &journals) |
static Event::List | sortEvents (Event::List &&eventList, EventSortField sortField, SortDirection sortDirection) |
static Journal::List | sortJournals (Journal::List &&journalList, JournalSortField sortField, SortDirection sortDirection) |
static Todo::List | sortTodos (Todo::List &&todoList, TodoSortField sortField, SortDirection sortDirection) |
Static Public Member Functions inherited from QObject | |
QMetaObject::Connection | connect (const QObject *sender, const char *signal, const QObject *receiver, const char *method, Qt::ConnectionType type) |
QMetaObject::Connection | connect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method, Qt::ConnectionType type) |
QMetaObject::Connection | connect (const QObject *sender, PointerToMemberFunction signal, const QObject *context, Functor functor, Qt::ConnectionType type) |
QMetaObject::Connection | connect (const QObject *sender, PointerToMemberFunction signal, const QObject *receiver, PointerToMemberFunction method, Qt::ConnectionType type) |
QMetaObject::Connection | connect (const QObject *sender, PointerToMemberFunction signal, Functor functor) |
bool | disconnect (const QMetaObject::Connection &connection) |
bool | disconnect (const QObject *sender, const char *signal, const QObject *receiver, const char *method) |
bool | disconnect (const QObject *sender, const QMetaMethod &signal, const QObject *receiver, const QMetaMethod &method) |
bool | disconnect (const QObject *sender, PointerToMemberFunction signal, const QObject *receiver, PointerToMemberFunction method) |
QString | tr (const char *sourceText, const char *disambiguation, int n) |
Static Public Member Functions inherited from KCalendarCore::CustomProperties | |
static QByteArray | customPropertyName (const QByteArray &app, const QByteArray &key) |
Detailed Description
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.
Ownership of Incidences:
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 Not attempt to 'delete' any Incidence object you get from Calendar – use the delete...() methods.
Definition at line 132 of file calendar.h.
Member Typedef Documentation
◆ Ptr
A shared pointer to a Calendar.
Definition at line 147 of file calendar.h.
Property Documentation
◆ accessMode
|
readwrite |
Definition at line 140 of file calendar.h.
◆ icon
|
readwrite |
Definition at line 139 of file calendar.h.
◆ id
|
readwrite |
Definition at line 137 of file calendar.h.
◆ isLoading
|
read |
Definition at line 141 of file calendar.h.
◆ name
|
readwrite |
Definition at line 138 of file calendar.h.
◆ owner
|
readwrite |
Definition at line 136 of file calendar.h.
◆ productId
|
readwrite |
Definition at line 135 of file calendar.h.
Constructor & Destructor Documentation
◆ Calendar() [1/2]
|
explicit |
Constructs a calendar with a specified time zone timeZone
.
The time zone is used as the default for creating or modifying incidences in the Calendar. The time zone does not alter existing incidences.
- Parameters
-
timeZone time specification
Definition at line 117 of file calendar.cpp.
◆ Calendar() [2/2]
|
explicit |
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.
- Parameters
-
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 time zone. Example: "Europe/Berlin"
Definition at line 127 of file calendar.cpp.
◆ ~Calendar()
|
override |
Destroys the calendar.
Definition at line 133 of file calendar.cpp.
Member Function Documentation
◆ accessMode()
AccessMode Calendar::accessMode | ( | ) | const |
This calendar's AccessMode, i.e.
whether it is writable or read-only. Defaults to ReadWrite.
- Since
- 5.85
- See also
- setAccessMode()
Definition at line 987 of file calendar.cpp.
◆ accessModeChanged
|
signal |
Emitted when the AccessMode changes.
- Since
- 5.85
- See also
- accessMode()
◆ addEvent()
|
pure virtual |
Inserts an Event into the calendar.
- Parameters
-
event is a pointer to the Event to insert.
- Returns
- true if the Event was successfully inserted; false otherwise.
- See also
- deleteEvent()
Implemented in Akonadi::CalendarBase, Akonadi::CollectionCalendar, and KCalendarCore::MemoryCalendar.
◆ addIncidence()
|
virtual |
Inserts an Incidence into the calendar.
- Parameters
-
incidence is a pointer to the Incidence to insert.
- Returns
- true if the Incidence was successfully inserted; false otherwise.
- See also
- deleteIncidence()
Reimplemented in Akonadi::CalendarBase, and KCalendarCore::MemoryCalendar.
Definition at line 346 of file calendar.cpp.
◆ addJournal()
|
pure virtual |
Inserts a Journal into the calendar.
- Parameters
-
journal is a pointer to the Journal to insert.
- Returns
- true if the Journal was successfully inserted; false otherwise.
- See also
- deleteJournal()
Implemented in Akonadi::CalendarBase, Akonadi::CollectionCalendar, and KCalendarCore::MemoryCalendar.
◆ addTodo()
|
pure virtual |
Inserts a Todo into the calendar.
- Parameters
-
todo is a pointer to the Todo to insert.
- Returns
- true if the Todo was successfully inserted; false otherwise.
- See also
- deleteTodo()
Implemented in Akonadi::CalendarBase, Akonadi::CollectionCalendar, and KCalendarCore::MemoryCalendar.
◆ alarms()
|
pure virtual |
Returns a list of Alarms within a time range for this Calendar.
- Parameters
-
from is the starting timestamp. to is the ending timestamp. excludeBlockedAlarms if true, alarms belonging to blocked collections aren't returned.
- Returns
- the list of Alarms for the for the specified time range.
Implemented in Akonadi::ETMCalendar, and KCalendarCore::MemoryCalendar.
◆ alarmsTo()
Alarm::List Calendar::alarmsTo | ( | const QDateTime & | to | ) | const |
Return a list of Alarms that occur before the specified timestamp.
- Parameters
-
to is the ending timestamp.
- Returns
- the list of Alarms occurring before the specified QDateTime.
- Since
- 5.77
Definition at line 938 of file calendar.cpp.
◆ appendAlarms()
|
protected |
Appends alarms of incidence in interval to list of alarms.
- Parameters
-
alarms is a List of Alarms to be appended onto. incidence is a pointer to an Incidence containing the Alarm to be appended. from is the lower range of the next Alarm repetition. to is the upper range of the next Alarm repetition.
Definition at line 808 of file calendar.cpp.
◆ appendRecurringAlarms()
|
protected |
Appends alarms of recurring events in interval to list of alarms.
- Parameters
-
alarms is a List of Alarms to be appended onto. incidence is a pointer to an Incidence containing the Alarm to be appended. from is the lower range of the next Alarm repetition. to is the upper range of the next Alarm repetition.
Definition at line 824 of file calendar.cpp.
◆ batchAdding()
bool Calendar::batchAdding | ( | ) | const |
- Returns
- true if batch adding is in progress
Definition at line 933 of file calendar.cpp.
◆ beginChange()
|
virtual |
Flag that a change to a Calendar Incidence is starting.
- Parameters
-
incidence is a pointer to the Incidence that will be changing.
Definition at line 791 of file calendar.cpp.
◆ categories()
QStringList Calendar::categories | ( | ) | const |
Returns a list of all categories used by Incidences in this Calendar.
- Returns
- a QStringList containing all the categories.
Definition at line 231 of file calendar.cpp.
◆ createException()
|
static |
Creates an exception for an occurrence from a recurring Incidence.
The returned exception is not automatically inserted into the calendar.
- Parameters
-
incidence is a pointer to a recurring Incidence. recurrenceId specifies the specific occurrence for which the exception applies. thisAndFuture specifies if the exception applies only this specific occcurrence or also to all future occurrences.
- Returns
- a pointer to a new exception incidence with
- Parameters
-
recurrenceId set.
- Since
- 4.11
Definition at line 372 of file calendar.cpp.
◆ customPropertyUpdated()
|
overrideprotectedvirtual |
CustomProperties::customPropertyUpdated()
Reimplemented from KCalendarCore::CustomProperties.
Definition at line 753 of file calendar.cpp.
◆ deleteEvent()
|
pure virtual |
Removes an Event from the calendar.
- Parameters
-
event is a pointer to the Event to remove.
- Returns
- true if the Event was successfully remove; false otherwise.
- See also
- addEvent()
Implemented in Akonadi::CalendarBase, and KCalendarCore::MemoryCalendar.
◆ deleteEventInstances()
|
pure virtual |
Delete all events that are instances of recurring event event
.
- Parameters
-
event is a pointer to a deleted Event
- Returns
- true if delete was successful; false otherwise
Implemented in KCalendarCore::MemoryCalendar.
◆ deleteIncidence()
|
virtual |
Removes an Incidence from the calendar.
- Parameters
-
incidence is a pointer to the Incidence to remove.
- Returns
- true if the Incidence was successfully removed; false otherwise.
- See also
- addIncidence()
Reimplemented in Akonadi::CalendarBase, and KCalendarCore::MemoryCalendar.
Definition at line 356 of file calendar.cpp.
◆ deleteIncidenceInstances()
|
pure virtual |
Delete all incidences that are instances of recurring incidence incidence
.
- Parameters
-
incidence is a pointer to a deleted Incidence
- Returns
- true if delete was successful; false otherwise
Implemented in KCalendarCore::MemoryCalendar.
◆ deleteJournal()
|
pure virtual |
Removes a Journal from the calendar.
- Parameters
-
journal is a pointer to the Journal to remove.
- Returns
- true if the Journal was successfully removed; false otherwise.
- See also
- addJournal()
Implemented in Akonadi::CalendarBase, and KCalendarCore::MemoryCalendar.
◆ deleteJournalInstances()
|
pure virtual |
Delete all journals that are instances of recurring journal journal
.
- Parameters
-
journal is a pointer to a deleted Journal
- Returns
- true if delete was successful; false otherwise
Implemented in KCalendarCore::MemoryCalendar.
◆ deleteTodo()
|
pure virtual |
Removes a Todo from the calendar.
- Parameters
-
todo is a pointer to the Todo to remove.
- Returns
- true if the Todo was successfully removed; false otherwise.
- See also
- addTodo()
Implemented in Akonadi::CalendarBase, and KCalendarCore::MemoryCalendar.
◆ deleteTodoInstances()
|
pure virtual |
Delete all to-dos that are instances of recurring to-do todo
.
- Parameters
-
todo is a pointer to a deleted Todo
- Returns
- true if delete was successful; false otherwise
Implemented in KCalendarCore::MemoryCalendar.
◆ doSetTimeZone()
|
protectedvirtual |
Let Calendar subclasses set the time specification.
- Parameters
-
timeZone is the time specification (time zone, etc.) for viewing Incidence dates.
Reimplemented in KCalendarCore::MemoryCalendar.
Definition at line 664 of file calendar.cpp.
◆ endBatchAdding()
|
virtual |
Tells the Calendar that you stopped adding a batch of incidences.
- See also
- startBatchAdding()
Reimplemented in Akonadi::CalendarBase.
Definition at line 928 of file calendar.cpp.
◆ endChange()
|
virtual |
Flag that a change to a Calendar Incidence has completed.
- Parameters
-
incidence is a pointer to the Incidence that was changed.
Definition at line 797 of file calendar.cpp.
◆ event() [1/2]
|
pure virtual |
Returns the Event associated with the given unique identifier.
- Parameters
-
uid is a unique identifier string. recurrenceId is possible recurrenceId of event, default is null
Implemented in KCalendarCore::MemoryCalendar.
◆ event() [2/2]
◆ eventInstances()
|
pure virtual |
Returns a sorted, unfiltered list of all possible instances for this recurring Event.
- Parameters
-
event event to check for. Caller guarantees it's of type Event. sortField specifies the EventSortField. sortDirection specifies the SortDirection.
- Returns
- the list of all unfiltered event instances sorted as specified.
Implemented in KCalendarCore::MemoryCalendar.
◆ events() [1/4]
Event::List Calendar::events | ( | const QDate & | date, |
const QTimeZone & | timeZone = {}, | ||
EventSortField | sortField = EventSortUnsorted, | ||
SortDirection | sortDirection = SortDirectionAscending ) const |
Returns a sorted, filtered list of all Events which occur on the given date.
The Events are sorted according to sortField and sortDirection.
- Parameters
-
date request filtered Event list for this QDate only. timeZone time zone to interpret start
andend
, or the calendar's default time zone if none is specifiedsortField specifies the EventSortField. sortDirection specifies the SortDirection.
- Returns
- the list of sorted, filtered Events occurring on date.
Definition at line 318 of file calendar.cpp.
◆ events() [2/4]
Event::List Calendar::events | ( | const QDate & | start, |
const QDate & | end, | ||
const QTimeZone & | timeZone = {}, | ||
bool | inclusive = false ) const |
Returns a filtered list of all Events occurring within a date range.
- Parameters
-
start is the starting date. end is the ending date. timeZone time zone to interpret start
andend
, or the calendar's default time zone if none is specifiedinclusive if true only Events which are completely included within the date range are returned.
- Returns
- the list of filtered Events occurring within the specified date range.
Definition at line 332 of file calendar.cpp.
◆ events() [3/4]
Event::List Calendar::events | ( | const QDateTime & | dt | ) | const |
Returns a filtered list of all Events which occur on the given timestamp.
- Returns
- the list of filtered Events occurring on the specified timestamp.
Definition at line 325 of file calendar.cpp.
◆ events() [4/4]
|
virtual |
Returns a sorted, filtered list of all Events for this Calendar.
- Parameters
-
sortField specifies the EventSortField. sortDirection specifies the SortDirection.
- Returns
- the list of all filtered Events sorted as specified.
Definition at line 339 of file calendar.cpp.
◆ filter()
CalFilter * Calendar::filter | ( | ) | const |
◆ filterChanged
|
signal |
Emitted when setFilter() is called.
- Since
- 4.11
◆ icon()
QIcon Calendar::icon | ( | ) | const |
◆ iconChanged
|
signal |
Emitted when the icon name changes.
- Since
- 5.85
- See also
- icon()
◆ id()
QString Calendar::id | ( | ) | const |
A unique identifier for this calendar.
- Since
- 5.85
- See also
- setId()
Definition at line 950 of file calendar.cpp.
◆ idChanged
|
signal |
Emitted when the id changes.
- Since
- 5.85
- See also
- id()
◆ incidence()
Incidence::Ptr Calendar::incidence | ( | const QString & | uid, |
const QDateTime & | recurrenceId = {} ) const |
Returns the Incidence associated with the given unique identifier.
- Parameters
-
uid is a unique identifier string. recurrenceId is possible recurrenceid of incidence, default is null
Definition at line 407 of file calendar.cpp.
◆ incidenceFromSchedulingID()
|
virtual |
Returns the Incidence associated with the given scheduling identifier.
- Parameters
-
sid is a unique scheduling identifier string.
Definition at line 433 of file calendar.cpp.
◆ incidences() [1/2]
|
virtual |
Returns a filtered list of all Incidences for this Calendar.
- Returns
- the list of all filtered Incidences.
Definition at line 254 of file calendar.cpp.
◆ incidences() [2/2]
|
virtual |
Returns a filtered list of all Incidences which occur on the given date.
- Returns
- the list of filtered Incidences occurring on the specified date.
Definition at line 249 of file calendar.cpp.
◆ incidencesFromSchedulingID()
|
virtual |
Searches all events and todos for an incidence with this scheduling identifier.
Returns a list of matching results.
- Parameters
-
sid is a unique scheduling identifier string.
Definition at line 423 of file calendar.cpp.
◆ incidenceUpdated()
|
overrideprotectedvirtual |
The Observer interface.
So far not implemented.
- Parameters
-
uid is the UID for the Incidence that has been updated. recurrenceId is possible recurrenceid of incidence.
Implements KCalendarCore::IncidenceBase::IncidenceObserver.
Reimplemented in KCalendarCore::MemoryCalendar.
Definition at line 646 of file calendar.cpp.
◆ instances()
|
virtual |
Returns an unfiltered list of all exceptions of this recurring incidence.
- Parameters
-
incidence incidence to check
- Returns
- the list of all unfiltered exceptions.
Definition at line 264 of file calendar.cpp.
◆ isLoading()
bool Calendar::isLoading | ( | ) | const |
Returns true
if the calendar is still loading its data and thus read access will not return complete (or even any) results.
- Since
- 5.96
Definition at line 1000 of file calendar.cpp.
◆ isLoadingChanged
|
signal |
Emitted when the loading state changed.
- Since
- 5.96
- See also
- isLoading()
◆ isModified()
bool Calendar::isModified | ( | ) | const |
Determine the calendar's modification status.
- Returns
- true if the calendar has been modified since open or last save.
- See also
- setModified()
Definition at line 641 of file calendar.cpp.
◆ journal()
|
pure virtual |
Returns the Journal associated with the given unique identifier.
- Parameters
-
uid is a unique identifier string. recurrenceId is possible recurrenceId of journal, default is null
Implemented in KCalendarCore::MemoryCalendar.
◆ journalInstances()
|
pure virtual |
Returns a sorted, unfiltered list of all instances for this recurring Journal.
- Parameters
-
journal journal to check for. Caller guarantees it's of type Journal. sortField specifies the JournalSortField. sortDirection specifies the SortDirection.
- Returns
- the list of all unfiltered journal instances sorted as specified.
Implemented in KCalendarCore::MemoryCalendar.
◆ journals() [1/2]
|
virtual |
Returns a filtered list of all Journals for on the specified date.
- Parameters
-
date request filtered Journals for this QDate only.
- Returns
- the list of filtered Journals for the specified date.
Definition at line 565 of file calendar.cpp.
◆ journals() [2/2]
|
virtual |
Returns a sorted, filtered list of all Journals for this Calendar.
- Parameters
-
sortField specifies the JournalSortField. sortDirection specifies the SortDirection.
- Returns
- the list of all filtered Journals sorted as specified.
Definition at line 558 of file calendar.cpp.
◆ mergeIncidenceList()
|
static |
Create a merged list of Events, Todos, and Journals.
static
- Parameters
-
events is an Event list to merge. todos is a Todo list to merge. journals is a Journal list to merge.
- Returns
- a list of merged Incidences.
Definition at line 769 of file calendar.cpp.
◆ name()
QString Calendar::name | ( | ) | const |
The user-visible name for this calendar.
- Since
- 5.85
- See also
- setName()
Definition at line 963 of file calendar.cpp.
◆ nameChanged
|
signal |
Emitted when the name changes.
- Since
- 5.85
- See also
- name()
◆ notifyIncidenceAboutToBeDeleted()
|
protected |
Let Calendar subclasses notify that they will remove an Incidence.
- Parameters
-
incidence is a pointer to the Incidence object that will be removed.
Definition at line 708 of file calendar.cpp.
◆ notifyIncidenceAdded()
|
protected |
Let Calendar subclasses notify that they inserted an Incidence.
- Parameters
-
incidence is a pointer to the Incidence object that was inserted.
Definition at line 669 of file calendar.cpp.
◆ notifyIncidenceAdditionCanceled()
|
protected |
Let Calendar subclasses notify that they canceled addition of an Incidence.
- Parameters
-
incidence is a pointer to the Incidence object that addition as canceled.
Definition at line 738 of file calendar.cpp.
◆ notifyIncidenceChanged()
|
protected |
Let Calendar subclasses notify that they modified an Incidence.
- Parameters
-
incidence is a pointer to the Incidence object that was modified.
Definition at line 693 of file calendar.cpp.
◆ notifyIncidenceDeleted()
|
protected |
Let Calendar subclasses notify that they removed an Incidence.
- Parameters
-
incidence is a pointer to the Incidence object that has been removed.
Definition at line 723 of file calendar.cpp.
◆ owner()
Person Calendar::owner | ( | ) | const |
Returns the owner of the calendar.
- Returns
- the owner Person object.
- See also
- setOwner()
Definition at line 138 of file calendar.cpp.
◆ ownerChanged
|
signal |
Emitted when the owner changes.
- Since
- 5.85
- See also
- owner()
◆ productId()
QString Calendar::productId | ( | ) | const |
Returns the calendar's Product ID.
- See also
- setProductId()
Definition at line 763 of file calendar.cpp.
◆ rawEvents() [1/2]
|
pure virtual |
Returns an unfiltered list of all Events occurring within a date range.
- Parameters
-
start is the starting date end is the ending date timeZone time zone to interpret start
andend
, or the calendar's default time zone if none is specifiedinclusive if true only Events which are completely included within the date range are returned.
- Returns
- the list of unfiltered Events occurring within the specified date range.
Implemented in KCalendarCore::MemoryCalendar.
◆ rawEvents() [2/2]
|
pure virtual |
Returns a sorted, unfiltered list of all Events for this Calendar.
- Parameters
-
sortField specifies the EventSortField. sortDirection specifies the SortDirection.
- Returns
- the list of all unfiltered Events sorted as specified.
Implemented in KCalendarCore::MemoryCalendar.
◆ rawEventsForDate()
|
pure virtual |
Returns a sorted, unfiltered list of all Events which occur on the given date.
The Events are sorted according to sortField and sortDirection.
- Parameters
-
date request unfiltered Event list for this QDate only timeZone time zone to interpret date
, or the calendar's default time zone if none is specifiedsortField specifies the EventSortField sortDirection specifies the SortDirection
- Returns
- the list of sorted, unfiltered Events occurring on
date
Implemented in KCalendarCore::MemoryCalendar.
◆ rawIncidences()
|
virtual |
Returns an unfiltered list of all Incidences for this Calendar.
- Returns
- the list of all unfiltered Incidences.
Definition at line 259 of file calendar.cpp.
◆ rawJournals()
|
pure virtual |
Returns a sorted, unfiltered list of all Journals for this Calendar.
- Parameters
-
sortField specifies the JournalSortField. sortDirection specifies the SortDirection.
- Returns
- the list of all unfiltered Journals sorted as specified.
Implemented in KCalendarCore::MemoryCalendar.
◆ rawJournalsForDate()
|
pure virtual |
Returns an unfiltered list of all Journals for on the specified date.
- Parameters
-
date request unfiltered Journals for this QDate only.
- Returns
- the list of unfiltered Journals for the specified date.
Implemented in KCalendarCore::MemoryCalendar.
◆ rawTodos() [1/2]
|
pure virtual |
Returns an unfiltered list of all Todos occurring within a date range.
- Parameters
-
start is the starting date end is the ending date timeZone time zone to interpret start
andend
, or the calendar's default time zone if none is specifiedinclusive if true only Todos which are completely included within the date range are returned.
- Returns
- the list of unfiltered Todos occurring within the specified date range.
Implemented in KCalendarCore::MemoryCalendar.
◆ rawTodos() [2/2]
|
pure virtual |
Returns a sorted, unfiltered list of all Todos for this Calendar.
- Parameters
-
sortField specifies the TodoSortField. sortDirection specifies the SortDirection.
- Returns
- the list of all unfiltered Todos sorted as specified.
Implemented in KCalendarCore::MemoryCalendar.
◆ rawTodosForDate()
|
pure virtual |
Returns an unfiltered list of all Todos which due on the specified date.
- Parameters
-
date request unfiltered Todos due on this QDate.
- Returns
- the list of unfiltered Todos due on the specified date.
Implemented in KCalendarCore::MemoryCalendar.
◆ registerObserver()
void Calendar::registerObserver | ( | CalendarObserver * | observer | ) |
Registers an Observer for this Calendar.
- Parameters
-
observer is a pointer to an Observer object that will be watching this Calendar.
- See also
- unregisterObserver()
Definition at line 608 of file calendar.cpp.
◆ setAccessMode()
void Calendar::setAccessMode | ( | const AccessMode | mode | ) |
Set this calendar's AccessMode, i.e.
whether it is writable or read-only.
- Since
- 5.85
- See also
- accessMode()
Definition at line 992 of file calendar.cpp.
◆ setFilter()
void Calendar::setFilter | ( | CalFilter * | filter | ) |
◆ setIcon()
void Calendar::setIcon | ( | const QIcon & | icon | ) |
◆ setId()
void Calendar::setId | ( | const QString & | id | ) |
set a unique identifier for this calendar.
- Since
- 5.85
- See also
- id()
Definition at line 955 of file calendar.cpp.
◆ setIsLoading()
|
protected |
Sets the loading state of this calendar.
This is false by default and only needs to be called for calendars that implement asynchronous loading.
- Since
- 5.96
- See also
- isLoading()
Definition at line 1005 of file calendar.cpp.
◆ setModified()
void Calendar::setModified | ( | bool | modified | ) |
Sets if the calendar has been modified.
- Parameters
-
modified is true if the calendar has been modified since open or last save.
- See also
- isModified()
Definition at line 630 of file calendar.cpp.
◆ setName()
void Calendar::setName | ( | const QString & | name | ) |
Set the user-visible name for this calendar.
- Since
- 5.85
- See also
- name()
Definition at line 968 of file calendar.cpp.
◆ setObserversEnabled()
|
protected |
Let Calendar subclasses notify that they enabled an Observer.
- Parameters
-
enabled if true tells the calendar that a subclass has enabled an Observer.
Definition at line 803 of file calendar.cpp.
◆ setOwner()
void Calendar::setOwner | ( | const Person & | owner | ) |
Sets the owner of the calendar to owner
.
- Parameters
-
owner is a Person object. Must be a non-null pointer.
- See also
- owner()
Definition at line 143 of file calendar.cpp.
◆ setProductId()
void Calendar::setProductId | ( | const QString & | id | ) |
Sets the calendar Product ID to id
.
- Parameters
-
id is a string containing the Product ID.
- See also
- productId() const
Definition at line 758 of file calendar.cpp.
◆ setTimeZone()
void Calendar::setTimeZone | ( | const QTimeZone & | timeZone | ) |
Sets the default time specification zone used for creating or modifying incidences in the Calendar.
- Parameters
-
timeZone The time zone
Definition at line 152 of file calendar.cpp.
◆ setTimeZoneId()
void Calendar::setTimeZoneId | ( | const QByteArray & | timeZoneId | ) |
Sets the time zone ID used for creating or modifying incidences in the Calendar.
This method has no effect on existing incidences.
- Parameters
-
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 time zone. Example: "Europe/Berlin"
- See also
- setTimeZone()
Definition at line 168 of file calendar.cpp.
◆ shiftTimes()
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 (oldSpec
) of Europe/London, to a new time zone (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.
- Parameters
-
oldZone the time zone which provides the clock times newZone the new time zone
Definition at line 194 of file calendar.cpp.
◆ sortEvents()
|
static |
Sort a list of Events.
- Parameters
-
eventList the list of events that should be sorted. The list is sorted in place and returned. sortField specifies the EventSortField. sortDirection specifies the SortDirection.
- Returns
- a list of Events sorted as specified.
- Since
- 5.95
Definition at line 284 of file calendar.cpp.
◆ sortJournals()
|
static |
Sort a list of Journals.
- Parameters
-
journalList the list of journals that should be sorted. The list is sorted in place and returned. sortField specifies the JournalSortField. sortDirection specifies the SortDirection.
- Returns
- a list of Journals sorted as specified.
- Since
- 5.95
Definition at line 532 of file calendar.cpp.
◆ sortTodos()
|
static |
Sort a list of Todos.
- Parameters
-
todoList the list of todos that should be sorted. The list is sorted in place and returned. sortField specifies the TodoSortField. sortDirection specifies the SortDirection.
- Returns
- a list of Todos sorted as specified.
- Since
- 5.95
Definition at line 444 of file calendar.cpp.
◆ startBatchAdding()
|
virtual |
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 also
- endBatchAdding()
Reimplemented in Akonadi::CalendarBase.
Definition at line 923 of file calendar.cpp.
◆ timeZone()
QTimeZone Calendar::timeZone | ( | ) | const |
Get the time zone used for creating or modifying incidences in the Calendar.
- Returns
- time specification
Definition at line 163 of file calendar.cpp.
◆ timeZoneId()
QByteArray Calendar::timeZoneId | ( | ) | const |
Returns the time zone ID used for creating or modifying incidences in the calendar.
- Returns
- the string containing the time zone ID, or empty string if the creation/modification time specification is not a time zone.
Definition at line 189 of file calendar.cpp.
◆ todo()
|
pure virtual |
Returns the Todo associated with the given unique identifier.
- Parameters
-
uid is a unique identifier string. recurrenceId is possible recurrenceId of todo, default is null
Implemented in KCalendarCore::MemoryCalendar.
◆ todoInstances()
|
pure virtual |
Returns a sorted, unfiltered list of all possible instances for this recurring Todo.
- Parameters
-
todo todo to check for. Caller guarantees it's of type Todo. sortField specifies the TodoSortField. sortDirection specifies the SortDirection.
- Returns
- the list of all unfiltered todo instances sorted as specified.
Implemented in KCalendarCore::MemoryCalendar.
◆ todos() [1/3]
|
virtual |
Returns a filtered list of all Todos which are due on the specified date.
- Parameters
-
date request filtered Todos due on this QDate.
- Returns
- the list of filtered Todos due on the specified date.
Definition at line 518 of file calendar.cpp.
◆ todos() [2/3]
|
virtual |
Returns a filtered list of all Todos occurring within a date range.
- Parameters
-
start is the starting date end is the ending date timeZone time zone to interpret start
andend
, or the calendar's default time zone if none is specifiedinclusive if true only Todos which are completely included within the date range are returned.
- Returns
- the list of filtered Todos occurring within the specified date range.
Definition at line 525 of file calendar.cpp.
◆ todos() [3/3]
|
virtual |
Returns a sorted, filtered list of all Todos for this Calendar.
- Parameters
-
sortField specifies the TodoSortField. sortDirection specifies the SortDirection.
- Returns
- the list of all filtered Todos sorted as specified.
Definition at line 511 of file calendar.cpp.
◆ unregisterObserver()
void Calendar::unregisterObserver | ( | CalendarObserver * | observer | ) |
Unregisters an Observer for this Calendar.
- Parameters
-
observer is a pointer to an Observer object that has been watching this Calendar.
- See also
- registerObserver()
Definition at line 621 of file calendar.cpp.
◆ virtual_hook()
|
protectedvirtual |
Reimplemented in KCalendarCore::MemoryCalendar.
Definition at line 943 of file calendar.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 18 2024 12:08:40 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.