mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-23 18:32:53 +00:00
187 lines
5.4 KiB
C++
187 lines
5.4 KiB
C++
/*
|
|
Gwenview: an image viewer
|
|
Copyright 2007-2012 Aurélien Gâteau <agateau@kde.org>
|
|
|
|
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.
|
|
|
|
*/
|
|
#include "moc_gvpart.cpp"
|
|
|
|
// Qt
|
|
|
|
// KDE
|
|
#include <KAboutData>
|
|
#include <KAction>
|
|
#include <KActionCollection>
|
|
#include <KDebug>
|
|
#include <KFileDialog>
|
|
#include <KIcon>
|
|
#include <KIconLoader>
|
|
#include <KImageIO>
|
|
#include <KIO/Job>
|
|
#include <KIO/JobUiDelegate>
|
|
#include <KLocale>
|
|
#include <KMenu>
|
|
#include <KStandardAction>
|
|
#include <KPluginFactory>
|
|
#include <KPropertiesDialog>
|
|
|
|
// Local
|
|
#include "../lib/about.h"
|
|
#include "../lib/document/document.h"
|
|
#include "../lib/document/documentfactory.h"
|
|
#include "../lib/documentview/documentview.h"
|
|
#include "../lib/documentview/documentviewcontainer.h"
|
|
#include "../lib/documentview/documentviewcontroller.h"
|
|
#include "../lib/urlutils.h"
|
|
#include "../lib/zoomwidget.h"
|
|
|
|
//Factory Code
|
|
K_PLUGIN_FACTORY(GVPartFactory, registerPlugin<Gwenview::GVPart>();)
|
|
K_EXPORT_PLUGIN(GVPartFactory)
|
|
|
|
namespace Gwenview
|
|
{
|
|
|
|
GVPart::GVPart(QWidget* parentWidget, QObject* parent, const QVariantList& /*args*/)
|
|
: KParts::ReadOnlyPart(parent)
|
|
{
|
|
setObjectName(QString::fromLatin1("GVPart"));
|
|
|
|
KGlobal::locale()->insertCatalog("gwenview");
|
|
DocumentViewContainer* container = new DocumentViewContainer(parentWidget);
|
|
setWidget(container);
|
|
mDocumentView = container->createView();
|
|
|
|
connect(mDocumentView, SIGNAL(captionUpdateRequested(QString)),
|
|
SIGNAL(setWindowCaption(QString)));
|
|
connect(mDocumentView, SIGNAL(completed()),
|
|
SIGNAL(completed()));
|
|
|
|
connect(mDocumentView, SIGNAL(contextMenuRequested()),
|
|
SLOT(showContextMenu()));
|
|
|
|
// Necessary to have zoom actions
|
|
DocumentViewController* documentViewController = new DocumentViewController(actionCollection(), this);
|
|
documentViewController->setView(mDocumentView);
|
|
|
|
KAction* action = new KAction(actionCollection());
|
|
action->setText(i18nc("@action", "Properties"));
|
|
connect(action, SIGNAL(triggered()), SLOT(showProperties()));
|
|
actionCollection()->addAction("file_show_properties", action);
|
|
|
|
KStandardAction::saveAs(this, SLOT(saveAs()), actionCollection());
|
|
|
|
setXMLFile("gvpart/gvpart.rc");
|
|
}
|
|
|
|
void GVPart::showProperties()
|
|
{
|
|
KPropertiesDialog::showDialog(url(), widget());
|
|
}
|
|
|
|
bool GVPart::openFile()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool GVPart::openUrl(const KUrl& url)
|
|
{
|
|
if (!url.isValid()) {
|
|
return false;
|
|
}
|
|
setUrl(url);
|
|
Document::Ptr doc = DocumentFactory::instance()->load(url);
|
|
if (arguments().reload()) {
|
|
doc->reload();
|
|
}
|
|
if (!UrlUtils::urlIsFastLocalFile(url)) {
|
|
// Keep raw data of remote files to avoid downloading them again in
|
|
// saveAs()
|
|
doc->setKeepRawData(true);
|
|
}
|
|
DocumentView::Setup setup;
|
|
setup.zoomToFit = true;
|
|
mDocumentView->openUrl(url, setup);
|
|
return true;
|
|
}
|
|
|
|
KAboutData* GVPart::createAboutData()
|
|
{
|
|
KAboutData* aboutData = Gwenview::createAboutData(
|
|
"gvpart", /* appname */
|
|
"gwenview", /* catalogName */
|
|
ki18n("Gwenview KPart") /* programName */
|
|
);
|
|
aboutData->setShortDescription(ki18n("An Image Viewer"));
|
|
return aboutData;
|
|
}
|
|
|
|
inline void addActionToMenu(KMenu* menu, KActionCollection* actionCollection, const char* name)
|
|
{
|
|
QAction* action = actionCollection->action(name);
|
|
if (action) {
|
|
menu->addAction(action);
|
|
}
|
|
}
|
|
|
|
void GVPart::showContextMenu()
|
|
{
|
|
KMenu menu(widget());
|
|
addActionToMenu(&menu, actionCollection(), "file_save_as");
|
|
menu.addSeparator();
|
|
addActionToMenu(&menu, actionCollection(), "view_actual_size");
|
|
addActionToMenu(&menu, actionCollection(), "view_zoom_to_fit");
|
|
addActionToMenu(&menu, actionCollection(), "view_zoom_in");
|
|
addActionToMenu(&menu, actionCollection(), "view_zoom_out");
|
|
menu.addSeparator();
|
|
addActionToMenu(&menu, actionCollection(), "file_show_properties");
|
|
menu.exec(QCursor::pos());
|
|
}
|
|
|
|
void GVPart::saveAs()
|
|
{
|
|
KUrl srcUrl = url();
|
|
KUrl dstUrl = KFileDialog::getSaveUrl(srcUrl.fileName(), KImageIO::pattern(KImageIO::Writing), widget());
|
|
if (!dstUrl.isValid()) {
|
|
return;
|
|
}
|
|
|
|
KIO::Job* job;
|
|
Document::Ptr doc = DocumentFactory::instance()->load(srcUrl);
|
|
QByteArray rawData = doc->rawData();
|
|
if (rawData.length() > 0) {
|
|
job = KIO::storedPut(rawData, dstUrl, -1);
|
|
} else {
|
|
job = KIO::file_copy(srcUrl, dstUrl);
|
|
}
|
|
connect(job, SIGNAL(result(KJob*)),
|
|
this, SLOT(showJobError(KJob*)));
|
|
}
|
|
|
|
void GVPart::showJobError(KJob* job)
|
|
{
|
|
if (job->error() != 0) {
|
|
KIO::JobUiDelegate* ui = static_cast<KIO::Job*>(job)->ui();
|
|
if (!ui) {
|
|
kError() << "Saving failed. job->ui() is null.";
|
|
return;
|
|
}
|
|
ui->setWindow(widget());
|
|
ui->showErrorMessage();
|
|
}
|
|
}
|
|
|
|
} // namespace
|