1
/* This file is part of the KDE project
2
Copyright (C) 2001, 2002, 2003 The Karbon Developers
4
This library is free software; you can redistribute it and/or
5
modify it under the terms of the GNU Library General Public
6
License as published by the Free Software Foundation; either
7
version 2 of the License, or (at your option) any later version.
9
This library is distributed in the hope that it will be useful,
10
but WITHOUT ANY WARRANTY; without even the implied warranty of
11
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12
Library General Public License for more details.
14
You should have received a copy of the GNU Library General Public License
15
along with this library; see the file COPYING.LIB. If not, write to
16
the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17
Boston, MA 02111-1307, USA.
20
#ifndef __VSPIRALTOOL_H__
21
#define __VSPIRALTOOL_H__
23
#include <kdialogbase.h>
26
#include "vshapetool.h"
29
class KoUnitDoubleSpinBox;
30
class KDoubleNumInput;
34
class VSpiralTool : public VShapeTool
37
VSpiralTool( KarbonPart *part );
38
virtual ~VSpiralTool();
40
virtual bool showDialog() const;
41
virtual QString name() { return i18n( "Spiral Tool" ); }
42
virtual QString icon() { return "14_spiral"; }
44
virtual VPath* shape( bool interactive = false ) const;
48
virtual void arrowKeyReleased( Qt::Key );
51
class VSpiralOptionsWidget : public KDialogBase
54
VSpiralOptionsWidget( KarbonPart *part, QWidget *parent = 0L, const char* name = 0L );
56
double radius() const;
57
uint segments() const;
60
bool clockwise() const;
61
void setRadius( double value );
62
void setSegments( uint value );
63
void setFade( double value );
64
void setClockwise( bool value );
69
KoUnitDoubleSpinBox *m_radius;
70
KIntSpinBox *m_segments;
71
KDoubleNumInput *m_fade;
73
KComboBox *m_clockwise;
77
VSpiralOptionsWidget *m_optionsWidget;