/*************************************************************************** * Copyright (c) 2019 WandererFan * * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Library General Public * * License as published by the Free Software Foundation; either * * version 2 of the License, or (at your option) any later version. * * * * This library is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU Library General Public License for more details. * * * * You should have received a copy of the GNU Library General Public * * License along with this library; see the file COPYING.LIB. If not, * * write to the Free Software Foundation, Inc., 59 Temple Place, * * Suite 330, Boston, MA 02111-1307, USA * * * ***************************************************************************/ #ifndef DRAWINGGUI_QGRAPHICSITEMLEADERLINE_H #define DRAWINGGUI_QGRAPHICSITEMLEADERLINE_H #include #include #include #include #include #include #include #include #include #include #include "QGIView.h" namespace TechDraw { class DrawLeaderLine; class DrawView; } namespace TechDrawGui { class QGIPrimPath; class QGIArrow; class QGEPath; //******************************************************************* class TechDrawGuiExport QGILeaderLine : public QGIView { Q_OBJECT public: enum {Type = QGraphicsItem::UserType + 232}; explicit QGILeaderLine(); ~QGILeaderLine() = default; int type() const override { return Type;} virtual void paint( QPainter * painter, const QStyleOptionGraphicsItem * option, QWidget * widget = 0 ) override; virtual QRectF boundingRect() const override; virtual QPainterPath shape(void) const override; virtual void drawBorder() override; virtual void updateView(bool update = false) override; virtual TechDraw::DrawLeaderLine* getFeature(void); void startPathEdit(void); void setArrows(std::vector pathPoints); void abandonEdit(void); void closeEdit(void); double getLineWidth(void); double getEdgeFuzz(void) const; virtual void mousePressEvent(QGraphicsSceneMouseEvent * event) override; //void mouseMoveEvent(QGraphicsSceneMouseEvent * event) override; virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent * event) override; virtual void hoverEnterEvent(QGraphicsSceneHoverEvent *event) override; virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent *event) override; void setPrettyNormal(); void setPrettyPre(); void setPrettySel(); void setLeaderFeature(TechDraw::DrawLeaderLine* feat); public Q_SLOTS: void onLineEditFinished(QPointF attach, std::vector deltas); //QGEPath is finished editing points virtual void onSourceChange(TechDraw::DrawView* newParent) override; Q_SIGNALS: void editComplete(void); //tell caller that edit session is finished protected: virtual void draw() override; QPainterPath makeLeaderPath(std::vector qPoints); std::vector getWayPointsFromFeature(void); QPointF getAttachFromFeature(void); virtual QVariant itemChange( GraphicsItemChange change, const QVariant &value ) override; std::vector m_pathPoints; void saveState(void); void restoreState(void); protected: QColor getNormalColor() override; void setNormalColorAll(); QGraphicsItem* m_parentItem; QGIPrimPath* m_line; //actual leader line double m_lineWidth; QColor m_lineColor; Qt::PenStyle m_lineStyle; QGIArrow* m_arrow1; QGIArrow* m_arrow2; QGEPath* m_editPath; //line editor QColor m_editPathColor; Qt::PenStyle m_editPathStyle; bool m_hasHover; double m_saveX; double m_saveY; std::vector m_savePoints; bool m_blockDraw; //prevent redraws while updating. }; } #endif // DRAWINGGUI_QGRAPHICSITEMLEADERLINE_H