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.
digikam/digikam/imageplugins/infrared/imageplugin_infrared.cpp

72 lines
2.1 KiB

/* ============================================================
*
* This file is a part of digiKam project
* http://www.digikam.org
*
* Date : 2005-02-22
* Description : a digiKam image editor plugin for simulate
* infrared film.
*
* Copyright (C) 2005-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 <klocale.h>
#include <kgenericfactory.h>
#include <klibloader.h>
#include <kaction.h>
#include <kcursor.h>
#include <kapplication.h>
// Local includes.
#include "ddebug.h"
#include "infraredtool.h"
#include "imageplugin_infrared.h"
#include "imageplugin_infrared.moc"
using namespace DigikamInfraredImagesPlugin;
K_EXPORT_COMPONENT_FACTORY(digikamimageplugin_infrared,
KGenericFactory<ImagePlugin_Infrared>("digikamimageplugin_infrared"));
ImagePlugin_Infrared::ImagePlugin_Infrared(TQObject *parent, const char*, const TQStringList &)
: Digikam::ImagePlugin(parent, "ImagePlugin_Infrared")
{
m_infraredAction = new KAction(i18n("Infrared Film..."), "infrared", 0,
this, TQT_SLOT(slotInfrared()),
actionCollection(), "imageplugin_infrared");
setXMLFile( "digikamimageplugin_infrared_ui.rc" );
DDebug() << "ImagePlugin_Infrared plugin loaded" << endl;
}
ImagePlugin_Infrared::~ImagePlugin_Infrared()
{
}
void ImagePlugin_Infrared::setEnabledActions(bool enable)
{
m_infraredAction->setEnabled(enable);
}
void ImagePlugin_Infrared::slotInfrared()
{
InfraredTool *tool = new InfraredTool(this);
loadTool(tool);
}