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 vnodespline.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.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2013-11-15 13:41:26 +01:00
|
|
|
** <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-09-10 14:29:06 +02:00
|
|
|
#ifndef VNODESPLINE_H
|
|
|
|
#define VNODESPLINE_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <qcompilerdetection.h>
|
2013-09-10 14:29:06 +02:00
|
|
|
#include <QGraphicsPathItem>
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
|
|
#include "../ifc/xml/vabstractpattern.h"
|
2016-08-09 15:55:46 +02:00
|
|
|
#include "../vmisc/def.h"
|
2016-08-08 13:44:49 +02:00
|
|
|
#include "vabstractnode.h"
|
|
|
|
|
|
|
|
class VContainer;
|
2013-09-10 14:29:06 +02:00
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 11:59:41 +01:00
|
|
|
* @brief The VNodeSpline class spline detail node.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2016-02-10 17:45:49 +01:00
|
|
|
class VNodeSpline:public VAbstractNode
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2016-02-10 17:45:49 +01:00
|
|
|
static VNodeSpline *Create(VAbstractPattern *doc, VContainer *data, quint32 id,
|
2015-12-26 14:08:41 +01:00
|
|
|
quint32 idSpline, const Document &parse,
|
2016-06-30 17:32:08 +02:00
|
|
|
const Source &typeCreation, const QString &drawName = QString(),
|
|
|
|
const quint32 &idTool = 0);
|
2016-05-16 19:59:04 +02:00
|
|
|
|
2014-01-27 11:59:41 +01:00
|
|
|
static const QString ToolType;
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual QString getTagName() const Q_DECL_OVERRIDE;
|
2013-09-10 14:29:06 +02:00
|
|
|
public slots:
|
2016-02-10 17:45:49 +01:00
|
|
|
virtual void FullUpdateFromFile () Q_DECL_OVERRIDE {}
|
2016-03-31 16:01:41 +02:00
|
|
|
virtual void AllowHover(bool enabled) Q_DECL_OVERRIDE;
|
|
|
|
virtual void AllowSelecting(bool enabled) Q_DECL_OVERRIDE;
|
2013-09-10 14:29:06 +02:00
|
|
|
protected:
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual void AddToFile () Q_DECL_OVERRIDE;
|
|
|
|
virtual void RefreshDataInFile() Q_DECL_OVERRIDE;
|
2016-02-10 17:45:49 +01:00
|
|
|
virtual void ShowNode() Q_DECL_OVERRIDE {}
|
|
|
|
virtual void HideNode() Q_DECL_OVERRIDE {}
|
2013-09-10 14:29:06 +02:00
|
|
|
private:
|
2016-02-10 17:45:49 +01:00
|
|
|
Q_DISABLE_COPY(VNodeSpline)
|
2016-05-14 21:54:57 +02:00
|
|
|
|
|
|
|
VNodeSpline(VAbstractPattern *doc, VContainer *data, quint32 id, quint32 idSpline, const Source &typeCreation,
|
2016-06-30 17:32:08 +02:00
|
|
|
const QString &drawName = QString(), const quint32 &idTool = 0, QObject *qoParent = nullptr);
|
2013-09-10 14:29:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VNODESPLINE_H
|