2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vabstracttool.h
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @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 Valentina project
|
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-18 21:16:19 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-18 21:16:19 +02:00
|
|
|
** 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/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-18 21:16:19 +02:00
|
|
|
|
2013-07-25 20:39:51 +02:00
|
|
|
#ifndef VABSTRACTTOOL_H
|
|
|
|
#define VABSTRACTTOOL_H
|
|
|
|
|
2013-08-13 18:48:36 +02:00
|
|
|
#include "vdatatool.h"
|
2014-08-04 15:37:36 +02:00
|
|
|
#include "../xml/vpattern.h"
|
2014-06-08 20:10:57 +02:00
|
|
|
|
2014-06-12 15:38:28 +02:00
|
|
|
class QDomElement;
|
2014-06-13 19:02:41 +02:00
|
|
|
class QLineF;
|
|
|
|
class QPointF;
|
|
|
|
class QGraphicsScene;
|
|
|
|
class QGraphicsView;
|
2014-06-16 09:52:55 +02:00
|
|
|
class QGraphicsItem;
|
2014-06-13 19:02:41 +02:00
|
|
|
class QRectF;
|
2014-09-03 15:52:16 +02:00
|
|
|
class Visualization;
|
2013-07-25 20:39:51 +02:00
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 13:54:29 +01:00
|
|
|
* @brief The VAbstractTool abstract class for all tools.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
class VAbstractTool: public VDataTool
|
|
|
|
{
|
2013-07-25 20:39:51 +02:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-02-26 10:22:05 +01:00
|
|
|
VAbstractTool(VPattern *doc, VContainer *data, quint32 id, QObject *parent = nullptr);
|
2014-09-03 15:52:16 +02:00
|
|
|
virtual ~VAbstractTool();
|
2014-01-15 10:20:46 +01:00
|
|
|
static void NewSceneRect(QGraphicsScene *sc, QGraphicsView *view);
|
2013-10-27 12:56:05 +01:00
|
|
|
static QPointF LineIntersectRect(QRectF rec, QLineF line);
|
2013-11-06 22:11:12 +01:00
|
|
|
static qint32 LineIntersectCircle(const QPointF ¢er, qreal radius, const QLineF &line, QPointF &p1,
|
|
|
|
QPointF &p2);
|
2014-01-29 10:18:26 +01:00
|
|
|
static QPointF ClosestPoint(const QLineF &line, const QPointF &point);
|
2013-11-06 22:11:12 +01:00
|
|
|
static QPointF addVector (const QPointF &p, const QPointF &p1, const QPointF &p2, qreal k);
|
2014-02-26 09:18:59 +01:00
|
|
|
quint32 getId() const;
|
2013-10-27 12:56:05 +01:00
|
|
|
static void LineCoefficients(const QLineF &line, qreal *a, qreal *b, qreal *c);
|
2013-10-29 14:45:07 +01:00
|
|
|
static const QString AttrType;
|
|
|
|
static const QString AttrMx;
|
|
|
|
static const QString AttrMy;
|
|
|
|
static const QString AttrName;
|
|
|
|
static const QString AttrX;
|
|
|
|
static const QString AttrY;
|
|
|
|
static const QString AttrTypeLine;
|
|
|
|
static const QString AttrLength;
|
|
|
|
static const QString AttrBasePoint;
|
|
|
|
static const QString AttrFirstPoint;
|
|
|
|
static const QString AttrSecondPoint;
|
|
|
|
static const QString AttrThirdPoint;
|
|
|
|
static const QString AttrCenter;
|
|
|
|
static const QString AttrRadius;
|
|
|
|
static const QString AttrAngle;
|
|
|
|
static const QString AttrAngle1;
|
|
|
|
static const QString AttrAngle2;
|
|
|
|
static const QString AttrP1Line;
|
|
|
|
static const QString AttrP2Line;
|
|
|
|
static const QString AttrP1Line1;
|
|
|
|
static const QString AttrP2Line1;
|
|
|
|
static const QString AttrP1Line2;
|
|
|
|
static const QString AttrP2Line2;
|
|
|
|
static const QString AttrPShoulder;
|
|
|
|
static const QString AttrPoint1;
|
|
|
|
static const QString AttrPoint4;
|
|
|
|
static const QString AttrKAsm1;
|
|
|
|
static const QString AttrKAsm2;
|
|
|
|
static const QString AttrKCurve;
|
|
|
|
static const QString AttrPathPoint;
|
|
|
|
static const QString AttrPSpline;
|
|
|
|
static const QString AttrAxisP1;
|
|
|
|
static const QString AttrAxisP2;
|
|
|
|
static const QString TypeLineNone;
|
|
|
|
static const QString TypeLineLine;
|
2014-01-29 13:47:43 +01:00
|
|
|
static const QString TypeLineDashLine;
|
|
|
|
static const QString TypeLineDotLine;
|
|
|
|
static const QString TypeLineDashDotLine;
|
|
|
|
static const QString TypeLineDashDotDotLine;
|
|
|
|
static const QStringList Styles();
|
2014-06-13 19:02:41 +02:00
|
|
|
static void AddRecord(const quint32 id, const Tool &toolType, VPattern *doc);
|
2014-07-16 19:08:24 +02:00
|
|
|
static Qt::PenStyle LineStyle(const QString &typeLine);
|
2014-07-25 13:22:25 +02:00
|
|
|
const VContainer *getData() const;
|
2014-08-28 13:05:58 +02:00
|
|
|
|
2014-08-28 13:23:28 +02:00
|
|
|
QString getLineType() const;
|
2014-08-30 21:58:31 +02:00
|
|
|
void setTypeLine(const QString &value);
|
2014-08-28 13:05:58 +02:00
|
|
|
QMap<QString, quint32> PointsList() const;
|
2014-08-30 21:58:31 +02:00
|
|
|
virtual QString getTagName() const =0;
|
2014-09-03 15:52:16 +02:00
|
|
|
virtual void ShowVisualization(bool show) =0;
|
2013-07-25 20:39:51 +02:00
|
|
|
public slots:
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 13:54:29 +01:00
|
|
|
* @brief FullUpdateFromFile update tool data form file.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-10-27 12:56:05 +01:00
|
|
|
virtual void FullUpdateFromFile()=0;
|
2013-07-25 20:39:51 +02:00
|
|
|
signals:
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 13:54:29 +01:00
|
|
|
* @brief toolhaveChange emit if tool create change that need save.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-10-27 12:56:05 +01:00
|
|
|
void toolhaveChange();
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 13:54:29 +01:00
|
|
|
* @brief ChoosedTool emit if object was clicked.
|
|
|
|
* @param id object id in container.
|
|
|
|
* @param type type of scene object.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-06-12 09:22:29 +02:00
|
|
|
void ChoosedTool(quint32 id, SceneObject type);
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 13:54:29 +01:00
|
|
|
* @brief FullUpdateTree emit if need reparse pattern file.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-08-04 15:37:36 +02:00
|
|
|
void LiteUpdateTree(const Document &parse);
|
2013-07-25 20:39:51 +02:00
|
|
|
protected:
|
2014-06-13 19:02:41 +02:00
|
|
|
/** @brief doc dom document container */
|
2014-02-25 15:02:09 +01:00
|
|
|
VPattern *doc;
|
2014-06-13 19:02:41 +02:00
|
|
|
|
|
|
|
/** @brief id object id. */
|
2014-02-25 15:40:24 +01:00
|
|
|
const quint32 id;
|
2014-06-13 19:02:41 +02:00
|
|
|
|
|
|
|
/** @brief baseColor base color for tool. */
|
2014-01-07 13:54:50 +01:00
|
|
|
Qt::GlobalColor baseColor;
|
2014-06-13 19:02:41 +02:00
|
|
|
|
|
|
|
/** @brief currentColor current tool color. */
|
2013-10-27 12:56:05 +01:00
|
|
|
Qt::GlobalColor currentColor;
|
2014-06-13 19:02:41 +02:00
|
|
|
|
|
|
|
/** @brief typeLine line type. */
|
2014-01-29 13:47:43 +01:00
|
|
|
QString typeLine;
|
2014-08-30 21:58:31 +02:00
|
|
|
|
2014-09-03 15:52:16 +02:00
|
|
|
Visualization *vis;
|
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 13:54:29 +01:00
|
|
|
* @brief AddToFile add tag with informations about tool into file.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-10-27 12:56:05 +01:00
|
|
|
virtual void AddToFile()=0;
|
2013-12-24 12:24:29 +01:00
|
|
|
/**
|
|
|
|
* @brief RefreshDataInFile refresh attributes in file. If attributes don't exist create them.
|
|
|
|
*/
|
|
|
|
virtual void RefreshDataInFile()=0;
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 13:54:29 +01:00
|
|
|
* @brief RemoveReferens decrement value of reference.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-10-27 12:56:05 +01:00
|
|
|
virtual void RemoveReferens(){}
|
2014-06-16 14:14:46 +02:00
|
|
|
virtual void DeleteTool(bool ask = true);
|
2014-06-26 12:41:59 +02:00
|
|
|
static int ConfirmDeletion();
|
2014-08-30 21:58:31 +02:00
|
|
|
void SaveOption(QSharedPointer<VGObject> &obj);
|
|
|
|
virtual void SaveOptions(QDomElement &tag, QSharedPointer<VGObject> &obj)=0;
|
2013-08-20 12:26:02 +02:00
|
|
|
private:
|
2013-09-26 20:50:52 +02:00
|
|
|
Q_DISABLE_COPY(VAbstractTool)
|
2013-07-25 20:39:51 +02:00
|
|
|
};
|
2014-02-26 09:18:59 +01:00
|
|
|
|
2014-06-13 19:02:41 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief getId return object id.
|
|
|
|
* @return id.
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
inline quint32 VAbstractTool::getId() const
|
|
|
|
{
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2014-06-13 19:02:41 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief getData return pointer to data container.
|
|
|
|
* @return container.
|
|
|
|
*/
|
2014-02-26 09:18:59 +01:00
|
|
|
inline const VContainer *VAbstractTool::getData() const
|
|
|
|
{
|
|
|
|
return &data;
|
|
|
|
}
|
2013-07-25 20:39:51 +02:00
|
|
|
#endif // VABSTRACTTOOL_H
|