/* Copyright (c) 2013, 2014 Montel Laurent This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. This program 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 General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include "sendlaterinfo.h" #include using namespace SendLater; SendLaterInfo::SendLaterInfo() : mId(-1), mRecurrenceEachValue(1), mRecurrenceUnit(Days), mRecurrence(false) { } SendLaterInfo::SendLaterInfo(const KConfigGroup &config) : mId(-1), mRecurrenceEachValue(1), mRecurrenceUnit(Days), mRecurrence(false) { readConfig(config); } SendLaterInfo::SendLaterInfo(const SendLaterInfo &info) { mId = info.itemId(); mRecurrenceEachValue = info.recurrenceEachValue(); mRecurrenceUnit = info.recurrenceUnit(); mRecurrence = info.isRecurrence(); mSubject = info.subject(); mTo = info.to(); mDateTime = info.dateTime(); mLastDateTimeSend = info.lastDateTimeSend(); } SendLaterInfo::~SendLaterInfo() { } bool SendLaterInfo::isValid() const { return ((mId != -1) && mDateTime.isValid()); } bool SendLaterInfo::isRecurrence() const { return mRecurrence; } void SendLaterInfo::setRecurrence(bool b) { mRecurrence = b; } void SendLaterInfo::setRecurrenceUnit(SendLaterInfo::RecurrenceUnit unit) { mRecurrenceUnit = unit; } SendLaterInfo::RecurrenceUnit SendLaterInfo::recurrenceUnit() const { return mRecurrenceUnit; } void SendLaterInfo::setRecurrenceEachValue(int value) { mRecurrenceEachValue = value; } int SendLaterInfo::recurrenceEachValue() const { return mRecurrenceEachValue; } void SendLaterInfo::setItemId(Akonadi::Item::Id id) { mId = id; } Akonadi::Item::Id SendLaterInfo::itemId() const { return mId; } void SendLaterInfo::setDateTime(const QDateTime &time) { mDateTime = time; } QDateTime SendLaterInfo::dateTime() const { return mDateTime; } void SendLaterInfo::setLastDateTimeSend( const QDateTime &dateTime ) { mLastDateTimeSend = dateTime; } QDateTime SendLaterInfo::lastDateTimeSend() const { return mLastDateTimeSend; } void SendLaterInfo::setSubject( const QString &subject ) { mSubject = subject; } QString SendLaterInfo::subject() const { return mSubject; } void SendLaterInfo::setTo( const QString &to ) { mTo = to; } QString SendLaterInfo::to() const { return mTo; } bool SendLaterInfo::operator ==(const SendLaterInfo &other) const { return (itemId() == other.itemId()) && (recurrenceUnit() == other.recurrenceUnit()) && (recurrenceEachValue() == other.recurrenceEachValue()) && (isRecurrence() == other.isRecurrence()) && (dateTime() == other.dateTime()) && (lastDateTimeSend() == other.lastDateTimeSend()) && (subject() == other.subject()) && (to() == other.to()); } void SendLaterInfo::readConfig(const KConfigGroup &config) { if (config.hasKey(QLatin1String("lastDateTimeSend"))) { mLastDateTimeSend = QDateTime::fromString(config.readEntry("lastDateTimeSend"), Qt::ISODate); } mDateTime = config.readEntry("date", QDateTime::currentDateTime()); mRecurrence = config.readEntry("recurrence", false); mRecurrenceEachValue = config.readEntry("recurrenceValue",1); mRecurrenceUnit = static_cast(config.readEntry("recurrenceUnit", (int)Days)); mId = config.readEntry("itemId", -1); mSubject = config.readEntry("subject"); mTo = config.readEntry("to"); } void SendLaterInfo::writeConfig(KConfigGroup &config ) { if (mLastDateTimeSend.isValid()) { config.writeEntry("lastDateTimeSend", mLastDateTimeSend.toString(Qt::ISODate) ); } config.writeEntry("date", mDateTime); config.writeEntry("recurrence", mRecurrence); config.writeEntry("recurrenceValue", mRecurrenceEachValue ); config.writeEntry("recurrenceUnit", (int)mRecurrenceUnit); config.writeEntry("itemId", mId); config.writeEntry("subject", mSubject); config.writeEntry("to", mTo); config.sync(); }