/* 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 "knoteprintobject.h" #include "noteshared/attributes/notealarmattribute.h" #include "noteshared/attributes/notelockattribute.h" #include "noteshared/attributes/notedisplayattribute.h" #include #include #include #include KNotePrintObject::KNotePrintObject(const Akonadi::Item &item, QObject *parent) : QObject(parent), mItem(item) { } KNotePrintObject::~KNotePrintObject() { } QString KNotePrintObject::description() const { KMime::Message::Ptr noteMessage = mItem.payload(); if ( noteMessage->contentType()->isHTMLText() ) { return noteMessage->mainBodyPart()->decodedText(); } else { return noteMessage->mainBodyPart()->decodedText().replace(QLatin1Char('\n'), QLatin1String("
")); } } QString KNotePrintObject::name() const { KMime::Message::Ptr noteMessage = mItem.payload(); const KMime::Headers::Subject * const subject = noteMessage ? noteMessage->subject(false) : 0; return subject ? subject->asUnicodeString() : QString(); } QString KNotePrintObject::currentDateTime() const { const QDateTime now = QDateTime::currentDateTime(); return KGlobal::locale()->formatDateTime( now ); } bool KNotePrintObject::hasAlarm() const { return mItem.hasAttribute(); } QString KNotePrintObject::alarm() const { NoteShared::NoteAlarmAttribute *attr = mItem.attribute(); if (attr) { return KGlobal::locale()->formatDateTime(attr->dateTime(),KLocale::LongDate); } return QString(); } bool KNotePrintObject::isLock() const { return mItem.hasAttribute(); } QString KNotePrintObject::backgroundColorName() const { if (mItem.hasAttribute()) { return mItem.attribute()->backgroundColor().name(); } return QString(); }