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 vtoolpointofcontact.h
|
2013-11-15 13:41:26 +01:00
|
|
|
** @author Roman Telezhinsky <dismine@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-08-21 10:03:53 +02:00
|
|
|
#ifndef VTOOLPOINTOFCONTACT_H
|
|
|
|
#define VTOOLPOINTOFCONTACT_H
|
|
|
|
|
|
|
|
#include "vtoolpoint.h"
|
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 10:07:01 +01:00
|
|
|
* @brief The VToolPointOfContact class tool for creation point intersection line and arc.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
class VToolPointOfContact : public VToolPoint
|
|
|
|
{
|
2013-08-21 10:03:53 +02:00
|
|
|
public:
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 10:07:01 +01:00
|
|
|
* @brief VToolPointOfContact constructor.
|
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
|
|
|
* @param id object id in container.
|
|
|
|
* @param radius string with formula radius arc.
|
|
|
|
* @param center id center arc point.
|
|
|
|
* @param firstPointId id first line point.
|
|
|
|
* @param secondPointId id second line point.
|
2014-01-24 15:25:45 +01:00
|
|
|
* @param typeCreation way we create this tool.
|
2014-01-27 10:07:01 +01:00
|
|
|
* @param parent parent object.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-10-16 11:17:34 +02:00
|
|
|
VToolPointOfContact(VDomDocument *doc, VContainer *data, const qint64 &id,
|
2014-01-27 16:48:11 +01:00
|
|
|
const QString &arcRadius, const qint64 ¢er,
|
2013-10-16 11:17:34 +02:00
|
|
|
const qint64 &firstPointId, const qint64 &secondPointId,
|
2013-11-06 22:11:12 +01:00
|
|
|
const Tool::Sources &typeCreation, QGraphicsItem * parent = 0);
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 15:25:45 +01:00
|
|
|
* @brief setDialog set dialog when user want change tool option.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-10-16 11:17:34 +02:00
|
|
|
virtual void setDialog();
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 10:07:01 +01:00
|
|
|
* @brief FindPoint return point intersection line and arc.
|
|
|
|
* @param radius string with formula radius arc.
|
|
|
|
* @param center center arc point.
|
|
|
|
* @param firstPoint first line point.
|
|
|
|
* @param secondPoint second line point.
|
|
|
|
* @return point intersection.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-01-27 16:48:11 +01:00
|
|
|
static QPointF FindPoint(const qreal &arcRadius, const QPointF ¢er, const QPointF &firstPoint,
|
2013-10-16 11:17:34 +02:00
|
|
|
const QPointF &secondPoint);
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 10:07:01 +01:00
|
|
|
* @brief Create help create tool from GUI.
|
|
|
|
* @param dialog dialog.
|
2014-01-24 15:25:45 +01:00
|
|
|
* @param scene pointer to scene.
|
2014-01-27 10:07:01 +01:00
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-02-06 14:57:23 +01:00
|
|
|
static void Create(DialogTool *dialog, VMainGraphicsScene *scene, VDomDocument *doc, VContainer *data);
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 10:07:01 +01:00
|
|
|
* @brief Create help create tool.
|
2014-01-24 16:10:23 +01:00
|
|
|
* @param _id tool id, 0 if tool doesn't exist yet.
|
2014-01-27 10:07:01 +01:00
|
|
|
* @param radius string with formula radius arc.
|
|
|
|
* @param center id center arc point.
|
|
|
|
* @param firstPointId id first line point.
|
|
|
|
* @param secondPointId id second line point.
|
2014-01-24 18:10:04 +01:00
|
|
|
* @param pointName point name.
|
2014-01-24 17:10:53 +01:00
|
|
|
* @param mx label bias x axis.
|
|
|
|
* @param my label bias y axis.
|
2014-01-24 15:25:45 +01:00
|
|
|
* @param scene pointer to scene.
|
2014-01-27 10:07:01 +01:00
|
|
|
* @param doc dom document container.
|
|
|
|
* @param data container with variables.
|
2014-01-24 17:10:53 +01:00
|
|
|
* @param parse parser file mode.
|
2014-01-24 15:25:45 +01:00
|
|
|
* @param typeCreation way we create this tool.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-01-27 16:48:11 +01:00
|
|
|
static void Create(const qint64 _id, const QString &arcRadius, const qint64 ¢er,
|
2013-10-16 11:17:34 +02:00
|
|
|
const qint64 &firstPointId, const qint64 &secondPointId, const QString &pointName,
|
|
|
|
const qreal &mx, const qreal &my, VMainGraphicsScene *scene, VDomDocument *doc,
|
2013-11-06 22:11:12 +01:00
|
|
|
VContainer *data, const Document::Documents &parse, const Tool::Sources &typeCreation);
|
2013-10-29 14:45:07 +01:00
|
|
|
static const QString ToolType;
|
2013-08-21 10:03:53 +02:00
|
|
|
public slots:
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 13:54:29 +01:00
|
|
|
* @brief FullUpdateFromFile update tool data form file.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-10-16 11:17:34 +02:00
|
|
|
virtual void FullUpdateFromFile();
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 16:56:41 +01:00
|
|
|
* @brief SetFactor set current scale factor of scene.
|
2014-01-24 17:10:53 +01:00
|
|
|
* @param factor scene scale factor.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-10-16 11:17:34 +02:00
|
|
|
virtual void SetFactor(qreal factor);
|
2014-01-27 10:07:01 +01:00
|
|
|
/**
|
|
|
|
* @brief ShowContextMenu show context menu.
|
|
|
|
* @param event context menu event.
|
|
|
|
*/
|
2014-01-09 13:51:09 +01:00
|
|
|
virtual void ShowContextMenu(QGraphicsSceneContextMenuEvent *event);
|
2013-08-21 10:03:53 +02:00
|
|
|
protected:
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 18:10:04 +01:00
|
|
|
* @brief contextMenuEvent handle context menu events.
|
2014-01-27 10:07:01 +01:00
|
|
|
* @param event context menu event.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-10-16 11:17:34 +02:00
|
|
|
virtual void contextMenuEvent ( QGraphicsSceneContextMenuEvent * event );
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 15:25:45 +01:00
|
|
|
* @brief AddToFile add tag with informations about tool into file.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-10-16 11:17:34 +02:00
|
|
|
virtual void AddToFile();
|
2013-12-24 12:24:29 +01:00
|
|
|
/**
|
|
|
|
* @brief RefreshDataInFile refresh attributes in file. If attributes don't exist create them.
|
|
|
|
*/
|
2014-02-06 14:57:23 +01:00
|
|
|
virtual void RefreshDataInFile();
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-24 15:25:45 +01:00
|
|
|
* @brief RemoveReferens decrement value of reference.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-10-16 11:17:34 +02:00
|
|
|
virtual void RemoveReferens();
|
2014-02-06 14:57:23 +01:00
|
|
|
/**
|
|
|
|
* @brief SaveDialog save options into file after change in dialog.
|
|
|
|
*/
|
|
|
|
virtual void SaveDialog(QDomElement &domElement);
|
2013-08-21 10:03:53 +02:00
|
|
|
private:
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 10:07:01 +01:00
|
|
|
* @brief radius string with formula radius arc.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2014-01-27 16:48:11 +01:00
|
|
|
QString arcRadius;
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 10:07:01 +01:00
|
|
|
* @brief center id center arc point.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-10-16 11:17:34 +02:00
|
|
|
qint64 center;
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 10:07:01 +01:00
|
|
|
* @brief firstPointId id first line point.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-10-16 11:17:34 +02:00
|
|
|
qint64 firstPointId;
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-27 10:07:01 +01:00
|
|
|
* @brief secondPointId id second line point.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-10-16 11:17:34 +02:00
|
|
|
qint64 secondPointId;
|
2013-08-21 10:03:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VTOOLPOINTOFCONTACT_H
|