2015-06-09 20:23:37 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
|
|
|
** @file vistoolarcwithlength.h
|
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
|
|
** @date 9 6, 2015
|
|
|
|
**
|
|
|
|
** @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) 2015 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 VISTOOLARCWITHLENGTH_H
|
|
|
|
#define VISTOOLARCWITHLENGTH_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <qcompilerdetection.h>
|
|
|
|
#include <QGraphicsItem>
|
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
#include <QtGlobal>
|
|
|
|
|
|
|
|
#include "../vmisc/def.h"
|
2015-06-09 20:23:37 +02:00
|
|
|
#include "vispath.h"
|
|
|
|
|
|
|
|
class VisToolArcWithLength : public VisPath
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-10-20 16:32:01 +02:00
|
|
|
explicit VisToolArcWithLength(const VContainer *data, QGraphicsItem *parent = 0);
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual ~VisToolArcWithLength() Q_DECL_OVERRIDE;
|
2015-06-09 20:23:37 +02:00
|
|
|
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual void RefreshGeometry() Q_DECL_OVERRIDE;
|
2015-06-09 20:23:37 +02:00
|
|
|
void setRadius(const QString &expression);
|
|
|
|
void setF1(const QString &expression);
|
|
|
|
void setLength(const QString &expression);
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual int type() const Q_DECL_OVERRIDE {return Type;}
|
2015-06-09 20:23:37 +02:00
|
|
|
enum { Type = UserType + static_cast<int>(Vis::ToolArcWithLength)};
|
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(VisToolArcWithLength)
|
|
|
|
QGraphicsEllipseItem *arcCenter;
|
|
|
|
qreal radius;
|
|
|
|
qreal f1;
|
|
|
|
qreal length;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VISTOOLARCWITHLENGTH_H
|