diff --git a/lib/previews/textplugin.cpp b/lib/previews/textplugin.cpp index 895f4d9..fdc6c72 100644 --- a/lib/previews/textplugin.cpp +++ b/lib/previews/textplugin.cpp @@ -1,62 +1,62 @@ /* * This file is part of the KDE Milou Project * Copyright (C) 2013 Vishesh Handa * * This library 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 2.1 of the License, or (at your option) version 3, or any * later version accepted by the membership of KDE e.V. (or its * successor approved by the membership of KDE e.V.), which shall * act as a proxy defined in Section 6 of version 3 of the license. * * 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library. If not, see . * */ #include "textplugin.h" #include #include #include #include - +#include #include TextPlugin::TextPlugin(QObject* parent, const QVariantList&) : PreviewPlugin(parent) { } void TextPlugin::generatePreview() { QFile file(url().toLocalFile()); if (!file.open(QIODevice::ReadOnly)) { return; } QString path = QStandardPaths::locate(QStandardPaths::GenericDataLocation, "plasma/plasmoids/org.kde.milou/contents/ui/previews/TextPreview.qml"); QQmlComponent component(context()->engine(), path); QQuickItem *item = qobject_cast(component.create()); QTextStream stream(&file); const QString text = stream.readAll(); item->setProperty("text", text); item->setWidth(700); item->setHeight(1000); emit previewGenerated(item); } MILOU_EXPORT_PREVIEW(TextPlugin, "miloutextplugin") #include "textplugin.moc"