Scribus
Open source desktop publishing at your fingertips
arcvectordialog.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  arcvectordialog.h - description
9  -------------------
10  begin : Mon Jan 17 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 ARCVECTOR_H
25 #define ARCVECTOR_H
26 
27 #include "ui_arcvectorbase.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 ArcVectorDialog : public ScrPaletteBase, Ui::ArcVectorBase
41 {
42  Q_OBJECT
43 
44 public:
45  ArcVectorDialog( QWidget* parent);
46  ~ArcVectorDialog() {};
47  virtual void changeEvent(QEvent *e);
48 
49 public slots:
50  void languageChange();
51  void changeVectors();
52  void setValues(double start, double sweep, double height, double width);
53  void unitChange(int unitIndex);
54 
55 signals:
56  void NewVectors(double, double, double, double);
57  void endEdit();
58 
59 };
60 #endif
Definition: arcvectordialog.h:40
Definition: scrpalettebase.h:38