QElectroTech  0.70
partellipse.h
Go to the documentation of this file.
1 /*
2  Copyright 2006-2019 The QElectroTech Team
3  This file is part of QElectroTech.
4 
5  QElectroTech is free software: you can redistribute it and/or modify
6  it under the terms of the GNU General Public License as published by
7  the Free Software Foundation, either version 2 of the License, or
8  (at your option) any later version.
9 
10  QElectroTech is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU General Public License for more details.
14 
15  You should have received a copy of the GNU General Public License
16  along with QElectroTech. If not, see <http://www.gnu.org/licenses/>.
17 */
18 #ifndef PART_ELLIPSE_H
19 #define PART_ELLIPSE_H
20 
21 #include "abstractpartellipse.h"
22 
24 
31 {
32  Q_OBJECT
33 
34  // constructors, destructor
35  public:
36  PartEllipse(QETElementEditor *editor, QGraphicsItem * parent = nullptr);
37  ~PartEllipse() override;
38 
39  private:
40  PartEllipse(const PartEllipse &);
41 
42  // methods
43  public:
44  enum { Type = UserType + 1103 };
49  int type() const override { return Type; }
50  void paint(QPainter *, const QStyleOptionGraphicsItem *, QWidget * = nullptr) override;
51 
52  //Name and XML
53  QString name() const override { return(QObject::tr("ellipse", "element part name")); }
54  QString xmlName() const override { return(QString("ellipse")); }
55  const QDomElement toXml (QDomDocument &) const override;
56  void fromXml (const QDomElement &) override;
57  QPainterPath shape() const override;
58  QPainterPath shadowShape() const override;
59  void setRect(const QRectF &rect) override {AbstractPartEllipse::setRect(rect); adjusteHandlerPos();}
60 
61  protected:
62  void mouseReleaseEvent(QGraphicsSceneMouseEvent *event) override;
63  QVariant itemChange(GraphicsItemChange change, const QVariant &value) override;
64  bool sceneEventFilter(QGraphicsItem *watched, QEvent *event) override;
65 
66  private:
67  void switchResizeMode();
68  void adjusteHandlerPos();
69  void handlerMousePressEvent (QetGraphicsHandlerItem *qghi, QGraphicsSceneMouseEvent *event);
70  void handlerMouseMoveEvent (QetGraphicsHandlerItem *qghi, QGraphicsSceneMouseEvent *event);
71  void handlerMouseReleaseEvent (QetGraphicsHandlerItem *qghi, QGraphicsSceneMouseEvent *event);
72  void sceneSelectionChanged ();
73 
74  void addHandler();
75  void removeHandler();
76 
77  private:
79  int m_resize_mode = 1,
81 };
82 #endif
The QPropertyUndoCommand class This undo command manage QProperty of a QObject. This undo command can...
QPainterPath shape() const override
PartEllipse::shape.
PartEllipse(QETElementEditor *editor, QGraphicsItem *parent=nullptr)
PartEllipse::PartEllipse Constructor.
Definition: partellipse.cpp:30
const QDomElement toXml(QDomDocument &) const override
PartEllipse::toXml Export this ellipse in xml.
Definition: partellipse.cpp:79
~PartEllipse() override
PartEllipse::~PartEllipse Destructor.
Definition: partellipse.cpp:39
The QetGraphicsHandlerItem class This graphics item represents a point, destined to be used as an han...
QString xmlName() const override
Definition: partellipse.h:54
int m_vector_index
Definition: partellipse.h:80
void handlerMousePressEvent(QetGraphicsHandlerItem *qghi, QGraphicsSceneMouseEvent *event)
PartEllipse::handlerMousePressEvent.
void fromXml(const QDomElement &) override
PartEllipse::fromXml Import the properties of this ellipse from a xml element.
QRectF rect() const
void handlerMouseMoveEvent(QetGraphicsHandlerItem *qghi, QGraphicsSceneMouseEvent *event)
PartEllipse::handlerMouseMoveEvent.
bool sceneEventFilter(QGraphicsItem *watched, QEvent *event) override
PartEllipse::sceneEventFilter.
void paint(QPainter *, const QStyleOptionGraphicsItem *, QWidget *=nullptr) override
PartEllipse::paint Draw this ellpise.
Definition: partellipse.cpp:52
The AbstractPartEllipse class This is the base class for all ellipse based item like ellipse...
void sceneSelectionChanged()
PartEllipse::sceneSelectionChanged When the scene selection change, if there are several primitive se...
void removeHandler()
PartEllipse::removeHandler Remove the handlers of this item.
void adjusteHandlerPos()
PartEllipse::adjusteHandlerPos.
QIcon tr
Definition: qeticons.cpp:204
int m_resize_mode
Definition: partellipse.h:79
QPropertyUndoCommand * m_undo_command
Definition: partellipse.h:78
void setRect(const QRectF &rect) override
AbstractPartEllipse::setRect Sets the item&#39;s ellipse geometry to rect. The rectangle&#39;s left edge defi...
Definition: partellipse.h:59
void mouseReleaseEvent(QGraphicsSceneMouseEvent *event) override
PartEllipse::mouseReleaseEvent Handle mouse release event.
void handlerMouseReleaseEvent(QetGraphicsHandlerItem *qghi, QGraphicsSceneMouseEvent *event)
PartEllipse::handlerMouseReleaseEvent.
int type() const override
Definition: partellipse.h:49
void switchResizeMode()
QVariant itemChange(GraphicsItemChange change, const QVariant &value) override
PartEllipse::itemChange.
void addHandler()
PartEllipse::addHandler Add handlers for this item.
virtual void setRect(const QRectF &rect)
AbstractPartEllipse::setRect Sets the item&#39;s ellipse geometry to rect. The rectangle&#39;s left edge defi...
QPainterPath shadowShape() const override
The PartEllipse class This class represents an ellipse primitive which may be used to compose the dra...
Definition: partellipse.h:30
QString name() const override
Definition: partellipse.h:53