// SPDX-License-Identifier: LGPL-3.0-or-later /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright (C) 2013 - 2024, nymea GmbH * Copyright (C) 2024 - 2025, chargebyte austria GmbH * * This file is part of libnymea-app. * * libnymea-app is free software: you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation, either version 3 * of the License, or (at your option) any later version. * * libnymea-app 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with libnymea-app. If not, see . * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ #include "calendaritem.h" #include "repeatingoption.h" #include CalendarItem::CalendarItem(QObject *parent) : QObject(parent) { m_repeatingOption = new RepeatingOption(this); } int CalendarItem::duration() const { return m_duration; } void CalendarItem::setDuration(int duration) { if (m_duration != duration) { m_duration = duration; emit durationChanged(); } } QDateTime CalendarItem::dateTime() const { return m_dateTime; } void CalendarItem::setDateTime(const QDateTime &dateTime) { if (m_dateTime != dateTime) { m_dateTime = dateTime; emit dateTimeChanged(); } } QTime CalendarItem::startTime() const { return m_startTime; } void CalendarItem::setStartTime(const QTime &startTime) { if (m_startTime != startTime) { m_startTime = startTime; emit startTimeChanged(); } } RepeatingOption *CalendarItem::repeatingOption() const { return m_repeatingOption; } CalendarItem *CalendarItem::clone() const { CalendarItem* ret = new CalendarItem(); ret->m_dateTime = this->m_dateTime; ret->m_duration = this->m_duration; ret->m_repeatingOption = this->m_repeatingOption; ret->m_startTime = this->m_startTime; return ret; } #define COMPARE(a, b) if (a != b) { qDebug() << a << "!=" << b; return false; } #define COMPARE_PTR(a, b) if (!a->operator==(b)) { qDebug() << a << "!=" << b; return false; } bool CalendarItem::operator ==(CalendarItem *other) const { COMPARE(m_dateTime, other->dateTime()); COMPARE(m_startTime, other->startTime()); COMPARE(m_duration, other->duration()); COMPARE(m_repeatingOption, other->repeatingOption()); return true; }