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.
koffice/chalk/core/kis_adjustment_layer.cc

253 lines
6.3 KiB

/*
* Copyright (c) 2002 Patrick Julien <freak@codepimps.org>
* Copyright (c) 2005 Casper Boemann <cbr@boemann.dk>
*
* 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., 675 mass ave, cambridge, ma 02139, usa.
*/
#include <kdebug.h>
#include <tqimage.h>
#include "kis_debug_areas.h"
#include "kis_group_layer.h"
#include "kis_image.h"
#include "kis_layer.h"
#include "kis_adjustment_layer.h"
#include "kis_painter.h"
#include "kis_undo_adapter.h"
#include "kis_selection.h"
#include "kis_fill_painter.h"
KisAdjustmentLayer::KisAdjustmentLayer(KisImageSP img, const TQString &name, KisFilterConfiguration * kfc, KisSelectionSP selection)
: KisLayer (img, name, OPACITY_OPAQUE)
{
m_filterConfig = kfc;
setSelection( selection );
m_cachedPaintDev = new KisPaintDevice( img->colorSpace(), name.latin1());
m_showSelection = true;
Q_ASSERT(m_cachedPaintDev);
connect(img, TQT_SIGNAL(sigSelectionChanged(KisImageSP)),
this, TQT_SLOT(slotSelectionChanged(KisImageSP)));
}
KisAdjustmentLayer::KisAdjustmentLayer(const KisAdjustmentLayer& rhs)
: KisLayer(rhs), KisLayerSupportsIndirectPainting(rhs)
{
m_filterConfig = new KisFilterConfiguration(*rhs.m_filterConfig);
if (rhs.m_selection) {
m_selection = new KisSelection( *rhs.m_selection.data() );
m_selection->setParentLayer(this);
m_selection->setInterestedInDirtyness(true);
connect(rhs.image(), TQT_SIGNAL(sigSelectionChanged(KisImageSP)),
this, TQT_SLOT(slotSelectionChanged(KisImageSP)));
}
m_cachedPaintDev = new KisPaintDevice( *rhs.m_cachedPaintDev.data() );
m_showSelection = false;
}
KisAdjustmentLayer::~KisAdjustmentLayer()
{
delete m_filterConfig;
}
KisLayerSP KisAdjustmentLayer::clone() const
{
return new KisAdjustmentLayer(*this);
}
void KisAdjustmentLayer::resetCache()
{
m_cachedPaintDev = new KisPaintDevice(image()->colorSpace(), name().latin1());
}
KisFilterConfiguration * KisAdjustmentLayer::filter()
{
Q_ASSERT(m_filterConfig);
return m_filterConfig;
}
void KisAdjustmentLayer::setFilter(KisFilterConfiguration * filterConfig)
{
Q_ASSERT(filterConfig);
m_filterConfig = filterConfig;
}
KisSelectionSP KisAdjustmentLayer::selection()
{
return m_selection;
}
void KisAdjustmentLayer::setSelection(KisSelectionSP selection)
{
m_selection = new KisSelection();
KisFillPainter gc(m_selection.data());
KisColorSpace * cs = KisMetaRegistry::instance()->csRegistry()->getRGB8();
if (selection) {
gc.bitBlt(0, 0, COMPOSITE_COPY, selection.data(),
0, 0, image()->bounds().width(), image()->bounds().height());
} else {
gc.fillRect(image()->bounds(), KisColor(TQt::white, cs), MAX_SELECTED);
}
gc.end();
m_selection->setParentLayer(this);
m_selection->setInterestedInDirtyness(true);
}
void KisAdjustmentLayer::clearSelection()
{
KisFillPainter gc(m_selection.data());
KisColorSpace * cs = KisMetaRegistry::instance()->csRegistry()->getRGB8();
TQRect bounds = extent();
bounds |= image()->bounds();
gc.fillRect(bounds, KisColor(TQt::white, cs), MIN_SELECTED);
gc.end();
}
TQ_INT32 KisAdjustmentLayer::x() const
{
if (m_selection)
return m_selection->getX();
else
return 0;
}
void KisAdjustmentLayer::setX(TQ_INT32 x)
{
if (m_selection) {
m_selection->setX(x);
resetCache();
}
}
TQ_INT32 KisAdjustmentLayer::y() const
{
if (m_selection)
return m_selection->getY();
else
return 0;
}
void KisAdjustmentLayer::setY(TQ_INT32 y)
{
if (m_selection) {
m_selection->setY(y);
resetCache();
}
}
TQRect KisAdjustmentLayer::extent() const
{
if (m_selection)
return m_selection->selectedRect();
else if (image())
return image()->bounds();
else
return TQRect();
}
TQRect KisAdjustmentLayer::exactBounds() const
{
if (m_selection)
return m_selection->selectedRect();
else if (image())
return image()->bounds();
else
return TQRect();
}
bool KisAdjustmentLayer::accept(KisLayerVisitor & v)
{
return v.visit( this );
}
void KisAdjustmentLayer::paintSelection(TQImage &img, TQ_INT32 x, TQ_INT32 y, TQ_INT32 w, TQ_INT32 h)
{
if (showSelection() && selection())
selection()->paintSelection(img, x, y, w, h);
}
void KisAdjustmentLayer::paintSelection(TQImage &img, const TQRect& scaledImageRect, const TQSize& scaledImageSize, const TQSize& imageSize)
{
if (showSelection() && selection())
selection()->paintSelection(img, scaledImageRect, scaledImageSize, imageSize);
}
TQImage KisAdjustmentLayer::createThumbnail(TQ_INT32 w, TQ_INT32 h)
{
if (!selection())
return TQImage();
int srcw, srch;
if( image() )
{
srcw = image()->width();
srch = image()->height();
}
else
{
const TQRect e = extent();
srcw = e.width();
srch = e.height();
}
if (w > srcw)
{
w = srcw;
h = TQ_INT32(double(srcw) / w * h);
}
if (h > srch)
{
h = srch;
w = TQ_INT32(double(srch) / h * w);
}
if (srcw > srch)
h = TQ_INT32(double(srch) / srcw * w);
else if (srch > srcw)
w = TQ_INT32(double(srcw) / srch * h);
TQColor c;
TQ_UINT8 opacity;
TQImage img(w,h,32);
for (TQ_INT32 y=0; y < h; ++y) {
TQ_INT32 iY = (y * srch ) / h;
for (TQ_INT32 x=0; x < w; ++x) {
TQ_INT32 iX = (x * srcw ) / w;
m_selection->pixel(iX, iY, &c, &opacity);
img.setPixel(x, y, tqRgb(opacity, opacity, opacity));
}
}
return img;
}
void KisAdjustmentLayer::slotSelectionChanged(KisImageSP image) {
image->setModified();
}
#include "kis_adjustment_layer.moc"