Scribus
Open source desktop publishing at your fingertips
transformdialog.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 * Copyright (C) 2008 by Franz Schmid *
9 * franz.schmid@altmuehlnet.de *
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 * This program is distributed in the hope that it will be useful, *
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
19 * GNU General Public License for more details. *
20 * *
21 * You should have received a copy of the GNU General Public License *
22 * along with this program; if not, write to the *
23 * Free Software Foundation, Inc., *
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
25 ****************************************************************************/
26 
27 #ifndef TRANSFORMDIALOG_H
28 #define TRANSFORMDIALOG_H
29 
30 #include <QDialog>
31 #include <QListWidget>
32 #include <QListWidgetItem>
33 #include <QTransform>
34 #include <QMenu>
35 #include <QString>
36 #include "ui_transformdialogbase.h"
37 #include "scribusdoc.h"
38 
39 #include "scribusapi.h"
40 
41 class SCRIBUS_API TransformItem : public QListWidgetItem
42 {
43 public:
44  TransformItem(QString text, QListWidget* parent, int type, double val1, double val2);
45  ~TransformItem() {};
46  double firstValue;
47  double secondValue;
48 };
49 
50 class SCRIBUS_API TransformDialog : public QDialog, Ui::TransformDialogBase
51 {
52  Q_OBJECT
53 
54 public:
55  TransformDialog(QWidget* parent, ScribusDoc *doc);
56  ~TransformDialog() {};
57  QTransform getTransformMatrix();
58  int getCount();
59  int getBasepoint();
60 
61 private slots:
62  void newScaling();
63  void newTranslation();
64  void newRotation();
65  void newSkewing();
66  void setCurrentTransform(QListWidgetItem* item);
67  void changeHScale(double val);
68  void changeVScale(double val);
69  void toggleLink();
70  void changeHTranslation(double val);
71  void changeVTranslation(double val);
72  void changeRotation(double val);
73  void changeHSkew(double val);
74  void changeVSkew(double val);
75  void toggleLinkSkew();
76  void moveTransformUp();
77  void moveTransformDown();
78  void removeTransform();
79 
80 private:
81  QMenu *newTransformMenu;
82  ScribusDoc *m_doc;
83  double m_unitRatio;
84  QString m_suffix;
85 };
86 
87 #endif
the Document Class
Definition: scribusdoc.h:90
Definition: transformdialog.h:50
Definition: transformdialog.h:41