113 lines
4.2 KiB
C++
113 lines
4.2 KiB
C++
/************************************************************************
|
|
**
|
|
** @file vtoolsinglepoint.h
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
|
** @date November 15, 2013
|
|
**
|
|
** @brief
|
|
** @copyright
|
|
** This source code is part of the Valentina project, a pattern making
|
|
** program, whose allow create and modeling patterns of clothing.
|
|
** Copyright (C) 2013-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 VTOOLSINGLEPOINT_H
|
|
#define VTOOLSINGLEPOINT_H
|
|
|
|
#include <qcompilerdetection.h>
|
|
#include <QGraphicsItem>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QPointF>
|
|
#include <QString>
|
|
#include <QVariant>
|
|
#include <QtGlobal>
|
|
|
|
#include "../vabstractpoint.h"
|
|
#include "../vmisc/def.h"
|
|
#include "../vwidgets/vscenepoint.h"
|
|
|
|
template <class T> class QSharedPointer;
|
|
|
|
struct VToolSinglePointInitData : VAbstractToolInitData
|
|
{
|
|
VToolSinglePointInitData()
|
|
: VAbstractToolInitData(),
|
|
name(),
|
|
mx(5),
|
|
my(10),
|
|
showLabel(true)
|
|
{}
|
|
|
|
QString name;
|
|
qreal mx;
|
|
qreal my;
|
|
bool showLabel;
|
|
};
|
|
|
|
/**
|
|
* @brief The VToolSinglePoint class parent for all tools what create points.
|
|
*/
|
|
class VToolSinglePoint: public VAbstractPoint, public VScenePoint
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
VToolSinglePoint(VAbstractPattern *doc, VContainer *data, quint32 id, QGraphicsItem * parent = nullptr);
|
|
virtual ~VToolSinglePoint() Q_DECL_EQ_DEFAULT;
|
|
|
|
virtual int type() const Q_DECL_OVERRIDE {return Type;}
|
|
enum { Type = UserType + static_cast<int>(Tool::SinglePoint)};
|
|
|
|
QString name() const;
|
|
void setName(const QString &name);
|
|
|
|
void SetEnabled(bool enabled);
|
|
|
|
virtual void GroupVisibility(quint32 object, bool visible) Q_DECL_OVERRIDE;
|
|
virtual void ChangeLabelPosition(quint32 id, const QPointF &pos) Q_DECL_OVERRIDE;
|
|
|
|
virtual bool IsLabelVisible(quint32 id) const Q_DECL_OVERRIDE;
|
|
virtual void SetLabelVisible(quint32 id, bool visible) Q_DECL_OVERRIDE;
|
|
public slots:
|
|
void NameChangePosition(const QPointF &pos);
|
|
virtual void Disable(bool disable, const QString &namePP) Q_DECL_OVERRIDE;
|
|
virtual void EnableToolMove(bool move) Q_DECL_OVERRIDE;
|
|
void PointChoosed();
|
|
void PointSelected(bool selected);
|
|
virtual void FullUpdateFromFile() Q_DECL_OVERRIDE;
|
|
virtual void AllowHover(bool enabled) Q_DECL_OVERRIDE;
|
|
virtual void AllowSelecting(bool enabled) Q_DECL_OVERRIDE;
|
|
void AllowLabelHover(bool enabled);
|
|
void AllowLabelSelecting(bool enabled);
|
|
virtual void ToolSelectionType(const SelectionType &type) Q_DECL_OVERRIDE;
|
|
protected:
|
|
virtual void UpdateNamePosition(quint32 id, const QPointF &pos) Q_DECL_OVERRIDE;
|
|
virtual void mousePressEvent(QGraphicsSceneMouseEvent *event) Q_DECL_OVERRIDE;
|
|
virtual void mouseReleaseEvent ( QGraphicsSceneMouseEvent * event ) Q_DECL_OVERRIDE;
|
|
virtual void hoverEnterEvent(QGraphicsSceneHoverEvent *event) Q_DECL_OVERRIDE;
|
|
virtual QVariant itemChange ( GraphicsItemChange change, const QVariant &value ) Q_DECL_OVERRIDE;
|
|
virtual void keyReleaseEvent(QKeyEvent * event) Q_DECL_OVERRIDE;
|
|
virtual void contextMenuEvent ( QGraphicsSceneContextMenuEvent * event ) Q_DECL_OVERRIDE;
|
|
virtual void SaveOptions(QDomElement &tag, QSharedPointer<VGObject> &obj) Q_DECL_OVERRIDE;
|
|
virtual void ChangeLabelVisibility(quint32 id, bool visible) Q_DECL_OVERRIDE;
|
|
private:
|
|
Q_DISABLE_COPY(VToolSinglePoint)
|
|
};
|
|
|
|
#endif // VTOOLSINGLEPOINT_H
|