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 vtoolshoulderpoint.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-07-29 14:55:40 +02:00
|
|
|
#ifndef VTOOLSHOULDERPOINT_H
|
|
|
|
#define VTOOLSHOULDERPOINT_H
|
|
|
|
|
2013-07-31 13:34:39 +02:00
|
|
|
#include "vtoollinepoint.h"
|
2013-07-29 14:55:40 +02:00
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 10:21:45 +01:00
|
|
|
* @brief The VToolShoulderPoint class tool for creation point on shoulder. This tool for special situation, when you
|
|
|
|
* want find point along line, but have only length from another point (shoulder).
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
class VToolShoulderPoint : public VToolLinePoint
|
|
|
|
{
|
2014-07-12 18:25:25 +02:00
|
|
|
Q_OBJECT
|
2013-07-29 14:55:40 +02:00
|
|
|
public:
|
2014-06-13 19:02:41 +02:00
|
|
|
VToolShoulderPoint(VPattern *doc, VContainer *data, const quint32 &id, const QString &typeLine,
|
|
|
|
const QString &formula, const quint32 &p1Line, const quint32 &p2Line, const quint32 &pShoulder,
|
|
|
|
const Source &typeCreation, QGraphicsItem * parent = nullptr);
|
2013-10-16 11:17:34 +02:00
|
|
|
virtual void setDialog();
|
|
|
|
static QPointF FindPoint(const QPointF &p1Line, const QPointF &p2Line, const QPointF &pShoulder,
|
|
|
|
const qreal &length);
|
2014-06-13 19:02:41 +02:00
|
|
|
static VToolShoulderPoint* Create(DialogTool *dialog, VMainGraphicsScene *scene, VPattern *doc, VContainer *data);
|
|
|
|
static VToolShoulderPoint* Create(const quint32 _id, QString &formula, const quint32 &p1Line, const quint32 &p2Line,
|
|
|
|
const quint32 &pShoulder, const QString &typeLine, const QString &pointName,
|
|
|
|
const qreal &mx, const qreal &my, VMainGraphicsScene *scene, VPattern *doc,
|
|
|
|
VContainer *data, const Document &parse, const Source &typeCreation);
|
2013-10-29 14:45:07 +01:00
|
|
|
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::ShoulderPoint) };
|
2013-07-29 14:55:40 +02:00
|
|
|
public slots:
|
2013-10-16 11:17:34 +02:00
|
|
|
virtual void FullUpdateFromFile();
|
|
|
|
virtual void SetFactor(qreal factor);
|
2014-01-09 13:51:09 +01:00
|
|
|
virtual void ShowContextMenu(QGraphicsSceneContextMenuEvent *event);
|
2013-07-29 14:55:40 +02:00
|
|
|
protected:
|
2013-10-16 11:17:34 +02:00
|
|
|
virtual void contextMenuEvent ( QGraphicsSceneContextMenuEvent * event );
|
|
|
|
virtual void AddToFile();
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual void RefreshDataInFile();
|
2013-10-16 11:17:34 +02:00
|
|
|
virtual void RemoveReferens();
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual void SaveDialog(QDomElement &domElement);
|
2013-07-29 14:55:40 +02:00
|
|
|
private:
|
2014-06-13 19:02:41 +02:00
|
|
|
/** @brief p2Line id second line point. */
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 p2Line;
|
2014-06-13 19:02:41 +02:00
|
|
|
|
|
|
|
/** @brief pShoulder id shoulder line point. */
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 pShoulder;
|
2013-07-29 14:55:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VTOOLSHOULDERPOINT_H
|