/************************************************************************ ** ** @file vabstractspline.cpp ** @author Roman Telezhynskyi ** @date 4 3, 2014 ** ** @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) 2013-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 . ** *************************************************************************/ #include "vabstractspline.h" #include #include #include #include #include #include #include #include #include #include #include #include "../ifc/exception/vexception.h" #include "../ifc/exception/vexceptionbadid.h" #include "../ifc/xml/vabstractpattern.h" #include "../qmuparser/qmutokenparser.h" #include "../vgeometry/../ifc/ifcdef.h" #include "../vgeometry/vgobject.h" #include "../vgeometry/vpointf.h" #include "../vgeometry/vspline.h" #include "../vpatterndb/vcontainer.h" #include "../vwidgets/vcontrolpointspline.h" #include "../../../visualization/line/visline.h" #include "../../vabstracttool.h" #include "../vdrawtool.h" //--------------------------------------------------------------------------------------------------------------------- VAbstractSpline::VAbstractSpline(VAbstractPattern *doc, VContainer *data, quint32 id, QGraphicsItem *parent) :VDrawTool(doc, data, id), QGraphicsPathItem(parent), controlPoints(QVector()), sceneType(SceneObject::Unknown), isHovered(false), detailsMode(false) { InitDefShape(); setAcceptHoverEvents(true); } //--------------------------------------------------------------------------------------------------------------------- QPainterPath VAbstractSpline::shape() const { const QSharedPointer curve = VAbstractTool::data.GeometricObject(id); const QVector points = curve->GetPoints(); QPainterPath path; for (qint32 i = 0; i < points.count()-1; ++i) { path.moveTo(points.at(i)); path.lineTo(points.at(i+1)); } if (isHovered || detailsMode) { path.addPath(curve->GetDirectionPath()); } path.setFillRule(Qt::WindingFill); // We unfortunately need this hack as QPainterPathStroker will set a width of 1.0 // if we pass a value of 0.0 to QPainterPathStroker::setWidth() const qreal penWidthZero = qreal(0.00000001); if (path == QPainterPath() || pen() == Qt::NoPen) { return path; } QPainterPathStroker ps; ps.setCapStyle(pen().capStyle()); if (pen().widthF() <= 0.0) { ps.setWidth(penWidthZero); } else { ps.setWidth(pen().widthF()); } ps.setJoinStyle(pen().joinStyle()); ps.setMiterLimit(pen().miterLimit()); QPainterPath p = ps.createStroke(path); p.addPath(path); return p; } //--------------------------------------------------------------------------------------------------------------------- void VAbstractSpline::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget) { if (isHovered || detailsMode) { painter->save(); QPen arrowPen(pen()); arrowPen.setStyle(Qt::SolidLine); painter->setPen(arrowPen); painter->setBrush(brush()); const QSharedPointer curve = VAbstractTool::data.GeometricObject(id); painter->drawPath(curve->GetDirectionPath()); painter->restore(); } QGraphicsPathItem::paint(painter, option, widget); } //--------------------------------------------------------------------------------------------------------------------- QString VAbstractSpline::getTagName() const { return VAbstractPattern::TagSpline; } //--------------------------------------------------------------------------------------------------------------------- /** * @brief FullUpdateFromFile update tool data form file. */ void VAbstractSpline::FullUpdateFromFile() { ReadAttributes(); RefreshGeometry(); } //--------------------------------------------------------------------------------------------------------------------- void VAbstractSpline::Disable(bool disable, const QString &namePP) { enabled = !CorrectDisable(disable, namePP); this->setEnabled(enabled); const QSharedPointer curve = VAbstractTool::data.GeometricObject(id); this->setPen(QPen(CorrectColor(curve->GetColor()), qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor, LineStyleToPenStyle(curve->GetPenStyle()), Qt::RoundCap)); emit setEnabledPoint(enabled); } //--------------------------------------------------------------------------------------------------------------------- void VAbstractSpline::DetailsMode(bool mode) { detailsMode = mode; RefreshGeometry(); ShowHandles(detailsMode); } //--------------------------------------------------------------------------------------------------------------------- void VAbstractSpline::AllowHover(bool enabled) { setAcceptHoverEvents(enabled); } //--------------------------------------------------------------------------------------------------------------------- void VAbstractSpline::AllowSelecting(bool enabled) { setFlag(QGraphicsItem::ItemIsSelectable, enabled); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief ShowTool highlight tool. * @param id object id in container * @param enable enable or disable highlight. */ void VAbstractSpline::ShowTool(quint32 id, bool enable) { ShowItem(this, id, enable); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief SetFactor set current scale factor of scene. * @param factor scene scale factor. */ void VAbstractSpline::SetFactor(qreal factor) { VDrawTool::SetFactor(factor); RefreshGeometry(); } //--------------------------------------------------------------------------------------------------------------------- void VAbstractSpline::RefreshGeometry() { InitDefShape(); SetVisualization(); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief hoverEnterEvent handle hover enter events. * @param event hover enter event. */ // cppcheck-suppress unusedFunction void VAbstractSpline::hoverEnterEvent(QGraphicsSceneHoverEvent *event) { Q_UNUSED(event) const QSharedPointer curve = VAbstractTool::data.GeometricObject(id); this->setPen(QPen(CorrectColor(curve->GetColor()), qApp->toPixel(WidthMainLine(*VAbstractTool::data.GetPatternUnit()))/factor, LineStyleToPenStyle(curve->GetPenStyle()), Qt::RoundCap)); this->setPath(curve->GetPath()); isHovered = true; QGraphicsPathItem::hoverEnterEvent(event); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief hoverLeaveEvent handle hover leave events. * @param event hover leave event. */ // cppcheck-suppress unusedFunction void VAbstractSpline::hoverLeaveEvent(QGraphicsSceneHoverEvent *event) { Q_UNUSED(event) const QSharedPointer curve = VAbstractTool::data.GeometricObject(id); this->setPen(QPen(CorrectColor(curve->GetColor()), qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor, LineStyleToPenStyle(curve->GetPenStyle()), Qt::RoundCap)); this->setPath(curve->GetPath()); isHovered = false; QGraphicsPathItem::hoverLeaveEvent(event); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief itemChange hadle item change. * @param change change. * @param value value. * @return value. */ QVariant VAbstractSpline::itemChange(QGraphicsItem::GraphicsItemChange change, const QVariant &value) { if (change == QGraphicsItem::ItemSelectedChange) { emit ChangedToolSelection(value.toBool(), id, id); } return QGraphicsPathItem::itemChange(change, value); } //--------------------------------------------------------------------------------------------------------------------- /** * @brief keyReleaseEvent handle key release events. * @param event key release event. */ void VAbstractSpline::keyReleaseEvent(QKeyEvent *event) { switch (event->key()) { case Qt::Key_Delete: try { DeleteTool(); } catch(const VExceptionToolWasDeleted &e) { Q_UNUSED(e) return;//Leave this method immediately!!! } break; default: break; } QGraphicsPathItem::keyReleaseEvent ( event ); } //--------------------------------------------------------------------------------------------------------------------- void VAbstractSpline::mousePressEvent(QGraphicsSceneMouseEvent *event) { // Special for not selectable item first need to call standard mousePressEvent then accept event QGraphicsPathItem::mousePressEvent(event); // Somehow clicking on notselectable object do not clean previous selections. if (not (flags() & ItemIsSelectable) && scene()) { scene()->clearSelection(); } event->accept();// Special for not selectable item first need to call standard mousePressEvent then accept event } //--------------------------------------------------------------------------------------------------------------------- /** * @brief mouseReleaseEvent handle mouse release events. * @param event mouse release event. */ void VAbstractSpline::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) { if (event->button() == Qt::LeftButton) { emit ChoosedTool(id, sceneType); } QGraphicsPathItem::mouseReleaseEvent(event); } //--------------------------------------------------------------------------------------------------------------------- void VAbstractSpline::ReadToolAttributes(const QDomElement &domElement) { Q_UNUSED(domElement) } //--------------------------------------------------------------------------------------------------------------------- void VAbstractSpline::SaveOptions(QDomElement &tag, QSharedPointer &obj) { VDrawTool::SaveOptions(tag, obj); const QSharedPointer curve = qSharedPointerCast(obj); doc->SetAttribute(tag, AttrColor, curve->GetColor()); doc->SetAttribute(tag, AttrPenStyle, curve->GetPenStyle()); } //--------------------------------------------------------------------------------------------------------------------- VSpline VAbstractSpline::CorrectedSpline(const VSpline &spline, const SplinePointPosition &position, const QPointF &pos) const { VSpline spl; if (position == SplinePointPosition::FirstPoint) { QLineF line(static_cast(spline.GetP1()), pos); if (QGuiApplication::keyboardModifiers() == Qt::ShiftModifier) { line.setAngle(VisLine::CorrectAngle(line.angle())); } qreal newAngle1 = line.angle(); QString newAngle1F = QString().setNum(newAngle1); qreal newLength1 = line.length(); QString newLength1F = QString().setNum(qApp->fromPixel(newLength1)); if (not qmu::QmuTokenParser::IsSingle(spline.GetStartAngleFormula())) { newAngle1 = spline.GetStartAngle(); newAngle1F = spline.GetStartAngleFormula(); } if (not qmu::QmuTokenParser::IsSingle(spline.GetC1LengthFormula())) { newLength1 = spline.GetC1Length(); newLength1F = spline.GetC1LengthFormula(); } spl = VSpline(spline.GetP1(), spline.GetP4(), newAngle1, newAngle1F, spline.GetEndAngle(), spline.GetEndAngleFormula(), newLength1, newLength1F, spline.GetC2Length(), spline.GetC2LengthFormula()); } else { QLineF line(static_cast(spline.GetP4()), pos); if (QGuiApplication::keyboardModifiers() == Qt::ShiftModifier) { line.setAngle(VisLine::CorrectAngle(line.angle())); } qreal newAngle2 = line.angle(); QString newAngle2F = QString().setNum(newAngle2); qreal newLength2 = line.length(); QString newLength2F = QString().setNum(qApp->fromPixel(newLength2)); if (not qmu::QmuTokenParser::IsSingle(spline.GetEndAngleFormula())) { newAngle2 = spline.GetEndAngle(); newAngle2F = spline.GetEndAngleFormula(); } if (not qmu::QmuTokenParser::IsSingle(spline.GetC2LengthFormula())) { newLength2 = spline.GetC2Length(); newLength2F = spline.GetC2LengthFormula(); } spl = VSpline(spline.GetP1(), spline.GetP4(), spline.GetStartAngle(), spline.GetStartAngleFormula(), newAngle2, newAngle2F, spline.GetC1Length(), spline.GetC1LengthFormula(), newLength2, newLength2F); } return spl; } //--------------------------------------------------------------------------------------------------------------------- void VAbstractSpline::InitDefShape() { const QSharedPointer curve = VAbstractTool::data.GeometricObject(id); this->setPen(QPen(CorrectColor(curve->GetColor()), qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor, LineStyleToPenStyle(curve->GetPenStyle()))); this->setPath(curve->GetPath()); } //--------------------------------------------------------------------------------------------------------------------- void VAbstractSpline::ShowHandles(bool show) { for (int i = 0; i < controlPoints.size(); ++i) { controlPoints.at(i)->setVisible(show); } } //--------------------------------------------------------------------------------------------------------------------- void VAbstractSpline::setEnabled(bool enabled) { QGraphicsPathItem::setEnabled(enabled); const QSharedPointer curve = VAbstractTool::data.GeometricObject(id); if (enabled) { setPen(QPen(QColor(curve->GetColor()), qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor, LineStyleToPenStyle(curve->GetPenStyle()))); } else { setPen(QPen(Qt::gray, qApp->toPixel(WidthHairLine(*VAbstractTool::data.GetPatternUnit()))/factor, LineStyleToPenStyle(curve->GetPenStyle()))); } } //--------------------------------------------------------------------------------------------------------------------- QString VAbstractSpline::GetLineColor() const { const QSharedPointer curve = VAbstractTool::data.GeometricObject(id); return curve->GetColor(); } //--------------------------------------------------------------------------------------------------------------------- void VAbstractSpline::SetLineColor(const QString &value) { QSharedPointer curve = VAbstractTool::data.GeometricObject(id); curve->SetColor(value); QSharedPointer obj = qSharedPointerCast(curve); SaveOption(obj); } //--------------------------------------------------------------------------------------------------------------------- QString VAbstractSpline::GetPenStyle() const { const QSharedPointer curve = VAbstractTool::data.GeometricObject(id); return curve->GetPenStyle(); } //--------------------------------------------------------------------------------------------------------------------- void VAbstractSpline::SetPenStyle(const QString &value) { QSharedPointer curve = VAbstractTool::data.GeometricObject(id); curve->SetPenStyle(value); QSharedPointer obj = qSharedPointerCast(curve); SaveOption(obj); } //--------------------------------------------------------------------------------------------------------------------- QString VAbstractSpline::name() const { return ObjectName(id); } //--------------------------------------------------------------------------------------------------------------------- void VAbstractSpline::GroupVisibility(quint32 object, bool visible) { Q_UNUSED(object) setVisible(visible); }