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.
118 lines
3.7 KiB
118 lines
3.7 KiB
/*
|
|
* dlg_dropshadow.cc - part of KimageShop^WKrayon^WChalk
|
|
*
|
|
* Copyright (c) 2005 Michael Thaler <michael.thaler@physik.tu-muenchen.de>
|
|
* Copyright (c) 2006 Cyrille Berger <cberger@cberger.net>
|
|
*
|
|
* 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 <tqbutton.h>
|
|
#include <tqbuttongroup.h>
|
|
#include <tqcheckbox.h>
|
|
#include <tqcolor.h>
|
|
#include <tqcombobox.h>
|
|
#include <tqlabel.h>
|
|
#include <tqradiobutton.h>
|
|
#include <tqslider.h>
|
|
|
|
#include <kcolorbutton.h>
|
|
#include <tdeconfig.h>
|
|
#include <kdebug.h>
|
|
#include <klocale.h>
|
|
#include <knuminput.h>
|
|
|
|
#include "dlg_dropshadow.h"
|
|
#include "wdg_dropshadow.h"
|
|
|
|
DlgDropshadow::DlgDropshadow( const TQString & /*imageCS*/,
|
|
const TQString & /*layerCS*/,
|
|
TQWidget * parent,
|
|
const char * name)
|
|
: super (parent, name, true, i18n("Drop Shadow"), Ok | Cancel, Ok)
|
|
{
|
|
m_page = new WdgDropshadow(this, "dropshadow");
|
|
TQ_CHECK_PTR(m_page);
|
|
setMainWidget(m_page);
|
|
resize(m_page->sizeHint());
|
|
|
|
TDEConfig * cfg = TDEGlobal::config();
|
|
m_page->xOffsetSpinBox->setValue( cfg->readNumEntry("dropshadow_x", 8) );
|
|
m_page->yOffsetSpinBox->setValue( cfg->readNumEntry("dropshadow_y", 8) );
|
|
m_page->blurRadiusSpinBox->setValue( cfg->readNumEntry("dropshadow_blurRadius", 5) );
|
|
TQColor black(0,0,0);
|
|
m_page->shadowColorButton->setColor( cfg->readColorEntry("dropshadow_color", &black) );
|
|
m_page->opacitySlider->setValue( cfg->readNumEntry("dropshadow_opacity", 80 ) );
|
|
m_page->opacitySpinBox->setValue( cfg->readNumEntry("dropshadow_opacity", 80 ) );
|
|
m_page->allowResizingCheckBox->setChecked( cfg->readBoolEntry("dropshadow_resizing", true ) );
|
|
|
|
connect(this, TQT_SIGNAL(okClicked()),
|
|
this, TQT_SLOT(okClicked()));
|
|
}
|
|
|
|
DlgDropshadow::~DlgDropshadow()
|
|
{
|
|
delete m_page;
|
|
}
|
|
|
|
TQ_INT32 DlgDropshadow::getXOffset()
|
|
{
|
|
return m_page->xOffsetSpinBox->value();
|
|
}
|
|
|
|
TQ_INT32 DlgDropshadow::getYOffset()
|
|
{
|
|
return m_page->yOffsetSpinBox->value();
|
|
}
|
|
|
|
TQ_INT32 DlgDropshadow::getBlurRadius()
|
|
{
|
|
return m_page->blurRadiusSpinBox->value();
|
|
}
|
|
|
|
TQ_UINT8 DlgDropshadow::getShadowOpacity()
|
|
{
|
|
double opacity = (double)m_page->opacitySpinBox->value();
|
|
//convert percent to a 8 bit opacity value
|
|
return (TQ_UINT8)(opacity / 100 * 255);
|
|
}
|
|
|
|
TQColor DlgDropshadow::getShadowColor()
|
|
{
|
|
return m_page->shadowColorButton->color();
|
|
}
|
|
|
|
bool DlgDropshadow::allowResizingChecked()
|
|
{
|
|
return m_page->allowResizingCheckBox->isChecked();
|
|
}
|
|
|
|
// SLOTS
|
|
|
|
void DlgDropshadow::okClicked()
|
|
{
|
|
TDEConfig * cfg = TDEGlobal::config();
|
|
cfg->writeEntry("dropshadow_x", m_page->xOffsetSpinBox->value());
|
|
cfg->writeEntry("dropshadow_y", m_page->yOffsetSpinBox->value());
|
|
cfg->writeEntry("dropshadow_blurRadius", m_page->blurRadiusSpinBox->value());
|
|
cfg->writeEntry("dropshadow_color", m_page->shadowColorButton->color());
|
|
cfg->writeEntry("dropshadow_opacity", m_page->opacitySpinBox->value());
|
|
cfg->writeEntry("dropshadow_resizing", m_page->allowResizingCheckBox->isChecked());
|
|
|
|
accept();
|
|
}
|
|
|
|
#include "dlg_dropshadow.moc"
|