MeetingHistory
#include <bb/pim/calendar/MeetingHistory>
To link against this class, add the following line to your .pro file: LIBS += -lbbpim
The MeetingHistory class represents the history of an iCalendar event.
This class contains data related to the changes done to a meeting that was created from an iCalendar file. This data includes information such as owner attendance status, status date, and updated date.
You can retrieve the meeting history from an iCalendar event by calling ICalendarData::history(). This function returns a MeetingHistory object with the history information.
BlackBerry 10.0.0
Public Functions Index
| MeetingHistory () | |
| ~MeetingHistory () | |
| MeetingHistory (const MeetingHistory &other) | |
| MeetingHistory & | operator= (const MeetingHistory &other) |
| AttendeeStatus::Type | ownerStatus () const |
| QDateTime | statusDate () const |
| unsigned int | meetingSequence () const |
| QDateTime | updatedDate () const |
| QDateTime | canceledDate () const |
| void | setOwnerStatus (AttendeeStatus::Type ownerStatus) |
| void | setStatusDate (const QDateTime &statusDate) |
| void | setMeetingSequence (unsigned int meetingSequence) |
| void | setUpdatedDate (const QDateTime &updatedDate) |
| void | setCanceledDate (const QDateTime &canceledDate) |
| bool | isValid () const |
Public Functions
Destructor.
BlackBerry 10.0.0
Copy constructor.
This function constructs a MeetingHistory containing exactly the same values as the provided MeetingHistory.
| Parameters | |
|---|---|
| other |
The MeetingHistory to be copied. |
BlackBerry 10.0.0
MeetingHistory &
Assignment operator.
This operator copies all values from the provided MeetingHistory into this MeetingHistory.
| Parameters | |
|---|---|
| other |
The MeetingHistory from which to copy all values. |
A reference to this MeetingHistory.
BlackBerry 10.0.0
AttendeeStatus::Type
Retrieves the owner's attendee status.
This function returns the attendance status for the organizer of the meeting.
The host's attendee status.
BlackBerry 10.0.0
QDateTime
Retrieves the timestamp for status updates.
This function returns the time of the most recent update to the owner's status.
The timestamp for status updates.
BlackBerry 10.0.0
unsigned int
Retrieves the sequence number for the meeting.
The sequence number is a number that increases each time the event is updated. For example, this number changes when the user receives a newer iCalendar representation of the event as an attachment.
The sequence number for the meeting.
BlackBerry 10.0.0
QDateTime
Retrieves the timestamp for general updates.
This function returns the time when the organizer last updated the meeting.
The timestamp for general updates.
BlackBerry 10.0.0
QDateTime
Retrieves the timestamp for cancellation.
This function returns the time when the organizer cancelled the meeting.
The timestamp for cancellation.
BlackBerry 10.0.0
void
Sets the owner's attendee status.
| Parameters | |
|---|---|
| ownerStatus |
The new owner attendee status. |
BlackBerry 10.0.0
void
Sets the date for the last status update.
| Parameters | |
|---|---|
| statusDate |
The new date for the last status update. |
BlackBerry 10.0.0
void
Sets the meeting sequence number.
| Parameters | |
|---|---|
| meetingSequence |
The new meeting sequence number. |
BlackBerry 10.0.0
void
Sets the date for the last update to the meeting.
| Parameters | |
|---|---|
| updatedDate |
The new date for the last update to the meeting. |
BlackBerry 10.0.0
void
Sets the date that the meeting was cancelled.
| Parameters | |
|---|---|
| canceledDate |
The new date that the meeting was cancelled. |
BlackBerry 10.0.0
bool
Indicates whether this MeetingHistory is valid.
This function determines whether the attributes of this MeetingHistory object have acceptable values.
true if this MeetingHistory is valid, false otherwise.
BlackBerry 10.0.0