Files
create/src/Mod/TechDraw/Gui/QGEPath.h
WandererFan 50f970efd7 [TD]Cosmetic function overhaul (#14216)
* [TD]Cosmetic geometry and tools update

- all cosmetics to store geometry in same form
- all cosmetics to survive scaling and rotation
- extension functions to survive scaling and rotation

* [TD]overhaul leader point storage and editing

- add py routine makeLeader(points)

* [TD]add leader conversion utility

* [TD]Set Leader RotateWithView default to true

* [TD]fix intersection vertex position

* [TD]add CosmeticEdge::makeLineFromCanonicalPoints

* [TD]fix 2 Extension tools

- positioning in DrawCosmeticCircle
- mishandling of points in execLineParallelPerpendicular

* [TD]Remove duplicate constexpr

* [TD]fix 2x Cosmetic arc tools

* [TD]refactor LineFormat out of Cosmetic

* [TD]move cosmetic appearance settings to LineFormat

* [TD]remove 2 unused methods

* [TD]apply format to blue line & circle tools

* [TD]fix ballon arrowhead does not rotate with view

* [TD]fix CosmeticCircle3Points

* [TD]allow multiple cosmetic object deletions

* [TD]fix extend/shorten centerline
2024-05-23 09:41:42 -04:00

144 lines
4.5 KiB
C++

/***************************************************************************
* Copyright (c) 2019 WandererFan <wandererfan@gmail.com> *
* *
* 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 TECHDRAWGUI_EDITABLEPATH_H
#define TECHDRAWGUI_EDITABLEPATH_H
#include <Mod/TechDraw/TechDrawGlobal.h>
#include <QGraphicsScene>
#include <QGraphicsSceneHoverEvent>
#include <QObject>
#include "QGIPrimPath.h"
#include "QGIVertex.h"
namespace TechDrawGui
{
class QGIPrimPath;
class QGIVertex;
class QGIView;
class QGILeaderLine;
//! QGMarker provides movable symbols
class TechDrawGuiExport QGMarker : public QObject, public QGIVertex
{
Q_OBJECT
public:
explicit QGMarker(int idx);
~QGMarker() override = default;
enum {Type = QGraphicsItem::UserType + 302};
int type() const override { return Type;}
void mouseReleaseEvent(QGraphicsSceneMouseEvent *event) override;
void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event) override;
void keyPressEvent(QKeyEvent * event) override;
void setRadius(float radius) override;
Q_SIGNALS:
void dragging(QPointF pos, int idx);
void dragFinished(QPointF pos, int idx);
void doubleClick(QPointF pos, int idx);
void endEdit();
protected:
bool multiselectEligible() override { return false; }
void mousePressEvent(QGraphicsSceneMouseEvent *event) override;
private:
bool m_dragging;
};
//******************************************************************************
class TechDrawGuiExport QGEPath : public QObject, public QGIPrimPath
{
Q_OBJECT
public:
explicit QGEPath();
~QGEPath() override = default;
enum {Type = QGraphicsItem::UserType + 301};
int type() const override { return Type;}
QRectF boundingRect() const override;
QPainterPath shape() const override;
void inEdit(bool isInEdit) { m_inEdit = isInEdit; }
bool inEdit() const { return m_inEdit; }
void startPathEdit(const std::vector<QPointF>& pathPoints);
void showMarkers(const std::vector<QPointF>& points);
void clearMarkers();
void setScale(double scale) { m_scale = scale; }
double getScale() const { return m_scale; }
void updateParent();
void drawGhost();
void dumpGhostPoints(const char* text);
void dumpMarkerPos(const char* text);
void setStartAdjust(double adjust);
void setEndAdjust(double adjust);
public Q_SLOTS:
void onDragFinished(QPointF pos, int index);
void onDragging(QPointF pos, int index);
void onDoubleClick(QPointF pos, int markerIndex);
void onEndEdit();
Q_SIGNALS:
void pointsUpdated(QPointF attach, std::vector<QPointF> deltas);
void hover(bool state);
void selected(bool state);
protected:
QVariant itemChange(GraphicsItemChange change, const QVariant &value) override;
void hoverEnterEvent(QGraphicsSceneHoverEvent *event) override;
void hoverLeaveEvent(QGraphicsSceneHoverEvent *event) override;
double getEdgeFuzz() const;
private:
std::vector<QPointF> m_ghostPoints;
std::vector<QGMarker*> m_markers;
double m_scale;
bool m_inEdit;
QGIPrimPath* m_ghost;
double m_startAdj;
double m_endAdj;
};
}
#endif // TECHDRAWGUI_EDITABLEPATH_H