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 vtoolsplinepath.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-08-09 08:49:34 +02:00
|
|
|
#ifndef VTOOLSPLINEPATH_H
|
|
|
|
#define VTOOLSPLINEPATH_H
|
|
|
|
|
2014-03-04 17:50:54 +01:00
|
|
|
#include "vabstractspline.h"
|
2013-08-09 08:49:34 +02:00
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 11:16:20 +01:00
|
|
|
* @brief The VToolSplinePath class tool for creation spline path.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-03-04 17:50:54 +01:00
|
|
|
class VToolSplinePath:public VAbstractSpline
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-08-09 08:49:34 +02:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 11:16:20 +01:00
|
|
|
* @brief VToolSplinePath constructor.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
* @param id object id in container.
|
2014-01-24 15:25:45 +01:00
|
|
|
* @param typeCreation way we create this tool.
|
2014-01-27 11:16:20 +01:00
|
|
|
* @param parent parent object.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-03-11 12:43:24 +01:00
|
|
|
VToolSplinePath(VPattern *doc, VContainer *data, quint32 id, const Valentina::Sources &typeCreation,
|
2014-02-26 10:22:05 +01:00
|
|
|
QGraphicsItem * parent = nullptr);
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 15:25:45 +01:00
|
|
|
* @brief setDialog set dialog when user want change tool option.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-01-03 16:13:43 +01:00
|
|
|
virtual void setDialog();
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 11:16:20 +01:00
|
|
|
* @brief Create help create tool from GUI.
|
|
|
|
* @param dialog dialog.
|
2014-01-24 15:25:45 +01:00
|
|
|
* @param scene pointer to scene.
|
2014-01-27 11:16:20 +01:00
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-02-25 15:02:09 +01:00
|
|
|
static void Create(DialogTool *dialog, VMainGraphicsScene *scene, VPattern *doc, VContainer *data);
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 11:16:20 +01:00
|
|
|
* @brief Create help create tool.
|
2014-01-24 16:10:23 +01:00
|
|
|
* @param _id tool id, 0 if tool doesn't exist yet.
|
2014-01-27 11:16:20 +01:00
|
|
|
* @param path spline path.
|
2014-01-24 15:25:45 +01:00
|
|
|
* @param scene pointer to scene.
|
2014-01-27 11:16:20 +01:00
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
2014-01-24 17:10:53 +01:00
|
|
|
* @param parse parser file mode.
|
2014-01-24 15:25:45 +01:00
|
|
|
* @param typeCreation way we create this tool.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
static void Create(const quint32 _id, VSplinePath *path, VMainGraphicsScene *scene,
|
2014-02-25 15:02:09 +01:00
|
|
|
VPattern *doc, VContainer *data, const Document::Documents &parse,
|
2014-03-11 12:43:24 +01:00
|
|
|
const Valentina::Sources &typeCreation);
|
2013-10-29 14:45:07 +01:00
|
|
|
static const QString ToolType;
|
2013-08-09 08:49:34 +02:00
|
|
|
signals:
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 11:16:20 +01:00
|
|
|
* @brief RefreshLine refresh control line.
|
|
|
|
* @param indexSpline position spline in spline list.
|
2014-06-02 09:43:27 +02:00
|
|
|
* @param pos position point in spline.
|
2014-01-27 11:16:20 +01:00
|
|
|
* @param controlPoint new position control point.
|
|
|
|
* @param splinePoint new position spline point.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-01-03 16:13:43 +01:00
|
|
|
void RefreshLine(const qint32 &indexSpline, SplinePoint::Position pos,
|
|
|
|
const QPointF &controlPoint, const QPointF &splinePoint);
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 11:16:20 +01:00
|
|
|
* @brief setEnabledPoint disable control points.
|
|
|
|
* @param enable enable or diasable points.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-01-03 16:13:43 +01:00
|
|
|
void setEnabledPoint(bool enable);
|
2013-08-09 08:49:34 +02:00
|
|
|
public slots:
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 11:16:20 +01:00
|
|
|
* @brief ControlPointChangePosition handle change position control point.
|
|
|
|
* @param indexSpline position spline in spline list.
|
|
|
|
* @param position position point in spline.
|
|
|
|
* @param pos new position.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-01-03 16:13:43 +01:00
|
|
|
void ControlPointChangePosition(const qint32 &indexSpline, const SplinePoint::Position &position,
|
|
|
|
const QPointF &pos);
|
2013-08-09 08:49:34 +02:00
|
|
|
protected:
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 18:10:04 +01:00
|
|
|
* @brief contextMenuEvent handle context menu events.
|
2014-01-27 11:16:20 +01:00
|
|
|
* @param event context menu event.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-01-03 16:13:43 +01:00
|
|
|
virtual void contextMenuEvent ( QGraphicsSceneContextMenuEvent * event );
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 15:25:45 +01:00
|
|
|
* @brief AddToFile add tag with informations about tool into file.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-01-03 16:13:43 +01:00
|
|
|
virtual void AddToFile();
|
2013-12-24 12:24:29 +01:00
|
|
|
/**
|
|
|
|
* @brief RefreshDataInFile refresh attributes in file. If attributes don't exist create them.
|
|
|
|
*/
|
2014-01-03 16:13:43 +01:00
|
|
|
virtual void RefreshDataInFile();
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 18:10:04 +01:00
|
|
|
* @brief mouseReleaseEvent handle mouse release events.
|
2014-01-27 11:16:20 +01:00
|
|
|
* @param event mouse release event.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-01-03 16:13:43 +01:00
|
|
|
virtual void mouseReleaseEvent ( QGraphicsSceneMouseEvent * event );
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 15:25:45 +01:00
|
|
|
* @brief RemoveReferens decrement value of reference.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-01-03 16:13:43 +01:00
|
|
|
virtual void RemoveReferens();
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-02-06 14:57:23 +01:00
|
|
|
* @brief SaveDialog save options into file after change in dialog.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual void SaveDialog(QDomElement &domElement);
|
|
|
|
private:
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 18:10:04 +01:00
|
|
|
* @brief RefreshGeometry refresh item on scene.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-01-03 16:13:43 +01:00
|
|
|
void RefreshGeometry();
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 11:16:20 +01:00
|
|
|
* @brief AddPathPoint write path point to pattern file.
|
|
|
|
* @param domElement dom element.
|
|
|
|
* @param splPoint spline path point.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-01-03 16:13:43 +01:00
|
|
|
void AddPathPoint(QDomElement &domElement, const VSplinePoint &splPoint);
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 11:16:20 +01:00
|
|
|
* @brief UpdatePathPoint update spline path in pattern file.
|
|
|
|
* @param node tag in file.
|
|
|
|
* @param path spline path.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-01-03 16:13:43 +01:00
|
|
|
void UpdatePathPoint(QDomNode& node, VSplinePath &path);
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 11:16:20 +01:00
|
|
|
* @brief CorectControlPoints update position points control points in file.
|
|
|
|
* @param spl spline what was changed.
|
|
|
|
* @param splPath spline path.
|
|
|
|
* @param indexSpline index spline in spline path.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-01-03 16:13:43 +01:00
|
|
|
void CorectControlPoints(const VSpline &spl, VSplinePath &splPath, const qint32 &indexSpline);
|
2014-03-04 13:55:57 +01:00
|
|
|
void RefreshSplinePath(VSplinePath &splPath);
|
2013-08-09 08:49:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VTOOLSPLINEPATH_H
|