Scribus
Open source desktop publishing at your fingertips
lensdialog.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) 2007 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 LENSDIALOG_H
28 #define LENSDIALOG_H
29 
30 #include <QDialog>
31 #include <QList>
32 #include <QPainterPath>
33 #include <QGraphicsItem>
34 #include <QGraphicsRectItem>
35 #include <QGraphicsPathItem>
36 #include <QGraphicsSceneMouseEvent>
37 #include <QGraphicsSceneHoverEvent>
38 #include "ui_lensdialogbase.h"
39 #include "pluginapi.h"
40 #include "scribusdoc.h"
41 
42 class LensDialog;
43 
44 class PLUGIN_API LensItem : public QGraphicsRectItem
45 {
46 public:
47  LensItem(QRectF geom, LensDialog *parent);
48  ~LensItem() {};
49  void setStrength(double s);
50  void updateEffect();
51  QPainterPath lensDeform(const QPainterPath &source, const QPointF &offset, double m_radius, double s);
52  void paint(QPainter *painter, const QStyleOptionGraphicsItem *item, QWidget *widget);
53  double strength;
54  double scaling;
55  int handle;
56  QPointF mousePoint;
57 protected:
58  QVariant itemChange(GraphicsItemChange change, const QVariant &value);
59  void mousePressEvent(QGraphicsSceneMouseEvent *event);
60  void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
61  void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
62  void hoverEnterEvent(QGraphicsSceneHoverEvent *event);
63  void hoverMoveEvent(QGraphicsSceneHoverEvent *event);
64  void hoverLeaveEvent(QGraphicsSceneHoverEvent *);
65  LensDialog *dialog;
66 };
67 
68 class PLUGIN_API LensDialog : public QDialog, Ui::LensDialogBase
69 {
70  Q_OBJECT
71 
72 public:
73  LensDialog(QWidget* parent, ScribusDoc *doc);
74  ~LensDialog() {};
75  void addItemsToScene(Selection* itemSelection, ScribusDoc *doc, QGraphicsPathItem* parentItem, PageItem* parent);
76  void lensSelected(LensItem *item);
77  void setLensPositionValues(QPointF p);
78  QGraphicsScene scene;
79  QList<QPainterPath> origPath;
80  QList<QGraphicsPathItem*> origPathItem;
81  QList<PageItem*> origPageItem;
82  QList<LensItem*> lensList;
83  int currentLens;
84  bool isFirst;
85 
86 protected:
87  void showEvent(QShowEvent *e);
88 
89 private slots:
90  void doZoomIn();
91  void doZoomOut();
92  void addLens();
93  void removeLens();
94  void changeLens();
95  void selectionHasChanged();
96  void setNewLensX(double x);
97  void setNewLensY(double y);
98  void setNewLensRadius(double radius);
99  void setNewLensStrength(double s);
100 };
101 
102 #endif
Definition: lensdialog.h:44
the Document Class
Definition: scribusdoc.h:90
Definition: lensdialog.h:68
Definition: pageitem.h:92
Definition: selection.h:34