2013-12-18 12:13:32 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vtoolcutspline.h
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-12-18 12:13:32 +01:00
|
|
|
** @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"
|
2014-06-25 16:14:02 +02:00
|
|
|
#include "../../widgets/vsimplecurve.h"
|
2013-12-18 12:13:32 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @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-06-13 19:02:41 +02: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,
|
2014-06-12 09:22:29 +02:00
|
|
|
const Source &typeCreation, QGraphicsItem * parent = nullptr);
|
2013-12-18 12:13:32 +01:00
|
|
|
virtual void setDialog();
|
2014-02-25 15:02:09 +01:00
|
|
|
static void Create(DialogTool *dialog, VMainGraphicsScene *scene, VPattern *doc, VContainer *data);
|
2014-05-30 13:50:41 +02:00
|
|
|
static void Create(const quint32 _id, const QString &pointName, QString &formula, const quint32 &splineId,
|
|
|
|
const qreal &mx, const qreal &my, VMainGraphicsScene *scene, VPattern *doc, VContainer *data,
|
2014-06-12 09:22:29 +02:00
|
|
|
const Document &parse, const Source &typeCreation);
|
2013-12-18 12:13:32 +01:00
|
|
|
static const QString ToolType;
|
|
|
|
static const QString AttrSpline;
|
|
|
|
public slots:
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual void FullUpdateFromFile();
|
2014-02-25 15:40:24 +01:00
|
|
|
void SplineChoosed(quint32 id);
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual void ChangedActivDraw(const QString &newName);
|
|
|
|
virtual void ShowContextMenu(QGraphicsSceneContextMenuEvent *event);
|
2013-12-18 12:13:32 +01:00
|
|
|
protected:
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual void contextMenuEvent ( QGraphicsSceneContextMenuEvent * event );
|
|
|
|
virtual void AddToFile();
|
|
|
|
virtual void RefreshDataInFile();
|
|
|
|
void RefreshGeometry();
|
|
|
|
virtual void RemoveReferens();
|
|
|
|
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)
|
2014-06-13 19:02:41 +02:00
|
|
|
|
|
|
|
/** @brief formula keep formula of length. */
|
2014-02-06 14:57:23 +01:00
|
|
|
QString formula;
|
2014-06-13 19:02:41 +02:00
|
|
|
|
|
|
|
/** @brief splineId keep id of spline. */
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 splineId;
|
2014-06-13 19:02:41 +02:00
|
|
|
|
|
|
|
/** @brief firstSpline first spline after cutting. */
|
2014-06-25 16:14:02 +02:00
|
|
|
VSimpleCurve *firstSpline;
|
2014-06-13 19:02:41 +02:00
|
|
|
|
|
|
|
/** @brief secondSpline second spline after cutting. */
|
2014-06-25 16:14:02 +02:00
|
|
|
VSimpleCurve *secondSpline;
|
2014-06-13 19:02:41 +02:00
|
|
|
|
|
|
|
/** @brief spl1id id first spline after cutting. */
|
2014-02-25 15:40:24 +01:00
|
|
|
const quint32 spl1id;
|
2014-06-13 19:02:41 +02:00
|
|
|
|
|
|
|
/** @brief spl2id id second spline after cutting. */
|
2014-02-25 15:40:24 +01:00
|
|
|
const quint32 spl2id;
|
2014-06-13 19:02:41 +02:00
|
|
|
|
2014-06-25 16:14:02 +02:00
|
|
|
void RefreshSpline(VSimpleCurve *spline, quint32 splid, SimpleCurvePoint tr);
|
2013-12-18 12:13:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VTOOLCUTSPLINE_H
|