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 vtoolarc.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.
|
|
|
|
** Copyright (C) 2013 Valentina project
|
|
|
|
** <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 VTOOLARC_H
|
|
|
|
#define VTOOLARC_H
|
|
|
|
|
2014-06-25 11:56:19 +02:00
|
|
|
#include "vabstractspline.h"
|
2013-09-10 14:29:06 +02:00
|
|
|
|
2014-09-01 16:34:45 +02:00
|
|
|
class VFormula;
|
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 18:10:04 +01:00
|
|
|
* @brief The VToolArc class tool for creation arc.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-06-25 11:56:19 +02:00
|
|
|
class VToolArc :public VAbstractSpline
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-06-13 19:02:41 +02:00
|
|
|
VToolArc(VPattern *doc, VContainer *data, quint32 id, const Source &typeCreation, QGraphicsItem * parent = nullptr);
|
|
|
|
virtual void setDialog();
|
|
|
|
static VToolArc* Create(DialogTool *dialog, VMainGraphicsScene *scene, VPattern *doc, VContainer *data);
|
|
|
|
static VToolArc* Create(const quint32 _id, const quint32 ¢er, QString &radius, QString &f1, QString &f2,
|
|
|
|
VMainGraphicsScene *scene, VPattern *doc, VContainer *data, const Document &parse,
|
|
|
|
const Source &typeCreation);
|
2013-10-29 14:45:07 +01:00
|
|
|
static const QString TagName;
|
|
|
|
static const QString ToolType;
|
2014-08-26 20:31:28 +02:00
|
|
|
virtual int type() const {return Type;}
|
|
|
|
enum { Type = UserType + static_cast<int>(Tool::Arc)};
|
2014-08-30 21:58:31 +02:00
|
|
|
virtual QString getTagName() const;
|
2014-09-01 16:34:45 +02:00
|
|
|
|
|
|
|
quint32 getCenter() const;
|
|
|
|
void setCenter(const quint32 &value);
|
|
|
|
|
|
|
|
VFormula getFormulaRadius() const;
|
|
|
|
void setFormulaRadius(const VFormula &value);
|
|
|
|
|
|
|
|
VFormula getFormulaF1() const;
|
|
|
|
void setFormulaF1(const VFormula &value);
|
|
|
|
|
|
|
|
VFormula getFormulaF2() const;
|
|
|
|
void setFormulaF2(const VFormula &value);
|
2013-09-10 14:29:06 +02:00
|
|
|
public slots:
|
2014-01-03 16:13:43 +01:00
|
|
|
virtual void FullUpdateFromFile();
|
2013-09-10 14:29:06 +02:00
|
|
|
protected:
|
2014-01-03 16:13:43 +01:00
|
|
|
virtual void contextMenuEvent ( QGraphicsSceneContextMenuEvent * event );
|
|
|
|
virtual void RemoveReferens();
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual void SaveDialog(QDomElement &domElement);
|
2014-08-30 21:58:31 +02:00
|
|
|
virtual void SaveOptions(QDomElement &tag, QSharedPointer<VGObject> &obj);
|
2014-02-06 14:57:23 +01:00
|
|
|
private:
|
2014-01-03 16:13:43 +01:00
|
|
|
void RefreshGeometry();
|
2013-09-10 14:29:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VTOOLARC_H
|