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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
/* This file is part of the KDE project
Copyright (C) 2005 Thorsten Zachmann <zachmann@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "KPrPolygonProperty.h"
#include <tqlayout.h>
#include <kcombobox.h>
#include <tdelocale.h>
#include <knuminput.h>
#include "polygonpropertyui.h"
#include "KPrPolygonPreview.h"
KPrPolygonProperty::KPrPolygonProperty( TQWidget *parent, const char *name, KPrPolygonSettingCmd::PolygonSettings &polygonSettings )
: TQWidget( parent, name )
, m_polygonSettings( polygonSettings )
{
TQVBoxLayout *layout = new TQVBoxLayout( this );
layout->addWidget( m_ui = new PolygonPropertyUI( this ) );
m_ui->typeCombo->insertItem( i18n( "Polygon" ) );
m_ui->typeCombo->insertItem( i18n( "Convex/Concave" ) );
connect( m_ui->typeCombo, TQ_SIGNAL( activated( int ) ),
this, TQ_SLOT(slotTypeChanged( int ) ) );
connect( m_ui->cornersInput, TQ_SIGNAL( valueChanged( int ) ),
m_ui->polygonPreview, TQ_SLOT( slotCornersValue( int ) ) );
connect( m_ui->sharpnessInput, TQ_SIGNAL( valueChanged( int ) ),
m_ui->polygonPreview, TQ_SLOT( slotSharpnessValue( int ) ) );
slotReset();
}
KPrPolygonProperty::~KPrPolygonProperty()
{
}
int KPrPolygonProperty::getPolygonPropertyChange() const
{
int flags = 0;
if ( isConvexConcave() != m_polygonSettings.checkConcavePolygon )
flags |= KPrPolygonSettingCmd::ConcaveConvex;
if ( m_ui->cornersInput->value() != m_polygonSettings.cornersValue )
flags |= KPrPolygonSettingCmd::Corners;
if ( m_ui->sharpnessInput->value() != m_polygonSettings.sharpnessValue )
flags |= KPrPolygonSettingCmd::Sharpness;
return flags;
}
KPrPolygonSettingCmd::PolygonSettings KPrPolygonProperty::getPolygonSettings() const
{
KPrPolygonSettingCmd::PolygonSettings polygonSettings;
polygonSettings.checkConcavePolygon = isConvexConcave();
polygonSettings.cornersValue = m_ui->cornersInput->value();;
polygonSettings.sharpnessValue = m_ui->sharpnessInput->value();;
return polygonSettings;
}
void KPrPolygonProperty::setPolygonSettings( const KPrPolygonSettingCmd::PolygonSettings &polygonSettings )
{
m_polygonSettings = polygonSettings;
slotReset();
}
void KPrPolygonProperty::apply()
{
int flags = getPolygonPropertyChange();
if ( flags & KPrPolygonSettingCmd::ConcaveConvex )
m_polygonSettings.checkConcavePolygon = isConvexConcave();
if ( flags & KPrPolygonSettingCmd::Corners )
m_polygonSettings.cornersValue = m_ui->cornersInput->value();
if ( flags & KPrPolygonSettingCmd::Sharpness )
m_polygonSettings.sharpnessValue = m_ui->sharpnessInput->value();
}
bool KPrPolygonProperty::isConvexConcave() const
{
return m_ui->typeCombo->currentItem() == 1;
}
void KPrPolygonProperty::slotTypeChanged( int pos )
{
m_ui->polygonPreview->slotConvexConcave( pos == 1 );
m_ui->sharpnessInput->setEnabled( pos == 1 );
}
void KPrPolygonProperty::slotReset()
{
m_ui->typeCombo->setCurrentItem( m_polygonSettings.checkConcavePolygon ? 1 : 0 );
m_ui->polygonPreview->slotConvexConcave( m_polygonSettings.checkConcavePolygon );
m_ui->sharpnessInput->setEnabled( m_polygonSettings.checkConcavePolygon );
m_ui->cornersInput->setValue( m_polygonSettings.cornersValue );
m_ui->polygonPreview->slotCornersValue( m_polygonSettings.cornersValue );
m_ui->sharpnessInput->setValue( m_polygonSettings.sharpnessValue );
m_ui->polygonPreview->slotSharpnessValue( m_polygonSettings.sharpnessValue );
}
#include "KPrPolygonProperty.moc"
|