Scribus
Open source desktop publishing at your fingertips
spiralvectordialog.h
1 /*
2 For general Scribus (>=1.3.2) copyright and licensing information please refer
3 to the COPYING file provided with the program. Following this notice may exist
4 a copyright and/or license notice that predates the release of Scribus 1.3.2
5 for which a new license (GPL+exception) is in place.
6 */
7 /***************************************************************************
8  spiralvectordialog.h - description
9  -------------------
10  begin : Wed Jan 27 2011
11  copyright : (C) 2011 by Franz Schmid
12  email : Franz.Schmid@altmuehlnet.de
13  ***************************************************************************/
14 
15 /***************************************************************************
16  * *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or *
20  * (at your option) any later version. *
21  * *
22  ***************************************************************************/
23 
24 #ifndef SPIRALVECTOR_H
25 #define SPIRALVECTOR_H
26 
27 #include "ui_spiralvectorbase.h"
28 
29 #include <QWidget>
30 #include <QLayout>
31 #include <QLabel>
32 #include <QEvent>
33 #include "scribusapi.h"
34 #include "ui/scrpalettebase.h"
35 
40 class SCRIBUS_API SpiralVectorDialog : public ScrPaletteBase, Ui::SpiralVectorBase
41 {
42  Q_OBJECT
43 
44 public:
45  SpiralVectorDialog( QWidget* parent);
46  ~SpiralVectorDialog() {};
47  virtual void changeEvent(QEvent *e);
48 
49 public slots:
50  void languageChange();
51  void changeVectors();
52  void setValues(double start, double sweep, double factor);
53 
54 signals:
55  void NewVectors(double, double, double);
56  void endEdit();
57 
58 };
59 #endif
Definition: spiralvectordialog.h:40
Definition: scrpalettebase.h:38