2014-08-15 12:48:11 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file visualization.cpp
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 15 8, 2014
|
|
|
|
**
|
|
|
|
** @brief
|
|
|
|
** @copyright
|
2017-10-05 11:20:01 +02:00
|
|
|
** This source code is part of the Valentina project, a pattern making
|
2014-08-15 12:48:11 +02:00
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2014-08-15 12:48:11 +02:00
|
|
|
** <https://bitbucket.org/dismine/valentina> 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 <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#include "visualization.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
|
|
|
|
#include <qnumeric.h>
|
|
|
|
#include <QBrush>
|
|
|
|
#include <QColor>
|
|
|
|
#include <QGraphicsEllipseItem>
|
|
|
|
#include <QGraphicsItem>
|
|
|
|
#include <QGraphicsLineItem>
|
|
|
|
#include <QLineF>
|
|
|
|
#include <QMessageLogger>
|
|
|
|
#include <QPen>
|
|
|
|
#include <QPointF>
|
|
|
|
#include <QRectF>
|
|
|
|
#include <QScopedPointer>
|
|
|
|
#include <QString>
|
|
|
|
#include <Qt>
|
|
|
|
#include <QtDebug>
|
|
|
|
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../vpatterndb/calculator.h"
|
|
|
|
#include "../vpatterndb/vtranslatevars.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../qmuparser/qmuparsererror.h"
|
|
|
|
#include "../tools/drawTools/vdrawtool.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../ifc/ifcdef.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "../vmisc/vcommonsettings.h"
|
|
|
|
#include "../vpatterndb/vcontainer.h"
|
|
|
|
#include "../vwidgets/vmaingraphicsscene.h"
|
2017-05-16 12:07:53 +02:00
|
|
|
#include "../vwidgets/vcurvepathitem.h"
|
2017-06-23 11:25:02 +02:00
|
|
|
#include "../vwidgets/scalesceneitems.h"
|
2014-08-15 15:54:24 +02:00
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
template <class K, class V> class QHash;
|
2014-08-15 12:48:11 +02:00
|
|
|
|
2014-11-24 14:03:34 +01:00
|
|
|
Q_LOGGING_CATEGORY(vVis, "v.visualization")
|
|
|
|
|
2014-08-15 12:48:11 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
Visualization::Visualization(const VContainer *data)
|
2016-02-12 19:10:01 +01:00
|
|
|
:QObject(),
|
|
|
|
data(data),
|
|
|
|
scenePos(QPointF()),
|
|
|
|
mainColor(Qt::red),
|
|
|
|
supportColor(Qt::magenta),
|
|
|
|
lineStyle(Qt::SolidLine),
|
|
|
|
object1Id(NULL_ID),
|
|
|
|
toolTip(QString()),
|
|
|
|
mode(Mode::Creation)
|
2014-08-15 12:48:11 +02:00
|
|
|
{}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2016-01-24 17:15:08 +01:00
|
|
|
void Visualization::setObject1Id(const quint32 &value)
|
2014-08-15 12:48:11 +02:00
|
|
|
{
|
2016-01-24 17:15:08 +01:00
|
|
|
object1Id = value;
|
2014-08-15 12:48:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void Visualization::setLineStyle(const Qt::PenStyle &value)
|
|
|
|
{
|
|
|
|
lineStyle = value;
|
|
|
|
InitPen();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-04-15 14:44:57 +02:00
|
|
|
// cppcheck-suppress unusedFunction
|
2014-08-15 12:48:11 +02:00
|
|
|
void Visualization::setScenePos(const QPointF &value)
|
|
|
|
{
|
|
|
|
scenePos = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void Visualization::VisualMode(const quint32 &pointId)
|
|
|
|
{
|
2015-05-12 17:15:10 +02:00
|
|
|
VMainGraphicsScene *scene = qobject_cast<VMainGraphicsScene *>(qApp->getCurrentScene());
|
2016-12-20 19:57:20 +01:00
|
|
|
SCASSERT(scene != nullptr)
|
2014-08-15 12:48:11 +02:00
|
|
|
|
2016-01-24 17:15:08 +01:00
|
|
|
this->object1Id = pointId;
|
2014-08-15 12:48:11 +02:00
|
|
|
this->scenePos = scene->getScenePos();
|
|
|
|
RefreshGeometry();
|
|
|
|
|
|
|
|
AddOnScene();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-04-15 14:44:57 +02:00
|
|
|
// cppcheck-suppress unusedFunction
|
2014-08-15 12:48:11 +02:00
|
|
|
void Visualization::setMainColor(const QColor &value)
|
|
|
|
{
|
|
|
|
mainColor = value;
|
|
|
|
InitPen();
|
|
|
|
}
|
|
|
|
|
2017-02-06 12:38:47 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
const VContainer *Visualization::GetData() const
|
|
|
|
{
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void Visualization::SetData(const VContainer *data)
|
|
|
|
{
|
|
|
|
this->data = data;
|
|
|
|
}
|
|
|
|
|
2014-08-15 12:48:11 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void Visualization::MousePos(const QPointF &scenePos)
|
|
|
|
{
|
|
|
|
this->scenePos = scenePos;
|
|
|
|
RefreshGeometry();
|
|
|
|
if (toolTip.isEmpty() == false)
|
|
|
|
{
|
|
|
|
emit ToolTip(toolTip);
|
|
|
|
}
|
|
|
|
}
|
2014-08-15 15:54:24 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-06-23 11:25:02 +02:00
|
|
|
VScaledEllipse *Visualization::InitPoint(const QColor &color, QGraphicsItem *parent, qreal z) const
|
2014-08-15 15:54:24 +02:00
|
|
|
{
|
2017-06-16 13:53:08 +02:00
|
|
|
return InitPointItem(color, parent, z);
|
2014-08-15 15:54:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-08-04 19:29:43 +02:00
|
|
|
qreal Visualization::FindLength(const QString &expression,
|
|
|
|
const QHash<QString, QSharedPointer<VInternalVariable> > *vars)
|
2014-08-15 15:54:24 +02:00
|
|
|
{
|
2016-02-25 20:23:16 +01:00
|
|
|
return qApp->toPixel(FindVal(expression, vars));
|
2014-08-15 15:54:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-08-04 19:29:43 +02:00
|
|
|
qreal Visualization::FindVal(const QString &expression,
|
|
|
|
const QHash<QString, QSharedPointer<VInternalVariable> > *vars)
|
2014-08-15 15:54:24 +02:00
|
|
|
{
|
|
|
|
qreal val = 0;
|
|
|
|
if (expression.isEmpty())
|
|
|
|
{
|
|
|
|
val = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// Replace line return with spaces for calc if exist
|
|
|
|
QString formula = expression;
|
|
|
|
formula.replace("\n", " ");
|
2015-06-18 10:49:25 +02:00
|
|
|
formula = qApp->TrVars()->FormulaFromUser(formula, qApp->Settings()->GetOsSeparator());
|
2016-05-24 14:25:58 +02:00
|
|
|
QScopedPointer<Calculator> cal(new Calculator());
|
2016-02-25 20:23:16 +01:00
|
|
|
val = cal->EvalFormula(vars, formula);
|
2016-05-24 14:06:35 +02:00
|
|
|
|
|
|
|
if (qIsInf(val) || qIsNaN(val))
|
|
|
|
{
|
|
|
|
val = 0;
|
|
|
|
}
|
2014-08-15 15:54:24 +02:00
|
|
|
}
|
|
|
|
catch (qmu::QmuParserError &e)
|
|
|
|
{
|
|
|
|
val = 0;
|
|
|
|
qDebug() << "\nMath parser error:\n"
|
|
|
|
<< "--------------------------------------\n"
|
|
|
|
<< "Message: " << e.GetMsg() << "\n"
|
|
|
|
<< "Expression: " << e.GetExpr() << "\n"
|
|
|
|
<< "--------------------------------------";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-06-23 11:25:02 +02:00
|
|
|
void Visualization::DrawPoint(VScaledEllipse *point, const QPointF &pos, const QColor &color, Qt::PenStyle style)
|
2014-08-15 15:54:24 +02:00
|
|
|
{
|
2016-12-20 19:57:20 +01:00
|
|
|
SCASSERT (point != nullptr)
|
2014-08-15 15:54:24 +02:00
|
|
|
|
|
|
|
point->setPos(pos);
|
2017-06-16 13:53:08 +02:00
|
|
|
|
|
|
|
QPen visPen = point->pen();
|
|
|
|
visPen.setColor(color);
|
|
|
|
visPen.setStyle(style);
|
|
|
|
|
|
|
|
point->setPen(visPen);
|
2014-08-15 15:54:24 +02:00
|
|
|
point->setVisible(true);
|
|
|
|
}
|
2014-08-18 16:42:53 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-06-23 11:25:02 +02:00
|
|
|
void Visualization::DrawLine(VScaledLine *lineItem, const QLineF &line, const QColor &color, Qt::PenStyle style)
|
2014-08-18 16:42:53 +02:00
|
|
|
{
|
2016-12-20 19:57:20 +01:00
|
|
|
SCASSERT (lineItem != nullptr)
|
2014-08-18 16:42:53 +02:00
|
|
|
|
2017-06-16 13:53:08 +02:00
|
|
|
QPen visPen = lineItem->pen();
|
|
|
|
visPen.setColor(color);
|
|
|
|
visPen.setStyle(style);
|
|
|
|
|
|
|
|
lineItem->setPen(visPen);
|
2014-08-18 16:42:53 +02:00
|
|
|
lineItem->setLine(line);
|
2014-12-24 14:13:13 +01:00
|
|
|
lineItem->setVisible(true);
|
2014-08-18 16:42:53 +02:00
|
|
|
}
|
2014-10-23 10:38:57 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-05-16 12:07:53 +02:00
|
|
|
void Visualization::DrawPath(VCurvePathItem *pathItem, const QPainterPath &path, const QColor &color,
|
2014-10-23 10:38:57 +02:00
|
|
|
Qt::PenStyle style, Qt::PenCapStyle cap)
|
2017-05-16 12:07:53 +02:00
|
|
|
{
|
2017-06-23 13:18:31 +02:00
|
|
|
DrawPath(pathItem, path, QVector<DirectionArrow>(), color, style, cap);
|
2017-05-16 12:07:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-06-23 13:18:31 +02:00
|
|
|
void Visualization::DrawPath(VCurvePathItem *pathItem, const QPainterPath &path,
|
|
|
|
const QVector<DirectionArrow> &directionArrows, const QColor &color, Qt::PenStyle style,
|
|
|
|
Qt::PenCapStyle cap)
|
2014-10-23 10:38:57 +02:00
|
|
|
{
|
2016-12-20 19:57:20 +01:00
|
|
|
SCASSERT (pathItem != nullptr)
|
2014-10-23 10:38:57 +02:00
|
|
|
|
2017-06-16 13:53:08 +02:00
|
|
|
QPen visPen = pathItem->pen();
|
|
|
|
visPen.setColor(color);
|
|
|
|
visPen.setStyle(style);
|
|
|
|
visPen.setCapStyle(cap);
|
|
|
|
|
|
|
|
pathItem->setPen(visPen);
|
2014-10-23 10:38:57 +02:00
|
|
|
pathItem->setPath(path);
|
2017-06-23 13:18:31 +02:00
|
|
|
pathItem->SetDirectionArrows(directionArrows);
|
2014-12-24 14:13:13 +01:00
|
|
|
pathItem->setVisible(true);
|
2014-10-23 10:38:57 +02:00
|
|
|
}
|
2016-02-12 19:10:01 +01:00
|
|
|
|
2016-11-05 09:56:44 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-06-23 11:25:02 +02:00
|
|
|
VScaledEllipse *Visualization::GetPointItem(QVector<VScaledEllipse *> &points, quint32 i,
|
|
|
|
const QColor &color, QGraphicsItem *parent)
|
2016-11-05 09:56:44 +01:00
|
|
|
{
|
|
|
|
if (not points.isEmpty() && static_cast<quint32>(points.size() - 1) >= i)
|
|
|
|
{
|
|
|
|
return points.at(static_cast<int>(i));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-06-16 13:53:08 +02:00
|
|
|
auto point = InitPointItem(color, parent);
|
2016-11-05 09:56:44 +01:00
|
|
|
points.append(point);
|
|
|
|
return point;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2017-06-23 11:25:02 +02:00
|
|
|
VScaledEllipse *Visualization::InitPointItem(const QColor &color, QGraphicsItem *parent, qreal z)
|
2016-11-05 09:56:44 +01:00
|
|
|
{
|
2017-06-23 11:25:02 +02:00
|
|
|
VScaledEllipse *point = new VScaledEllipse(parent);
|
2016-11-05 09:56:44 +01:00
|
|
|
point->setZValue(1);
|
|
|
|
point->setBrush(QBrush(Qt::NoBrush));
|
2017-06-16 13:53:08 +02:00
|
|
|
|
|
|
|
QPen visPen = point->pen();
|
|
|
|
visPen.setColor(color);
|
|
|
|
|
|
|
|
point->setPen(visPen);
|
2017-10-19 14:56:57 +02:00
|
|
|
point->setRect(PointRect(ScaledRadius(SceneScale(qApp->getCurrentScene()))));
|
2016-11-05 09:56:44 +01:00
|
|
|
point->setPos(QPointF());
|
|
|
|
point->setFlags(QGraphicsItem::ItemStacksBehindParent);
|
|
|
|
point->setZValue(z);
|
|
|
|
point->setVisible(false);
|
|
|
|
return point;
|
|
|
|
}
|
2016-02-12 19:10:01 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
Mode Visualization::GetMode() const
|
|
|
|
{
|
|
|
|
return mode;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void Visualization::SetMode(const Mode &value)
|
|
|
|
{
|
|
|
|
mode = value;
|
|
|
|
}
|