1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
/*
SPDX-FileCopyrightText: 2013-2022 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "notesagentnotedialog.h"
#include "attributes/notedisplayattribute.h"
#include "notesagent_debug.h"
#include <Akonadi/ItemFetchJob>
#include <Akonadi/ItemFetchScope>
#include <KPIMTextEdit/RichTextEditor>
#include <KPIMTextEdit/RichTextEditorWidget>
#include <KSharedConfig>
#include <KMime/KMimeMessage>
#include <QIcon>
#include <KConfigGroup>
#include <QDialogButtonBox>
#include <QLineEdit>
#include <QPushButton>
#include <QVBoxLayout>
NotesAgentNoteDialog::NotesAgentNoteDialog(QWidget *parent)
: QDialog(parent)
, mNote(new KPIMTextEdit::RichTextEditorWidget(this))
, mSubject(new QLineEdit(this))
{
auto mainLayout = new QVBoxLayout(this);
setAttribute(Qt::WA_DeleteOnClose);
setWindowIcon(QIcon::fromTheme(QStringLiteral("knotes")));
mSubject->setReadOnly(true);
mainLayout->addWidget(mSubject);
mNote->setReadOnly(true);
auto buttonBox = new QDialogButtonBox(QDialogButtonBox::Close, this);
connect(buttonBox, &QDialogButtonBox::rejected, this, &NotesAgentNoteDialog::reject);
mainLayout->addWidget(mNote);
mainLayout->addWidget(buttonBox);
readConfig();
}
NotesAgentNoteDialog::~NotesAgentNoteDialog()
{
writeConfig();
}
void NotesAgentNoteDialog::setNoteId(Akonadi::Item::Id id)
{
Akonadi::Item item(id);
auto job = new Akonadi::ItemFetchJob(item, this);
job->fetchScope().fetchFullPayload(true);
job->fetchScope().fetchAttribute<NoteShared::NoteDisplayAttribute>();
connect(job, &Akonadi::ItemFetchJob::result, this, &NotesAgentNoteDialog::slotFetchItem);
}
void NotesAgentNoteDialog::slotFetchItem(KJob *job)
{
if (job->error()) {
qCDebug(NOTESAGENT_LOG) << "fetch item failed " << job->errorString();
return;
}
auto itemFetchJob = static_cast<Akonadi::ItemFetchJob *>(job);
const Akonadi::Item::List lstItem = itemFetchJob->items();
if (!lstItem.isEmpty()) {
const Akonadi::Item item = lstItem.first();
auto noteMessage = item.payload<KMime::Message::Ptr>();
if (noteMessage) {
const KMime::Headers::Subject *const subject = noteMessage->subject(false);
if (subject) {
mSubject->setText(subject->asUnicodeString());
}
if (noteMessage->contentType()->isHTMLText()) {
mNote->setAcceptRichText(true);
mNote->setHtml(noteMessage->mainBodyPart()->decodedText());
} else {
mNote->setAcceptRichText(false);
mNote->setPlainText(noteMessage->mainBodyPart()->decodedText());
}
}
if (item.hasAttribute<NoteShared::NoteDisplayAttribute>()) {
const auto attr = item.attribute<NoteShared::NoteDisplayAttribute>();
if (attr) {
mNote->editor()->setTextColor(attr->backgroundColor());
// TODO add background color.
}
}
}
}
void NotesAgentNoteDialog::readConfig()
{
KConfigGroup grp(KSharedConfig::openStateConfig(), "NotesAgentNoteDialog");
const QSize size = grp.readEntry("Size", QSize(300, 200));
if (size.isValid()) {
resize(size);
}
}
void NotesAgentNoteDialog::writeConfig()
{
KConfigGroup grp(KSharedConfig::openStateConfig(), "NotesAgentNoteDialog");
grp.writeEntry("Size", size());
grp.sync();
}
|