valentina/src/libs/vtools/tools/drawTools/toolpoint/vabstractpoint.h

110 lines
3.5 KiB
C
Raw Normal View History

/************************************************************************
**
** @file vabstractpoint.h
** @author Roman Telezhynskyi <dismine(at)gmail.com>
** @date 19 6, 2015
**
** @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) 2015 Valentina project
** <https://gitlab.com/smart-pattern/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 VABSTRACTPOINT_H
#define VABSTRACTPOINT_H
#include <QColor>
#include <QMetaObject>
#include <QObject>
#include <QPen>
#include <QPointF>
#include <QString>
#include <QtGlobal>
2023-07-13 16:49:20 +02:00
#include "../../../visualization/visualization.h"
#include "../../vabstracttool.h"
#include "../vdrawtool.h"
#include "../vmisc/def.h"
2023-07-13 16:49:20 +02:00
#include "../vpatterndb/vcontainer.h"
#include "../vwidgets/vmaingraphicsscene.h"
2023-07-13 16:49:20 +02:00
class VAbstractPoint : public VDrawTool
{
2022-08-12 17:50:13 +02:00
Q_OBJECT // NOLINT
2023-07-13 16:49:20 +02:00
public:
2020-10-28 13:09:56 +01:00
VAbstractPoint(VAbstractPattern *doc, VContainer *data, quint32 id, const QString &notes);
2022-08-22 15:36:01 +02:00
virtual ~VAbstractPoint() = default;
2023-05-03 13:07:02 +02:00
virtual auto getTagName() const -> QString override;
2023-07-13 16:49:20 +02:00
template <typename T> void ShowToolVisualization(bool show);
public slots:
virtual void ShowTool(quint32 id, bool enable) override;
2023-07-13 16:49:20 +02:00
void DeleteFromLabel();
protected:
void SetPointName(quint32 id, const QString &name);
2023-07-13 16:49:20 +02:00
template <typename T> static void InitToolConnections(VMainGraphicsScene *scene, T *tool);
private:
2022-08-12 17:50:13 +02:00
Q_DISABLE_COPY_MOVE(VAbstractPoint) // NOLINT
};
//---------------------------------------------------------------------------------------------------------------------
2023-07-13 16:49:20 +02:00
template <typename T> void VAbstractPoint::ShowToolVisualization(bool show)
{
if (show)
{
if (vis.isNull())
{
AddVisualization<T>();
SetVisualization();
}
else
{
if (T *visual = qobject_cast<T *>(vis))
{
visual->show();
}
}
}
else
{
delete vis;
}
}
//---------------------------------------------------------------------------------------------------------------------
2023-07-13 16:49:20 +02:00
template <typename T> void VAbstractPoint::InitToolConnections(VMainGraphicsScene *scene, T *tool)
{
SCASSERT(scene != nullptr)
SCASSERT(tool != nullptr)
InitDrawToolConnections(scene, tool);
QObject::connect(scene, &VMainGraphicsScene::EnablePointItemHover, tool, &T::AllowHover);
QObject::connect(scene, &VMainGraphicsScene::EnablePointItemSelection, tool, &T::AllowSelecting);
QObject::connect(scene, &VMainGraphicsScene::EnableLabelItemHover, tool, &T::AllowLabelHover);
QObject::connect(scene, &VMainGraphicsScene::EnableLabelItemSelection, tool, &T::AllowLabelSelecting);
}
#endif // VABSTRACTPOINT_H