/* This file is part of the KDE project Copyright (C) 2024 Ivailo Monev This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2, as published by the Free Software Foundation. This library 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "notes.h" #include #include #include #include #include #include static const QSizeF s_minimumsize = QSizeF(256, 256); class NotesAppletWidget : public QGraphicsWidget { Q_OBJECT public: NotesAppletWidget(QGraphicsWidget *parent); Plasma::TextEdit* textEdit() const; private: QGraphicsLinearLayout* m_layout; Plasma::Frame* m_frame; QGraphicsLinearLayout* m_framelayout; Plasma::TextEdit* m_textedit; }; NotesAppletWidget::NotesAppletWidget(QGraphicsWidget *parent) : QGraphicsWidget(parent), m_layout(nullptr), m_frame(nullptr), m_framelayout(nullptr), m_textedit(nullptr) { m_layout = new QGraphicsLinearLayout(this); m_layout->setOrientation(Qt::Vertical); m_layout->setContentsMargins(0, 0, 0, 0); m_frame = new Plasma::Frame(this); m_frame->setFrameShadow(Plasma::Frame::Sunken); m_frame->setMinimumSize(s_minimumsize); m_frame->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding); m_framelayout = new QGraphicsLinearLayout(m_frame); m_framelayout->setContentsMargins(0, 0, 0, 0); m_frame->setLayout(m_framelayout); m_textedit = new Plasma::TextEdit(m_frame); m_framelayout->addItem(m_textedit); m_layout->addItem(m_frame); setLayout(m_layout); adjustSize(); } Plasma::TextEdit* NotesAppletWidget::textEdit() const { return m_textedit; } NotesApplet::NotesApplet(QObject *parent, const QVariantList &args) : Plasma::PopupApplet(parent, args), m_noteswidget(nullptr) { KGlobal::locale()->insertCatalog("plasma_applet_notes"); setAspectRatioMode(Plasma::AspectRatioMode::IgnoreAspectRatio); setStatus(Plasma::AcceptingInputStatus); setPopupIcon("knotes"); m_noteswidget = new NotesAppletWidget(this); if (args.size() > 0) { // drop, the first argument is a path to temporary file; const QString filepath = args.at(0).toString(); QFile file(filepath); if (!file.open(QIODevice::ReadOnly)) { kWarning() << "could not open" << filepath << file.errorString(); return; } QTextStream textstream(&file); Plasma::TextEdit* plasmatextedit = m_noteswidget->textEdit(); plasmatextedit->setText(textstream.readAll()); } } void NotesApplet::init() { Plasma::PopupApplet::init(); configChanged(); } QGraphicsWidget* NotesApplet::graphicsWidget() { return m_noteswidget; } void NotesApplet::configChanged() { Plasma::TextEdit* plasmatextedit = m_noteswidget->textEdit(); KTextEdit* nativetextedit = plasmatextedit->nativeWidget(); KConfigGroup configgroup = config(); const bool checkSpellingEnabled = configgroup.readEntry("checkspelling", nativetextedit->checkSpellingEnabled()); nativetextedit->setCheckSpellingEnabled(checkSpellingEnabled); if (nativetextedit->toPlainText().isEmpty()) { const QString text = configgroup.readEntry("text", QString()); plasmatextedit->setText(text); } } void NotesApplet::saveState(KConfigGroup &group) const { Plasma::TextEdit* plasmatextedit = m_noteswidget->textEdit(); KTextEdit* nativetextedit = plasmatextedit->nativeWidget(); group.writeEntry("text", plasmatextedit->text()); group.writeEntry("checkspelling", nativetextedit->checkSpellingEnabled()); Plasma::PopupApplet::saveState(group); } K_EXPORT_PLASMA_APPLET(notes, NotesApplet) #include "notes.moc" #include "moc_notes.cpp"