You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kipi-plugins/kipi-plugins/simpleviewerexport/plugin_simpleviewer.cpp

94 lines
2.9 KiB

/* ============================================================
*
* This file is a part of kipi-plugins project
* http://www.kipi-plugins.org
*
* Date : 2005-12-19
* Description : a plugin to export image collections using SimpleViewer.
*
* Copyright (C) 2005-2006 by Joern Ahrens <joern dot ahrens at kdemail dot net>
* Copyright (C) 2008 by Gilles Caulier <caulier dot gilles at gmail dot com>
*
* 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, 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.
*
* ============================================================ */
// KDE includes.
#include <tdelocale.h>
#include <tdeaction.h>
#include <kgenericfactory.h>
#include <klibloader.h>
#include <tdeconfig.h>
#include <kdebug.h>
#include <tdeapplication.h>
// LibKIPI includes.
#include <libkipi/imagecollection.h>
// Local includes.
#include "plugin_simpleviewer.h"
#include "simpleviewerexport.h"
#include "plugin_simpleviewer.moc"
typedef KGenericFactory<Plugin_SimpleViewer> Factory;
K_EXPORT_COMPONENT_FACTORY( kipiplugin_simpleviewer, Factory("kipiplugin_simpleviewer"))
Plugin_SimpleViewer::Plugin_SimpleViewer(TQObject *parent, const char*, const TQStringList&)
: KIPI::Plugin(Factory::instance(), parent, "SimpleViewer")
{
kdDebug( 51001 ) << "Plugin_SimpleViewer plugin loaded" << endl;
}
void Plugin_SimpleViewer::setup( TQWidget* widget )
{
KIPI::Plugin::setup( widget );
m_actionSimpleViewer = new TDEAction (i18n("Flash Export..."),
"www",
0,
this,
TQ_SLOT(slotActivate()),
actionCollection(),
"simpleviewer");
addAction( m_actionSimpleViewer );
m_interface = dynamic_cast< KIPI::Interface* >( parent() );
if ( !m_interface )
{
kdError( 51000 ) << "Kipi interface is null!" << endl;
return;
}
}
KIPI::Category Plugin_SimpleViewer::category( TDEAction* action ) const
{
if ( action == m_actionSimpleViewer )
return KIPI::EXPORTPLUGIN;
kdWarning( 51000 ) << "Unrecognized action for plugin category identification" << endl;
return KIPI::EXPORTPLUGIN; // no warning from compiler, please
}
void Plugin_SimpleViewer::slotActivate()
{
if ( !m_interface )
{
kdError( 51000 ) << "Kipi interface is null!" << endl;
return;
}
KIPISimpleViewerExportPlugin::SimpleViewerExport::run( m_interface, this );
}