3
$Id: OptionDialog.h,v 1.14 2001/07/18 18:45:56 buis Exp $
5
This file is part of KIllustrator.
6
Copyright (C) 1998 Kai-Uwe Sattler (kus@iti.cs.uni-magdeburg.de)
8
This program is free software; you can redistribute it and/or modify
9
it under the terms of the GNU Library General Public License as
11
the Free Software Foundation; either version 2 of the License, or
12
(at your option) any later version.
14
This program is distributed in the hope that it will be useful,
15
but WITHOUT ANY WARRANTY; without even the implied warranty of
16
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
GNU General Public License for more details.
19
You should have received a copy of the GNU Library General Public License
20
along with this program; if not, write to the Free Software
21
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25
#ifndef OptionDialog_h_
26
#define OptionDialog_h_
28
#include <kdialogbase.h>
37
class OptionDialog : public KDialogBase
41
OptionDialog (GDocument *adoc, QWidget* parent = 0L, const char* name = 0L);
43
static int setup (GDocument *adoc);
46
void createGeneralWidget (QWidget* parent);
47
void createEditWidget (QWidget* parent);
48
void createBGWidget (QWidget* parent);
49
void createGridWidget (QWidget* parent);
50
void createHorizLineWidget (QWidget* parent);
51
void createVertLineWidget (QWidget* parent);
53
void initHelplinesLists();
59
void slotSetModified();
62
void updateHorizLine ();
63
void deleteHorizLine ();
64
void horizLineSelected (int idx);
67
void updateVertLine ();
68
void deleteVertLine ();
69
void vertLineSelected (int idx);
77
UnitBox *horiz, *vert;
78
UnitBox *smallStep, *bigStep;
81
KColorButton *bgbutton;
84
UnitBox *horizValue, *vertValue;
85
QListBox *horizList, *vertList;
86
QValueList<float> horizLines, vertLines;
87
QPushButton *addHorizHelpLine,*updateHorizHelpLine,*delHorizHelpLine;
88
QPushButton *delVertHelpLine, *updateVertHelpLine,*addVertHelpLine;
91
QCheckBox *gbutton, *sbutton;
92
UnitBox *hspinbox, *vspinbox;
93
KColorButton *cbutton;