/* * Copyright (c) 2014 - 2019 Jolla Ltd. * Copyright (c) 2020 Open Mobile Platform LLC. * * You may use this file under the terms of the BSD license as follows: * * "Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * Neither the name of Nemo Mobile nor the names of its contributors * may be used to endorse or promote products derived from this * software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." */ #ifndef CALENDAREVENTMODIFICATION_H #define CALENDAREVENTMODIFICATION_H #include #include "calendardata.h" #include "calendarevent.h" #include "calendareventoccurrence.h" #include "calendarcontactmodel.h" class CalendarEventModification : public CalendarEvent { Q_OBJECT // These properties already exist in the CalendarEvent class, but are redefined // here to add WRITE access. Q_PROPERTY(QString displayLabel READ displayLabel WRITE setDisplayLabel NOTIFY displayLabelChanged) Q_PROPERTY(QString description READ description WRITE setDescription NOTIFY descriptionChanged) Q_PROPERTY(bool allDay READ allDay WRITE setAllDay NOTIFY allDayChanged) Q_PROPERTY(CalendarEvent::Recur recur READ recur WRITE setRecur NOTIFY recurChanged) Q_PROPERTY(CalendarEvent::Days recurWeeklyDays READ recurWeeklyDays WRITE setRecurWeeklyDays NOTIFY recurWeeklyDaysChanged) Q_PROPERTY(int reminder READ reminder WRITE setReminder NOTIFY reminderChanged) Q_PROPERTY(QDateTime reminderDateTime READ reminderDateTime WRITE setReminderDateTime NOTIFY reminderDateTimeChanged) Q_PROPERTY(QString location READ location WRITE setLocation NOTIFY locationChanged) Q_PROPERTY(QString calendarUid READ calendarUid WRITE setCalendarUid NOTIFY calendarUidChanged) Q_PROPERTY(CalendarEvent::SyncFailureResolution syncFailureResolution READ syncFailureResolution WRITE setSyncFailureResolution NOTIFY syncFailureResolutionChanged) public: CalendarEventModification(const CalendarStoredEvent *source, const CalendarEventOccurrence *occurrence = 0, QObject *parent = 0); explicit CalendarEventModification(QObject *parent = 0); ~CalendarEventModification(); void setDisplayLabel(const QString &displayLabel); void setDescription(const QString &description); QDateTime startTime() const; Q_INVOKABLE void setStartTime(const QDateTime &startTime, Qt::TimeSpec spec, const QString &timezone = QString()); QDateTime endTime() const; Q_INVOKABLE void setEndTime(const QDateTime &endTime, Qt::TimeSpec spec, const QString &timezone = QString()); void setAllDay(bool); void setRecur(CalendarEvent::Recur); Q_INVOKABLE void setRecurEndDate(const QDateTime &dateTime); Q_INVOKABLE void unsetRecurEndDate(); void setRecurWeeklyDays(CalendarEvent::Days days); void setReminder(int seconds); void setReminderDateTime(const QDateTime &dateTime); void setLocation(const QString &newLocation); void setCalendarUid(const QString &uid); void setSyncFailureResolution(CalendarEvent::SyncFailureResolution resolution); Q_INVOKABLE void setAttendees(CalendarContactModel *required, CalendarContactModel *optional); Q_INVOKABLE void save(); signals: void displayLabelChanged(); void descriptionChanged(); void startTimeChanged(); void endTimeChanged(); void allDayChanged(); void recurChanged(); void recurWeeklyDaysChanged(); void reminderChanged(); void reminderDateTimeChanged(); void locationChanged(); void recurEndDateChanged(); void hasRecurEndDateChanged(); void calendarUidChanged(); void syncFailureResolutionChanged(); private: bool m_attendeesSet = false; QList m_requiredAttendees; QList m_optionalAttendees; }; #endif