/************************************************************************ ** ** @file vabstractpoint.h ** @author Roman Telezhynskyi ** @date 19 6, 2015 ** ** @brief ** @copyright ** This source code is part of the Valentine project, a pattern making ** program, whose allow create and modeling patterns of clothing. ** Copyright (C) 2015 Valentina project ** All Rights Reserved. ** ** Valentina is free software: you can redistribute it and/or modify ** it under the terms of the GNU General Public License as published by ** the Free Software Foundation, either version 3 of the License, or ** (at your option) any later version. ** ** Valentina 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 General Public License for more details. ** ** You should have received a copy of the GNU General Public License ** along with Valentina. If not, see . ** *************************************************************************/ #ifndef VABSTRACTPOINT_H #define VABSTRACTPOINT_H #include #include #include #include #include #include #include #include #include #include "../vdrawtool.h" #include "../vgeometry/../ifc/ifcdef.h" #include "../vgeometry/vpointf.h" #include "../vmisc/vabstractapplication.h" #include "../vpatterndb/vcontainer.h" #include "../vwidgets/../vmisc/def.h" #include "../vwidgets/vmaingraphicsscene.h" #include "tools/drawTools/toolpoint/../../../dialogs/tools/../../visualization/visualization.h" #include "tools/drawTools/toolpoint/../../vabstracttool.h" class QPointF; class VAbstractPattern; class VAbstractPoint: public VDrawTool { Q_OBJECT public: VAbstractPoint(VAbstractPattern *doc, VContainer *data, quint32 id); virtual ~VAbstractPoint() Q_DECL_OVERRIDE; virtual QString getTagName() const Q_DECL_OVERRIDE; template void ShowToolVisualization(bool show); public slots: virtual void ShowTool(quint32 id, bool enable) Q_DECL_OVERRIDE; void DeleteFromLabel(); virtual void DoChangePosition(quint32 id, qreal mx, qreal my) =0; protected: void SetPointName(quint32 id, const QString &name); template void ChangePosition(T *item, quint32 id, const QPointF &pos); virtual void UpdateNamePosition(quint32 id)=0; virtual void RefreshLine(quint32 id)=0; template void SetToolEnabled(T *item, const QColor &color, bool enabled); template static void InitToolConnections(VMainGraphicsScene *scene, T *tool); private: Q_DISABLE_COPY(VAbstractPoint) }; //--------------------------------------------------------------------------------------------------------------------- template void VAbstractPoint::ShowToolVisualization(bool show) { if (show) { if (vis == nullptr) { AddVisualization(); SetVisualization(); } else { if (T *visual = qobject_cast(vis)) { visual->show(); } } } else { delete vis; vis = nullptr; } } //--------------------------------------------------------------------------------------------------------------------- template void VAbstractPoint::SetToolEnabled(T *item, const QColor &color, bool enabled) { item->setEnabled(enabled); if (enabled) { item->setPen(QPen(color, qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor)); } else { item->setPen(QPen(Qt::gray, qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor)); } } //--------------------------------------------------------------------------------------------------------------------- template void VAbstractPoint::ChangePosition(T *item, quint32 id, const QPointF &pos) { const QPointF p = pos - item->pos(); DoChangePosition(id, p.x(), p.y()); UpdateNamePosition(id); } //--------------------------------------------------------------------------------------------------------------------- template void VAbstractPoint::InitToolConnections(VMainGraphicsScene *scene, T *tool) { SCASSERT(scene != nullptr); SCASSERT(tool != nullptr); InitDrawToolConnections(scene, tool); QObject::connect(scene, &VMainGraphicsScene::EnablePointItemHover, tool, &T::AllowHover); QObject::connect(scene, &VMainGraphicsScene::EnablePointItemSelection, tool, &T::AllowSelecting); QObject::connect(scene, &VMainGraphicsScene::EnableLabelItemHover, tool, &T::AllowLabelHover); QObject::connect(scene, &VMainGraphicsScene::EnableLabelItemSelection, tool, &T::AllowLabelSelecting); } #endif // VABSTRACTPOINT_H