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/krita/ui/kis_autogradient.cc

148 lines
5.1 KiB

/*
* Copyright (c) 2004 Cyrille Berger <cberger@cberger.net>
* 2004 Sven Langkamp <longamp@reallygood.de>
*
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "kis_autogradient.h"
#include <qpainter.h>
#include <qcombobox.h>
#include <kcolorbutton.h>
#include <knuminput.h>
#include "kis_int_spinbox.h"
#include "kis_gradient.h"
#include "kis_autogradient_resource.h"
#include "kis_gradient_slider_widget.h"
/****************************** KisAutogradient ******************************/
KisAutogradient::KisAutogradient(QWidget *parent, const char* name, const QString& caption) : KisWdgAutogradient(parent, name)
{
setCaption(caption);
m_autogradientResource = new KisAutogradientResource();
m_autogradientResource->createSegment( INTERP_LINEAR, COLOR_INTERP_RGB, 0.0, 1.0, 0.5, Qt::black, Qt::white );
connect(gradientSlider, SIGNAL( sigSelectedSegment( KisGradientSegment* ) ), SLOT( slotSelectedSegment(KisGradientSegment*) ));
connect(gradientSlider, SIGNAL( sigChangedSegment(KisGradientSegment*) ), SLOT( slotChangedSegment(KisGradientSegment*) ));
gradientSlider->setGradientResource( m_autogradientResource );
connect(comboBoxColorInterpolationType, SIGNAL( activated(int) ), SLOT( slotChangedColorInterpolation(int) ));
connect(comboBoxInterpolationType, SIGNAL( activated(int) ), SLOT( slotChangedInterpolation(int) ));
connect(leftColorButton, SIGNAL( changed(const QColor&) ), SLOT( slotChangedLeftColor(const QColor&) ));
connect(rightColorButton, SIGNAL( changed(const QColor&) ), SLOT( slotChangedRightColor(const QColor&) ));
// intNumInputLeftOpacity->setRange( 0, 100, false);
connect(intNumInputLeftOpacity, SIGNAL( valueChanged(int) ), SLOT( slotChangedLeftOpacity(int) ));
// intNumInputRightOpacity->setRange( 0, 100, false);
connect(intNumInputRightOpacity, SIGNAL( valueChanged(int) ), SLOT( slotChangedRightOpacity(int) ));
}
void KisAutogradient::activate()
{
paramChanged();
}
void KisAutogradient::slotSelectedSegment(KisGradientSegment* segment)
{
leftColorButton->setColor( segment->startColor().color() );
rightColorButton->setColor( segment->endColor().color() );
comboBoxColorInterpolationType->setCurrentItem( segment->colorInterpolation() );
comboBoxInterpolationType->setCurrentItem( segment->interpolation() );
int leftOpacity = qRound(segment->startColor().alpha() * 100);
intNumInputLeftOpacity->setValue( leftOpacity );
int rightOpacity = qRound(segment->endColor().alpha() * 100);
intNumInputRightOpacity->setValue( rightOpacity );
paramChanged();
}
void KisAutogradient::slotChangedSegment(KisGradientSegment*)
{
paramChanged();
}
void KisAutogradient::slotChangedInterpolation(int type)
{
KisGradientSegment* segment = gradientSlider->selectedSegment();
if(segment)
segment->setInterpolation( type );
gradientSlider->update();
paramChanged();
}
void KisAutogradient::slotChangedColorInterpolation(int type)
{
KisGradientSegment* segment = gradientSlider->selectedSegment();
if(segment)
segment->setColorInterpolation( type );
gradientSlider->update();
paramChanged();
}
void KisAutogradient::slotChangedLeftColor( const QColor& color)
{
KisGradientSegment* segment = gradientSlider->selectedSegment();
if(segment)
segment->setStartColor( Color( color, segment->startColor().alpha() ) );
gradientSlider->update();
paramChanged();
}
void KisAutogradient::slotChangedRightColor( const QColor& color)
{
KisGradientSegment* segment = gradientSlider->selectedSegment();
if(segment)
segment->setEndColor( Color( color, segment->endColor().alpha() ) );
gradientSlider->repaint();
paramChanged();
}
void KisAutogradient::slotChangedLeftOpacity( int value )
{
KisGradientSegment* segment = gradientSlider->selectedSegment();
if(segment)
segment->setStartColor( Color( segment->startColor().color(), (double)value / 100 ) );
gradientSlider->repaint(false);
paramChanged();
}
void KisAutogradient::slotChangedRightOpacity( int value )
{
KisGradientSegment* segment = gradientSlider->selectedSegment();
if(segment)
segment->setEndColor( Color( segment->endColor().color(), (double)value / 100 ) );
gradientSlider->repaint(false);
paramChanged();
}
void KisAutogradient::paramChanged()
{
m_autogradientResource->updatePreview ();
emit activatedResource( m_autogradientResource );
}
#include "kis_autogradient.moc"