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.
|
|
|
|
** 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 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,
|
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 &splinePathId,
|
|
|
|
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 AttrSplinePath;
|
|
|
|
public slots:
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual void FullUpdateFromFile();
|
2014-06-26 12:26:13 +02:00
|
|
|
virtual void CurveChoosed(quint32 id);
|
2014-02-06 14:57:23 +01:00
|
|
|
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();
|
|
|
|
virtual void SaveDialog(QDomElement &domElement);
|
2014-06-26 12:26:13 +02:00
|
|
|
virtual void RefreshCurve(VSimpleCurve *curve, quint32 curveId, SimpleCurvePoint tr);
|
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
|