Scribus
Open source desktop publishing at your fingertips
canvasmode_editmeshgradient.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 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15 /***************************************************************************
16  canvasmode_editmeshgradient.h - description
17  -------------------
18  begin : Sat Apr 24 2010
19  copyright : (C) 2010 by Franz Schmid
20  email : Franz.Schmid@altmuehlnet.de
21  ***************************************************************************/
22 
23 #ifndef CANVAS_MODE_EDITMESHGRADIENT_H
24 #define CANVAS_MODE_EDITMESHGRADIENT_H
25 
26 #include <QObject>
27 #include <QTime>
28 
29 #include "canvasmode.h"
30 #include "fpointarray.h"
31 
32 class PageItem;
33 class PageItem_TextFrame;
34 class ScribusMainWindow;
35 class ScribusView;
36 class meshPoint;
37 
38 
39 // This class encapsulate the old code for mouse interaction from scribusview.cpp
40 
42 {
43 public:
45  virtual ~CanvasMode_EditMeshGradient();
46 
47  virtual void enterEvent(QEvent *);
48  virtual void leaveEvent(QEvent *);
49 
50  virtual void activate(bool);
51  virtual void deactivate(bool);
52  virtual void mouseDoubleClickEvent(QMouseEvent *m);
53  virtual void mouseReleaseEvent(QMouseEvent *m);
54  virtual void mouseMoveEvent(QMouseEvent *m);
55  virtual void mousePressEvent(QMouseEvent *m);
56  virtual void keyPressEvent(QKeyEvent *e);
57  virtual bool handleKeyEvents() { return true; }
58  virtual void drawControls(QPainter* p);
59  void drawControlsMeshGradient(QPainter* pp, PageItem* currItem);
60 
61 private:
62 
63  typedef enum
64  {
65  noPointDefined,
66  useControlT,
67  useControlB,
68  useControlL,
69  useControlR
70  } eMGradientPoint;
71 
72  inline bool GetItem(PageItem** pi);
73 
74  meshPoint *old_mesh;
75  double Mxp, Myp;
76  ScribusMainWindow* m_ScMW;
77  eMGradientPoint m_gradientPoint;
78  QList<QPair<int, int> > selectedMeshPoints;
79  bool m_keyRepeat;
80 };
81 
82 
83 #endif
virtual void drawControls(QPainter *p)
Definition: canvasmode_editmeshgradient.cpp:84
Definition: pageitem_textframe.h:45
This Class is the base class for your application. It sets up the main window and providing a menubar...
Definition: scribus.h:123
Definition: canvasmode_editmeshgradient.h:41
Definition: mesh.h:33
Definition: canvasmode.h:72
virtual void deactivate(bool)
Definition: canvasmode_editmeshgradient.cpp:380
virtual void activate(bool)
Definition: canvasmode_editmeshgradient.cpp:361
Definition: pageitem.h:92
Definition: scribusview.h:87