2013-12-18 12:13:32 +01:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vtoolcutsplinepath.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.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2013-12-18 12:13:32 +01: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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
#ifndef VTOOLCUTSPLINEPATH_H
|
|
|
|
#define VTOOLCUTSPLINEPATH_H
|
|
|
|
|
2014-06-26 12:26:13 +02:00
|
|
|
#include "vtoolcut.h"
|
2013-12-18 12:13:32 +01:00
|
|
|
|
2013-12-20 14:35:14 +01:00
|
|
|
/**
|
2014-01-24 19:13:18 +01:00
|
|
|
* @brief The VToolCutSplinePath class for tool CutSplinePath. This tool find point on splinePath and cut splinePath on
|
|
|
|
* two.
|
2013-12-20 14:35:14 +01:00
|
|
|
*/
|
2014-06-26 12:26:13 +02:00
|
|
|
class VToolCutSplinePath : public VToolCut
|
2013-12-18 12:13:32 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-06-13 19:02:41 +02:00
|
|
|
|
2014-02-25 15:40:24 +01:00
|
|
|
VToolCutSplinePath(VPattern *doc, VContainer *data, const quint32 &id, const QString &formula,
|
|
|
|
const quint32 &splinePathId, const quint32 &splPath1id, const quint32 &splPath2id,
|
2015-02-08 11:23:26 +01:00
|
|
|
const QString &color, const Source &typeCreation, QGraphicsItem * parent = nullptr);
|
2013-12-18 12:13:32 +01:00
|
|
|
virtual void setDialog();
|
2014-08-30 21:58:31 +02:00
|
|
|
static VToolCutSplinePath *Create(DialogTool *dialog, VMainGraphicsScene *scene, VPattern *doc, VContainer *data);
|
|
|
|
static VToolCutSplinePath *Create(const quint32 _id, const QString &pointName, QString &formula,
|
|
|
|
const quint32 &splinePathId, const qreal &mx, const qreal &my,
|
2015-02-08 11:23:26 +01:00
|
|
|
const QString &color, VMainGraphicsScene *scene, VPattern *doc, VContainer *data,
|
2014-08-30 21:58:31 +02:00
|
|
|
const Document &parse, const Source &typeCreation);
|
2013-12-18 12:13:32 +01:00
|
|
|
static const QString ToolType;
|
|
|
|
static const QString AttrSplinePath;
|
2014-08-26 20:31:28 +02:00
|
|
|
virtual int type() const {return Type;}
|
|
|
|
enum { Type = UserType + static_cast<int>(Tool::CutSplinePath)};
|
2014-09-03 15:52:16 +02:00
|
|
|
virtual void ShowVisualization(bool show);
|
2013-12-18 12:13:32 +01:00
|
|
|
public slots:
|
2014-06-26 12:26:13 +02:00
|
|
|
virtual void CurveChoosed(quint32 id);
|
2013-12-18 12:13:32 +01:00
|
|
|
protected:
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual void contextMenuEvent ( QGraphicsSceneContextMenuEvent * event );
|
|
|
|
virtual void SaveDialog(QDomElement &domElement);
|
2014-08-17 16:22:30 +02:00
|
|
|
virtual void RefreshCurve(VSimpleCurve *curve, quint32 curveId, SimpleCurvePoint curvePosition,
|
|
|
|
PathDirection direction = PathDirection::Hide);
|
2014-08-30 21:58:31 +02:00
|
|
|
virtual void SaveOptions(QDomElement &tag, QSharedPointer<VGObject> &obj);
|
2015-02-06 18:43:31 +01:00
|
|
|
virtual void ReadToolAttributes(const QDomElement &domElement);
|
2015-05-23 13:40:43 +02:00
|
|
|
virtual void SetVisualization();
|
2013-12-18 12:13:32 +01:00
|
|
|
private:
|
2013-12-21 12:36:51 +01:00
|
|
|
Q_DISABLE_COPY(VToolCutSplinePath)
|
2013-12-18 12:13:32 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VTOOLCUTSPLINEPATH_H
|