/* ============================================================ * * 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 * * 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 #include #include #include #include #include // 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("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); }