1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
/*
* 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 <kconfig.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"
|