2013-12-18 12:13:32 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vtoolcutspline.h
|
|
|
|
** @author Roman Telezhinsky <dismine@gmail.com>
|
|
|
|
** @date 15 12, 2013
|
|
|
|
**
|
|
|
|
** @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.
|
|
|
|
**
|
|
|
|
** 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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef VTOOLCUTSPLINE_H
|
|
|
|
#define VTOOLCUTSPLINE_H
|
|
|
|
|
|
|
|
#include "vtoolpoint.h"
|
|
|
|
#include "../../widgets/vsimplespline.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The VToolCutSpline class for tool CutSpline. This tool find point on spline and cut spline on two.
|
|
|
|
*/
|
|
|
|
class VToolCutSpline : public VToolPoint
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
/**
|
2014-01-24 19:04:45 +01:00
|
|
|
* @brief VToolCutSpline constructor.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
* @param id object id in container.
|
|
|
|
* @param formula string with formula length first spline.
|
|
|
|
* @param splineId id spline in data container.
|
2014-01-24 15:25:45 +01:00
|
|
|
* @param typeCreation way we create this tool.
|
2014-01-24 19:04:45 +01:00
|
|
|
* @param parent parent object.
|
2013-12-18 12:13:32 +01:00
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
VToolCutSpline(VPattern *doc, VContainer *data, const quint32 &id, const QString &formula,
|
|
|
|
const quint32 &splineId, const quint32 &spl1id, const quint32 &spl2id,
|
2013-12-18 12:13:32 +01:00
|
|
|
const Tool::Sources &typeCreation, QGraphicsItem * parent = 0);
|
|
|
|
/**
|
2014-01-24 15:25:45 +01:00
|
|
|
* @brief setDialog set dialog when user want change tool option.
|
2013-12-18 12:13:32 +01:00
|
|
|
*/
|
|
|
|
virtual void setDialog();
|
|
|
|
/**
|
2014-01-24 19:04:45 +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-24 19:04:45 +01:00
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
2013-12-18 12:13:32 +01:00
|
|
|
*/
|
2014-02-25 15:02:09 +01:00
|
|
|
static void Create(DialogTool *dialog, VMainGraphicsScene *scene, VPattern *doc, VContainer *data);
|
2013-12-18 12:13:32 +01:00
|
|
|
/**
|
2014-01-24 19:04:45 +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-24 18:10:04 +01:00
|
|
|
* @param pointName point name.
|
2014-01-24 19:04:45 +01:00
|
|
|
* @param formula string with formula length first spline.
|
|
|
|
* @param splineId id spline in data container.
|
2014-01-24 17:10:53 +01:00
|
|
|
* @param mx label bias x axis.
|
|
|
|
* @param my label bias y axis.
|
2014-01-24 15:25:45 +01:00
|
|
|
* @param scene pointer to scene.
|
2014-01-24 19:04:45 +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-12-18 12:13:32 +01:00
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
static void Create(const quint32 _id, const QString &pointName,
|
|
|
|
const QString &formula, const quint32 &splineId, const qreal &mx, const qreal &my,
|
2014-02-25 15:02:09 +01:00
|
|
|
VMainGraphicsScene *scene, VPattern *doc, VContainer *data,
|
2013-12-18 12:13:32 +01:00
|
|
|
const Document::Documents &parse, const Tool::Sources &typeCreation);
|
|
|
|
static const QString ToolType;
|
|
|
|
static const QString AttrSpline;
|
|
|
|
public slots:
|
|
|
|
/**
|
2014-01-24 13:54:29 +01:00
|
|
|
* @brief FullUpdateFromFile update tool data form file.
|
2013-12-18 12:13:32 +01:00
|
|
|
*/
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual void FullUpdateFromFile();
|
2013-12-18 12:13:32 +01:00
|
|
|
/**
|
2014-01-24 19:04:45 +01:00
|
|
|
* @brief SplineChoosed send signal about selection from spline.
|
|
|
|
* @param id object id in container.
|
2013-12-18 12:13:32 +01:00
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
void SplineChoosed(quint32 id);
|
2013-12-18 12:13:32 +01:00
|
|
|
/**
|
2014-01-24 16:56:41 +01:00
|
|
|
* @brief ChangedActivDraw disable or enable context menu after change active pattern peace.
|
2014-01-24 18:10:04 +01:00
|
|
|
* @param newName new name active pattern peace.
|
2013-12-18 12:13:32 +01:00
|
|
|
*/
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual void ChangedActivDraw(const QString &newName);
|
2014-01-24 19:04:45 +01:00
|
|
|
/**
|
|
|
|
* @brief ShowContextMenu show context menu.
|
|
|
|
* @param event context menu event.
|
|
|
|
*/
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual void ShowContextMenu(QGraphicsSceneContextMenuEvent *event);
|
2013-12-18 12:13:32 +01:00
|
|
|
protected:
|
|
|
|
/**
|
2014-01-24 18:10:04 +01:00
|
|
|
* @brief contextMenuEvent handle context menu events.
|
2014-01-24 19:04:45 +01:00
|
|
|
* @param event context menu event.
|
2013-12-18 12:13:32 +01:00
|
|
|
*/
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual void contextMenuEvent ( QGraphicsSceneContextMenuEvent * event );
|
2013-12-18 12:13:32 +01:00
|
|
|
/**
|
2014-01-24 15:25:45 +01:00
|
|
|
* @brief AddToFile add tag with informations about tool into file.
|
2013-12-18 12:13:32 +01:00
|
|
|
*/
|
2014-02-06 14:57:23 +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-02-06 14:57:23 +01:00
|
|
|
virtual void RefreshDataInFile();
|
2013-12-24 12:24:29 +01:00
|
|
|
/**
|
2014-01-24 18:10:04 +01:00
|
|
|
* @brief RefreshGeometry refresh item on scene.
|
2013-12-24 12:24:29 +01:00
|
|
|
*/
|
2014-02-06 14:57:23 +01:00
|
|
|
void RefreshGeometry();
|
2014-01-24 19:04:45 +01:00
|
|
|
/**
|
|
|
|
* @brief RemoveReferens decrement referens value for used objects.
|
|
|
|
*/
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual void RemoveReferens();
|
|
|
|
/**
|
|
|
|
* @brief SaveDialog save options into file after change in dialog.
|
|
|
|
*/
|
|
|
|
virtual void SaveDialog(QDomElement &domElement);
|
2013-12-18 12:13:32 +01:00
|
|
|
private:
|
2013-12-21 12:36:51 +01:00
|
|
|
Q_DISABLE_COPY(VToolCutSpline)
|
2013-12-18 12:13:32 +01:00
|
|
|
/**
|
2014-01-24 19:04:45 +01:00
|
|
|
* @brief formula keep formula of length.
|
2013-12-18 12:13:32 +01:00
|
|
|
*/
|
2014-02-06 14:57:23 +01:00
|
|
|
QString formula;
|
2013-12-18 12:13:32 +01:00
|
|
|
/**
|
2014-01-24 19:04:45 +01:00
|
|
|
* @brief splineId keep id of spline.
|
2013-12-18 12:13:32 +01:00
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 splineId;
|
2013-12-18 12:13:32 +01:00
|
|
|
/**
|
2014-01-24 19:04:45 +01:00
|
|
|
* @brief firstSpline first spline after cutting.
|
2013-12-18 12:13:32 +01:00
|
|
|
*/
|
|
|
|
VSimpleSpline *firstSpline;
|
|
|
|
/**
|
2014-01-24 19:04:45 +01:00
|
|
|
* @brief secondSpline second spline after cutting.
|
2013-12-18 12:13:32 +01:00
|
|
|
*/
|
|
|
|
VSimpleSpline *secondSpline;
|
2014-01-24 19:04:45 +01:00
|
|
|
/**
|
|
|
|
* @brief spl1id id first spline after cutting.
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
const quint32 spl1id;
|
2014-01-24 19:04:45 +01:00
|
|
|
/**
|
|
|
|
* @brief spl2id id second spline after cutting.
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
const quint32 spl2id;
|
2014-01-24 19:04:45 +01:00
|
|
|
/**
|
|
|
|
* @brief RefreshSpline refresh spline on scene.
|
|
|
|
* @param spline spline.
|
|
|
|
* @param splid spline id.
|
|
|
|
* @param tr spline type.
|
|
|
|
*/
|
2014-02-25 15:40:24 +01:00
|
|
|
void RefreshSpline(VSimpleSpline *spline, quint32 splid, SimpleSpline::Translation tr);
|
2013-12-18 12:13:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VTOOLCUTSPLINE_H
|