/* ============================================================ * * This file is a part of digiKam project * http://www.digikam.org * * Date : 2004-08-25 * Description : a plugin to simulate Oil Painting * * Copyright (C) 2004-2008 by Gilles Caulier * Copyright (C) 2006-2008 by Marcel Wiesweg * * 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. * * ============================================================ */ // TQt includes. #include #include #include #include // KDE includes. #include #include #include #include #include #include #include // LibKDcraw includes. #include // Local includes. #include "daboutdata.h" #include "ddebug.h" #include "dimg.h" #include "imageiface.h" #include "imagepanelwidget.h" #include "editortoolsettings.h" #include "oilpaint.h" #include "oilpainttool.h" #include "oilpainttool.moc" using namespace KDcrawIface; using namespace Digikam; namespace DigikamOilPaintImagesPlugin { OilPaintTool::OilPaintTool(TQObject* parent) : EditorToolThreaded(parent) { setName("oilpaint"); setToolName(i18n("Oil Paint")); setToolIcon(SmallIcon("oilpaint")); // ------------------------------------------------------------- m_gboxSettings = new EditorToolSettings(EditorToolSettings::Default| EditorToolSettings::Ok| EditorToolSettings::Cancel| EditorToolSettings::Try, EditorToolSettings::PanIcon); TQGridLayout* grid = new TQGridLayout( m_gboxSettings->plainPage(), 4, 1); TQLabel *label1 = new TQLabel(i18n("Brush size:"), m_gboxSettings->plainPage()); m_brushSizeInput = new RIntNumInput(m_gboxSettings->plainPage()); m_brushSizeInput->setRange(1, 5, 1); m_brushSizeInput->setDefaultValue(1); TQWhatsThis::add( m_brushSizeInput, i18n("

Set here the brush size to use for " "simulating the oil painting.") ); // ------------------------------------------------------------- TQLabel *label2 = new TQLabel(i18n("Smooth:"), m_gboxSettings->plainPage()); m_smoothInput = new RIntNumInput(m_gboxSettings->plainPage()); m_smoothInput->setRange(10, 255, 1); m_smoothInput->setDefaultValue(30); TQWhatsThis::add( m_smoothInput, i18n("

This value controls the smoothing effect " "of the brush under the canvas.") ); grid->addMultiCellWidget(label1, 0, 0, 0, 1); grid->addMultiCellWidget(m_brushSizeInput, 1, 1, 0, 1); grid->addMultiCellWidget(label2, 2, 2, 0, 1); grid->addMultiCellWidget(m_smoothInput, 3, 3, 0, 1); grid->setRowStretch(4, 10); grid->setMargin(m_gboxSettings->spacingHint()); grid->setSpacing(m_gboxSettings->spacingHint()); setToolSettings(m_gboxSettings); // ------------------------------------------------------------- m_previewWidget = new ImagePanelWidget(470, 350, "oilpaint Tool", m_gboxSettings->panIconView()); setToolView(m_previewWidget); init(); // ------------------------------------------------------------- // this filter is relative slow, so we should use the try button instead right now // connect(m_brushSizeInput, TQ_SIGNAL(valueChanged (int)), // this, TQ_SLOT(slotTimer())); // // connect(m_smoothInput, TQ_SIGNAL(valueChanged (int)), // this, TQ_SLOT(slotTimer())); } OilPaintTool::~OilPaintTool() { } void OilPaintTool::renderingFinished() { m_brushSizeInput->setEnabled(true); m_smoothInput->setEnabled(true); } void OilPaintTool::readSettings() { TDEConfig* config = kapp->config(); config->setGroup("oilpaint Tool"); m_brushSizeInput->blockSignals(true); m_smoothInput->blockSignals(true); m_brushSizeInput->setValue(config->readNumEntry("BrushSize", m_brushSizeInput->defaultValue())); m_smoothInput->setValue(config->readNumEntry("SmoothAjustment", m_smoothInput->defaultValue())); m_brushSizeInput->blockSignals(false); m_smoothInput->blockSignals(false); } void OilPaintTool::writeSettings() { TDEConfig* config = kapp->config(); config->setGroup("oilpaint Tool"); config->writeEntry("BrushSize", m_brushSizeInput->value()); config->writeEntry("SmoothAjustment", m_smoothInput->value()); m_previewWidget->writeSettings(); config->sync(); } void OilPaintTool::slotResetSettings() { m_brushSizeInput->blockSignals(true); m_smoothInput->blockSignals(true); m_brushSizeInput->slotReset(); m_smoothInput->slotReset(); m_brushSizeInput->blockSignals(false); m_smoothInput->blockSignals(false); } void OilPaintTool::prepareEffect() { m_brushSizeInput->setEnabled(false); m_smoothInput->setEnabled(false); DImg image = m_previewWidget->getOriginalRegionImage(); int b = m_brushSizeInput->value(); int s = m_smoothInput->value(); setFilter(dynamic_cast(new OilPaint(&image, this, b, s))); } void OilPaintTool::prepareFinal() { m_brushSizeInput->setEnabled(false); m_smoothInput->setEnabled(false); int b = m_brushSizeInput->value(); int s = m_smoothInput->value(); ImageIface iface(0, 0); setFilter(dynamic_cast(new OilPaint(iface.getOriginalImg(), this, b, s))); } void OilPaintTool::putPreviewData() { m_previewWidget->setPreviewImage(filter()->getTargetImage()); } void OilPaintTool::putFinalData() { ImageIface iface(0, 0); iface.putOriginalImage(i18n("Oil Paint"), filter()->getTargetImage().bits()); } } // NameSpace DigikamOilPaintImagesPlugin