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 vtoolpoint.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 VTOOLPOINT_H
|
|
|
|
#define VTOOLPOINT_H
|
|
|
|
|
|
|
|
#include "vdrawtool.h"
|
2014-06-17 11:50:11 +02:00
|
|
|
#include <QGraphicsEllipseItem>
|
2014-06-08 20:10:57 +02:00
|
|
|
|
|
|
|
class VPointF;
|
|
|
|
class VGraphicsSimpleTextItem;
|
2013-09-10 14:29:06 +02:00
|
|
|
|
2013-11-19 21:56:49 +01:00
|
|
|
/**
|
2014-01-26 16:26:01 +01:00
|
|
|
* @brief The VToolPoint class parent for all tools what create points.
|
2013-11-19 21:56:49 +01:00
|
|
|
*/
|
2013-11-04 21:35:15 +01:00
|
|
|
class VToolPoint: public VDrawTool, public QGraphicsEllipseItem
|
|
|
|
{
|
2013-09-10 14:29:06 +02:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-06-13 19:02:41 +02:00
|
|
|
VToolPoint(VPattern *doc, VContainer *data, quint32 id, QGraphicsItem * parent = nullptr);
|
|
|
|
virtual ~VToolPoint(){}
|
2013-10-29 14:45:07 +01:00
|
|
|
static const QString TagName;
|
2014-07-24 12:20:26 +02:00
|
|
|
virtual void paint(QPainter * painter, const QStyleOptionGraphicsItem * option, QWidget * widget = 0);
|
2013-09-10 14:29:06 +02:00
|
|
|
public slots:
|
2013-11-07 15:40:39 +01:00
|
|
|
void NameChangePosition(const QPointF &pos);
|
2013-11-06 22:11:12 +01:00
|
|
|
virtual void ChangedActivDraw(const QString &newName);
|
2014-02-25 15:40:24 +01:00
|
|
|
virtual void ShowTool(quint32 id, Qt::GlobalColor color, bool enable);
|
2013-10-16 11:17:34 +02:00
|
|
|
virtual void SetFactor(qreal factor);
|
2014-01-09 13:51:09 +01:00
|
|
|
virtual void ShowContextMenu(QGraphicsSceneContextMenuEvent *event);
|
2014-06-24 10:23:39 +02:00
|
|
|
void Disable(bool disable);
|
2013-09-10 14:29:06 +02:00
|
|
|
protected:
|
2014-06-13 19:02:41 +02:00
|
|
|
/** @brief radius radius circle. */
|
2013-09-10 14:29:06 +02:00
|
|
|
qreal radius;
|
2014-06-13 19:02:41 +02:00
|
|
|
|
|
|
|
/** @brief namePoint point label. */
|
2013-09-10 14:29:06 +02:00
|
|
|
VGraphicsSimpleTextItem *namePoint;
|
2014-06-13 19:02:41 +02:00
|
|
|
|
|
|
|
/** @brief lineName line what we see if label moved too away from point. */
|
2013-09-10 14:29:06 +02:00
|
|
|
QGraphicsLineItem *lineName;
|
2014-06-13 19:02:41 +02:00
|
|
|
|
2013-09-10 14:29:06 +02:00
|
|
|
virtual void UpdateNamePosition(qreal mx, qreal my);
|
|
|
|
virtual void mouseReleaseEvent ( QGraphicsSceneMouseEvent * event );
|
|
|
|
virtual void hoverMoveEvent ( QGraphicsSceneHoverEvent * event );
|
|
|
|
virtual void hoverLeaveEvent ( QGraphicsSceneHoverEvent * event );
|
|
|
|
virtual void RefreshPointGeometry(const VPointF &point);
|
|
|
|
void RefreshLine();
|
2014-01-03 16:13:43 +01:00
|
|
|
virtual QVariant itemChange ( GraphicsItemChange change, const QVariant &value );
|
|
|
|
virtual void keyReleaseEvent(QKeyEvent * event);
|
2013-09-10 14:29:06 +02:00
|
|
|
private:
|
2013-09-30 18:29:03 +02:00
|
|
|
Q_DISABLE_COPY(VToolPoint)
|
2013-09-10 14:29:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VTOOLPOINT_H
|