/* This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. 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. --- Copyright (C) 2009 Alexander Rieder */ #include "animationresult.h" using namespace Cantor; #include #include #include #include #include #include #include class Cantor::AnimationResultPrivate { public: AnimationResultPrivate() { } KUrl url; QMovie* movie; QString alt; }; AnimationResult::AnimationResult( const KUrl& url, const QString& alt ) : d(new AnimationResultPrivate) { d->url=url; d->alt=alt; d->movie=new QMovie(); d->movie->setFileName(url.toLocalFile()); } AnimationResult::~AnimationResult() { delete d->movie; delete d; } QString AnimationResult::toHtml() { return QString("\"%2\"/").arg(d->url.toLocalFile(), d->alt); } QVariant AnimationResult::data() { return QVariant::fromValue(static_cast(d->movie)); } KUrl AnimationResult::url() { return d->url; } int AnimationResult::type() { return AnimationResult::Type; } QString AnimationResult::mimeType() { KMimeType::Ptr type=KMimeType::findByUrl(d->url); return type->name(); } QDomElement AnimationResult::toXml(QDomDocument& doc) { kDebug()<<"saving imageresult "<url.fileName()); kDebug()<<"done"; return e; } void AnimationResult::saveAdditionalData(KZip* archive) { archive->addLocalFile(d->url.toLocalFile(), d->url.fileName()); } void AnimationResult::save(const QString& filename) { //just copy over the file.. KIO::file_copy(d->url, KUrl(filename), -1, KIO::HideProgressInfo); }