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 vtoolline.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-07-25 20:39:51 +02:00
|
|
|
#ifndef VTOOLLINE_H
|
|
|
|
#define VTOOLLINE_H
|
|
|
|
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <qcompilerdetection.h>
|
|
|
|
#include <QDomElement>
|
|
|
|
#include <QGraphicsItem>
|
2013-11-06 18:06:00 +01:00
|
|
|
#include <QGraphicsLineItem>
|
2016-08-08 13:44:49 +02:00
|
|
|
#include <QMetaObject>
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
#include <QVariant>
|
|
|
|
#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 "vdrawtool.h"
|
|
|
|
|
|
|
|
template <class T> class QSharedPointer;
|
2013-07-25 20:39:51 +02:00
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-25 14:36:28 +01:00
|
|
|
* @brief The VToolLine class tool for creation line.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
class VToolLine: public VDrawTool, public QGraphicsLineItem
|
|
|
|
{
|
2013-07-25 20:39:51 +02:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual void setDialog() Q_DECL_OVERRIDE;
|
2015-06-18 19:23:24 +02:00
|
|
|
static VToolLine *Create(DialogTool *dialog, VMainGraphicsScene *scene, VAbstractPattern *doc, VContainer *data);
|
2014-07-16 19:08:24 +02:00
|
|
|
static VToolLine *Create(const quint32 &_id, const quint32 &firstPoint, const quint32 &secondPoint,
|
2015-02-07 12:17:31 +01:00
|
|
|
const QString &typeLine, const QString &lineColor, VMainGraphicsScene *scene,
|
2015-06-18 19:23:24 +02:00
|
|
|
VAbstractPattern *doc, VContainer *data, const Document &parse,
|
|
|
|
const Source &typeCreation);
|
2016-03-31 19:27:40 +02:00
|
|
|
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual int type() const Q_DECL_OVERRIDE {return Type;}
|
2014-08-26 20:31:28 +02:00
|
|
|
enum { Type = UserType + static_cast<int>(Tool::Line)};
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual QString getTagName() const Q_DECL_OVERRIDE;
|
2017-03-19 16:13:02 +01:00
|
|
|
|
|
|
|
QString FirstPointName() const;
|
|
|
|
QString SecondPointName() const;
|
|
|
|
|
2015-02-03 11:17:04 +01:00
|
|
|
quint32 GetFirstPoint() const;
|
|
|
|
void SetFirstPoint(const quint32 &value);
|
2014-09-01 17:29:43 +02:00
|
|
|
|
2015-02-03 11:17:04 +01:00
|
|
|
quint32 GetSecondPoint() const;
|
|
|
|
void SetSecondPoint(const quint32 &value);
|
2014-09-01 17:29:43 +02:00
|
|
|
|
2016-05-19 12:11:50 +02:00
|
|
|
QString GetLineColor() const;
|
|
|
|
void SetLineColor(const QString &value);
|
|
|
|
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual void ShowVisualization(bool show) Q_DECL_OVERRIDE;
|
2015-02-07 15:42:49 +01:00
|
|
|
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual void SetTypeLine(const QString &value) Q_DECL_OVERRIDE;
|
2016-04-06 11:03:34 +02:00
|
|
|
virtual void GroupVisibility(quint32 object, bool visible) Q_DECL_OVERRIDE;
|
2013-07-25 20:39:51 +02:00
|
|
|
public slots:
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual void FullUpdateFromFile() Q_DECL_OVERRIDE;
|
|
|
|
virtual void ShowTool(quint32 id, bool enable) Q_DECL_OVERRIDE;
|
|
|
|
virtual void SetFactor(qreal factor) Q_DECL_OVERRIDE;
|
|
|
|
virtual void Disable(bool disable, const QString &namePP) 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-07-25 20:39:51 +02:00
|
|
|
protected:
|
2015-07-03 15:36:54 +02:00
|
|
|
virtual void contextMenuEvent ( QGraphicsSceneContextMenuEvent * event ) Q_DECL_OVERRIDE;
|
|
|
|
virtual void AddToFile() Q_DECL_OVERRIDE;
|
|
|
|
virtual void RefreshDataInFile() Q_DECL_OVERRIDE;
|
|
|
|
virtual void hoverEnterEvent ( QGraphicsSceneHoverEvent * event ) Q_DECL_OVERRIDE;
|
|
|
|
virtual void hoverLeaveEvent ( QGraphicsSceneHoverEvent * event ) Q_DECL_OVERRIDE;
|
|
|
|
virtual void RemoveReferens() Q_DECL_OVERRIDE;
|
|
|
|
virtual QVariant itemChange ( GraphicsItemChange change, const QVariant &value ) Q_DECL_OVERRIDE;
|
|
|
|
virtual void keyReleaseEvent(QKeyEvent * event) Q_DECL_OVERRIDE;
|
|
|
|
virtual void SaveDialog(QDomElement &domElement) Q_DECL_OVERRIDE;
|
|
|
|
virtual void SaveOptions(QDomElement &tag, QSharedPointer<VGObject> &obj) Q_DECL_OVERRIDE;
|
|
|
|
virtual void ReadToolAttributes(const QDomElement &domElement) Q_DECL_OVERRIDE;
|
|
|
|
virtual void SetVisualization() Q_DECL_OVERRIDE;
|
2013-07-25 20:39:51 +02:00
|
|
|
private:
|
2016-05-14 21:54:57 +02:00
|
|
|
Q_DISABLE_COPY(VToolLine)
|
|
|
|
|
2014-06-13 19:02:41 +02:00
|
|
|
/** @brief firstPoint id first line point. */
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 firstPoint;
|
2014-06-13 19:02:41 +02:00
|
|
|
|
|
|
|
/** @brief secondPoint id second line point. */
|
2014-02-25 15:40:24 +01:00
|
|
|
quint32 secondPoint;
|
2014-06-13 19:02:41 +02:00
|
|
|
|
2016-05-19 12:11:50 +02:00
|
|
|
/** @brief lineColor color of a line. */
|
|
|
|
QString lineColor;
|
|
|
|
|
2016-05-14 21:54:57 +02:00
|
|
|
VToolLine(VAbstractPattern *doc, VContainer *data, quint32 id, quint32 firstPoint, quint32 secondPoint,
|
|
|
|
const QString &typeLine, const QString &lineColor, const Source &typeCreation,
|
|
|
|
QGraphicsItem * parent = nullptr);
|
|
|
|
|
2014-01-03 16:13:43 +01:00
|
|
|
void RefreshGeometry();
|
2013-07-25 20:39:51 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VTOOLLINE_H
|