2020-05-05 07:44:20 +02:00
|
|
|
/************************************************************************
|
|
|
|
**
|
2020-05-23 15:36:46 +02:00
|
|
|
** @file vpmaingraphicsview.cpp
|
2020-05-05 07:44:20 +02:00
|
|
|
** @author Ronan Le Tiec
|
|
|
|
** @date 3 5, 2020
|
|
|
|
**
|
|
|
|
** @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) 2020 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/>.
|
|
|
|
**
|
|
|
|
*************************************************************************/
|
|
|
|
|
2020-05-23 15:36:46 +02:00
|
|
|
#include "vpmaingraphicsview.h"
|
2020-05-05 07:44:20 +02:00
|
|
|
|
|
|
|
#include <QDragEnterEvent>
|
|
|
|
#include <QMimeData>
|
2020-05-08 23:49:41 +02:00
|
|
|
#include <QKeyEvent>
|
2021-07-31 11:21:07 +02:00
|
|
|
#include <QMenu>
|
2021-08-17 17:49:28 +02:00
|
|
|
#include <QUndoStack>
|
2020-05-05 07:44:20 +02:00
|
|
|
|
2021-08-09 14:09:10 +02:00
|
|
|
#include "../scene/vpgraphicssheet.h"
|
|
|
|
#include "../scene/vpgraphicspiece.h"
|
|
|
|
#include "../vptilefactory.h"
|
|
|
|
#include "../scene/vpgraphicstilegrid.h"
|
|
|
|
#include "../carousel/vpmimedatapiece.h"
|
|
|
|
#include "../layout/vplayout.h"
|
|
|
|
#include "../layout/vpsheet.h"
|
|
|
|
#include "../layout/vppiece.h"
|
2020-05-11 16:39:54 +02:00
|
|
|
#include "../vwidgets/vmaingraphicsscene.h"
|
2020-11-19 14:33:27 +01:00
|
|
|
#include "vptilefactory.h"
|
2021-08-09 14:09:10 +02:00
|
|
|
#include "vpgraphicspiececontrols.h"
|
2021-08-17 17:49:28 +02:00
|
|
|
#include "../undocommands/vpundopiecemove.h"
|
2021-08-18 19:33:47 +02:00
|
|
|
#include "../undocommands/vpundopiecerotate.h"
|
2021-08-19 11:36:39 +02:00
|
|
|
#include "../undocommands/vpundooriginmove.h"
|
2021-08-19 14:13:54 +02:00
|
|
|
#include "../undocommands/vpundomovepieceonsheet.h"
|
2020-05-05 07:44:20 +02:00
|
|
|
|
|
|
|
#include <QLoggingCategory>
|
|
|
|
|
|
|
|
Q_LOGGING_CATEGORY(pMainGraphicsView, "p.mainGraphicsView")
|
|
|
|
|
2021-08-09 14:09:10 +02:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
const QKeySequence restoreOriginShortcut = QKeySequence(Qt::ControlModifier + Qt::Key_Asterisk);
|
|
|
|
}
|
|
|
|
|
2020-05-05 07:44:20 +02:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2021-08-17 17:49:28 +02:00
|
|
|
VPMainGraphicsView::VPMainGraphicsView(const VPLayoutPtr &layout, VPTileFactory *tileFactory, QWidget *parent) :
|
2020-05-11 16:39:54 +02:00
|
|
|
VMainGraphicsView(parent),
|
2021-07-31 11:21:07 +02:00
|
|
|
m_scene(new VMainGraphicsScene(this)),
|
2020-05-11 16:39:54 +02:00
|
|
|
m_layout(layout)
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
2021-08-17 17:49:28 +02:00
|
|
|
SCASSERT(not m_layout.isNull())
|
2020-05-05 07:44:20 +02:00
|
|
|
setScene(m_scene);
|
|
|
|
|
2021-08-14 14:19:28 +02:00
|
|
|
m_graphicsSheet = new VPGraphicsSheet(m_layout);
|
2020-05-23 14:48:31 +02:00
|
|
|
m_graphicsSheet->setPos(0, 0);
|
|
|
|
m_scene->addItem(m_graphicsSheet);
|
2020-05-05 07:44:20 +02:00
|
|
|
|
|
|
|
setAcceptDrops(true);
|
2020-05-08 23:49:41 +02:00
|
|
|
|
2021-08-09 14:09:10 +02:00
|
|
|
m_graphicsTileGrid = new VPGraphicsTileGrid(m_layout, tileFactory);
|
2020-11-19 14:33:27 +01:00
|
|
|
m_scene->addItem(m_graphicsTileGrid);
|
2021-07-30 13:49:38 +02:00
|
|
|
|
2021-08-09 14:09:10 +02:00
|
|
|
m_rotationControls = new VPGraphicsPieceControls(m_layout);
|
|
|
|
m_rotationControls->setVisible(false);
|
|
|
|
m_scene->addItem(m_rotationControls);
|
|
|
|
|
|
|
|
m_rotationOrigin = new VPGraphicsTransformationOrigin(m_layout);
|
|
|
|
m_rotationOrigin->setVisible(false);
|
|
|
|
m_scene->addItem(m_rotationOrigin);
|
|
|
|
|
|
|
|
connect(m_rotationControls, &VPGraphicsPieceControls::ShowOrigin,
|
|
|
|
m_rotationOrigin, &VPGraphicsTransformationOrigin::on_ShowOrigin);
|
|
|
|
connect(m_rotationControls, &VPGraphicsPieceControls::TransformationOriginChanged,
|
|
|
|
m_rotationOrigin, &VPGraphicsTransformationOrigin::SetTransformationOrigin);
|
|
|
|
|
2021-07-30 13:49:38 +02:00
|
|
|
// add the connections
|
2021-08-17 17:49:28 +02:00
|
|
|
connect(layout.get(), &VPLayout::PieceSheetChanged, this, &VPMainGraphicsView::on_PieceSheetChanged);
|
2021-08-19 15:09:38 +02:00
|
|
|
connect(layout.get(), &VPLayout::ActiveSheetChanged, this, &VPMainGraphicsView::RefreshPieces);
|
2021-08-09 14:09:10 +02:00
|
|
|
|
|
|
|
auto *restoreOrigin = new QAction(this);
|
|
|
|
restoreOrigin->setShortcut(restoreOriginShortcut);
|
|
|
|
connect(restoreOrigin, &QAction::triggered, this, &VPMainGraphicsView::RestoreOrigin);
|
|
|
|
this->addAction(restoreOrigin);
|
2020-05-05 07:44:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2020-05-23 15:36:46 +02:00
|
|
|
void VPMainGraphicsView::RefreshLayout()
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
|
|
|
// FIXME: Is that the way to go?
|
|
|
|
|
2020-05-23 14:48:31 +02:00
|
|
|
m_graphicsSheet->update();
|
2020-05-05 07:44:20 +02:00
|
|
|
|
2020-11-19 14:33:27 +01:00
|
|
|
m_graphicsTileGrid->update();
|
|
|
|
|
2020-05-05 07:44:20 +02:00
|
|
|
m_scene->update();
|
|
|
|
}
|
|
|
|
|
2021-07-31 11:21:07 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPMainGraphicsView::RefreshPieces()
|
|
|
|
{
|
|
|
|
qDeleteAll(m_graphicsPieces);
|
|
|
|
m_graphicsPieces.clear();
|
|
|
|
|
2021-08-17 17:49:28 +02:00
|
|
|
VPLayoutPtr layout = m_layout.toStrongRef();
|
|
|
|
if (not layout.isNull())
|
2021-07-31 11:21:07 +02:00
|
|
|
{
|
2021-08-17 17:49:28 +02:00
|
|
|
VPSheetPtr sheet = layout->GetFocusedSheet();
|
|
|
|
if (not sheet.isNull())
|
2021-07-31 11:21:07 +02:00
|
|
|
{
|
2021-08-17 17:49:28 +02:00
|
|
|
QList<VPPiecePtr> pieces = sheet->GetPieces();
|
|
|
|
m_graphicsPieces.reserve(pieces.size());
|
|
|
|
|
|
|
|
for (const auto &piece : pieces)
|
|
|
|
{
|
|
|
|
if (not piece.isNull())
|
|
|
|
{
|
|
|
|
auto *graphicsPiece = new VPGraphicsPiece(piece);
|
|
|
|
m_graphicsPieces.append(graphicsPiece);
|
|
|
|
scene()->addItem(graphicsPiece);
|
|
|
|
ConnectPiece(graphicsPiece);
|
|
|
|
}
|
|
|
|
}
|
2021-07-31 11:21:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-14 10:55:57 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2021-07-31 11:32:23 +02:00
|
|
|
auto VPMainGraphicsView::GetScene() -> VMainGraphicsScene*
|
2020-11-14 10:55:57 +01:00
|
|
|
{
|
|
|
|
return m_scene;
|
|
|
|
}
|
|
|
|
|
2020-11-14 12:37:43 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPMainGraphicsView::PrepareForExport()
|
|
|
|
{
|
|
|
|
m_graphicsSheet->SetShowBorder(false);
|
|
|
|
m_graphicsSheet->SetShowMargin(false);
|
2020-11-14 17:31:34 +01:00
|
|
|
|
2021-08-17 17:49:28 +02:00
|
|
|
VPLayoutPtr layout = m_layout.toStrongRef();
|
|
|
|
if (not layout.isNull())
|
|
|
|
{
|
|
|
|
m_showGridTmp = layout->GetFocusedSheet()->GetLayout()->LayoutSettings().GetShowGrid();
|
|
|
|
layout->GetFocusedSheet()->GetLayout()->LayoutSettings().SetShowGrid(false);
|
2021-03-14 14:27:45 +01:00
|
|
|
|
2021-08-17 17:49:28 +02:00
|
|
|
m_showTilesTmp = layout->LayoutSettings().GetShowTiles();
|
|
|
|
layout->LayoutSettings().SetShowTiles(false);
|
|
|
|
}
|
2020-11-14 17:31:34 +01:00
|
|
|
|
2020-11-14 12:37:43 +01:00
|
|
|
RefreshLayout();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPMainGraphicsView::CleanAfterExport()
|
|
|
|
{
|
|
|
|
m_graphicsSheet->SetShowBorder(true);
|
|
|
|
m_graphicsSheet->SetShowMargin(true);
|
2020-11-14 17:31:34 +01:00
|
|
|
|
2021-08-17 17:49:28 +02:00
|
|
|
VPLayoutPtr layout = m_layout.toStrongRef();
|
|
|
|
if (not layout.isNull())
|
|
|
|
{
|
|
|
|
layout->GetFocusedSheet()->GetLayout()->LayoutSettings().SetShowGrid(m_showGridTmp);
|
2021-03-14 14:27:45 +01:00
|
|
|
|
2021-08-17 17:49:28 +02:00
|
|
|
layout->LayoutSettings().SetShowTiles(m_showTilesTmp);
|
|
|
|
}
|
2020-11-14 17:31:34 +01:00
|
|
|
|
2020-11-14 12:37:43 +01:00
|
|
|
RefreshLayout();
|
|
|
|
}
|
|
|
|
|
2020-05-05 07:44:20 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2020-05-23 15:36:46 +02:00
|
|
|
void VPMainGraphicsView::dragEnterEvent(QDragEnterEvent *event)
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
|
|
|
const QMimeData *mime = event->mimeData();
|
|
|
|
|
2021-07-30 13:49:38 +02:00
|
|
|
if(mime->hasFormat(VPMimeDataPiece::mineFormatPiecePtr))
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
|
|
|
qCDebug(pMainGraphicsView(), "drag enter");
|
|
|
|
event->acceptProposedAction();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2020-05-23 15:36:46 +02:00
|
|
|
void VPMainGraphicsView::dragMoveEvent(QDragMoveEvent *event)
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
|
|
|
const QMimeData *mime = event->mimeData();
|
|
|
|
|
2021-07-30 13:49:38 +02:00
|
|
|
if(mime->hasFormat(VPMimeDataPiece::mineFormatPiecePtr))
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
|
|
|
event->acceptProposedAction();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2020-05-23 15:36:46 +02:00
|
|
|
void VPMainGraphicsView::dragLeaveEvent(QDragLeaveEvent *event)
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
|
|
|
event->accept();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2020-05-23 15:36:46 +02:00
|
|
|
void VPMainGraphicsView::dropEvent(QDropEvent *event)
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
|
|
|
const QMimeData *mime = event->mimeData();
|
|
|
|
|
|
|
|
qCDebug(pMainGraphicsView(), "drop enter , %s", qUtf8Printable(mime->objectName()));
|
|
|
|
|
2021-07-30 13:49:38 +02:00
|
|
|
if(mime->hasFormat(VPMimeDataPiece::mineFormatPiecePtr))
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
2021-07-30 13:49:38 +02:00
|
|
|
const auto *mimePiece = qobject_cast<const VPMimeDataPiece *> (mime);
|
2020-05-05 07:44:20 +02:00
|
|
|
|
2021-08-17 17:49:28 +02:00
|
|
|
VPPiecePtr piece = mimePiece->GetPiecePtr();
|
|
|
|
if(not piece.isNull())
|
2020-05-05 07:44:20 +02:00
|
|
|
{
|
2021-08-17 17:49:28 +02:00
|
|
|
VPLayoutPtr layout = m_layout.toStrongRef();
|
|
|
|
if (layout.isNull())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-05-05 07:44:20 +02:00
|
|
|
qCDebug(pMainGraphicsView(), "element dropped, %s", qUtf8Printable(piece->GetName()));
|
|
|
|
event->acceptProposedAction();
|
|
|
|
|
2021-08-09 14:09:10 +02:00
|
|
|
piece->ClearTransformations();
|
|
|
|
piece->SetPosition(mapToScene(event->pos()));
|
2020-05-08 23:49:41 +02:00
|
|
|
|
2021-08-19 14:13:54 +02:00
|
|
|
auto *command = new VPUndoMovePieceOnSheet(layout->GetFocusedSheet(), piece);
|
|
|
|
layout->UndoStack()->push(command);
|
2020-05-08 23:49:41 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-05 07:44:20 +02:00
|
|
|
|
2020-05-08 23:49:41 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2020-05-23 15:36:46 +02:00
|
|
|
void VPMainGraphicsView::keyPressEvent(QKeyEvent *event)
|
2020-05-08 23:49:41 +02:00
|
|
|
{
|
|
|
|
if(event->key() == Qt::Key_Backspace || event->key() == Qt::Key_Delete)
|
|
|
|
{
|
2021-08-09 14:24:36 +02:00
|
|
|
for(auto *graphicsPiece : m_graphicsPieces)
|
2020-05-08 23:49:41 +02:00
|
|
|
{
|
2021-08-17 17:49:28 +02:00
|
|
|
VPPiecePtr piece = graphicsPiece->GetPiece();
|
2020-05-05 17:40:36 +02:00
|
|
|
|
2021-08-17 17:49:28 +02:00
|
|
|
if(not piece.isNull() && piece->IsSelected())
|
2020-05-08 23:49:41 +02:00
|
|
|
{
|
2021-08-09 14:09:10 +02:00
|
|
|
piece->SetSelected(false);
|
2021-08-19 14:13:54 +02:00
|
|
|
|
|
|
|
VPLayoutPtr layout = m_layout.toStrongRef();
|
|
|
|
if (not layout.isNull())
|
|
|
|
{
|
|
|
|
auto *command = new VPUndoMovePieceOnSheet(VPSheetPtr(), piece);
|
|
|
|
layout->UndoStack()->push(command);
|
|
|
|
}
|
2020-11-19 15:08:45 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-08-09 14:24:36 +02:00
|
|
|
else if (event->key() == Qt::Key_Left)
|
|
|
|
{
|
|
|
|
if((event->modifiers() & Qt::ShiftModifier) != 0U)
|
|
|
|
{
|
|
|
|
TranslatePiecesOn(-10, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TranslatePiecesOn(-1, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (event->key() == Qt::Key_Right)
|
|
|
|
{
|
|
|
|
if((event->modifiers() & Qt::ShiftModifier) != 0U)
|
|
|
|
{
|
|
|
|
TranslatePiecesOn(10, 0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TranslatePiecesOn(1, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (event->key() == Qt::Key_Up)
|
|
|
|
{
|
|
|
|
if((event->modifiers() & Qt::ShiftModifier) != 0U)
|
|
|
|
{
|
|
|
|
TranslatePiecesOn(0, -10);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TranslatePiecesOn(0, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (event->key() == Qt::Key_Down)
|
|
|
|
{
|
|
|
|
if((event->modifiers() & Qt::ShiftModifier) != 0U)
|
|
|
|
{
|
|
|
|
TranslatePiecesOn(0, 10);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
TranslatePiecesOn(0, 1);
|
|
|
|
}
|
|
|
|
}
|
2021-08-18 19:33:47 +02:00
|
|
|
else if (event->key() == Qt::Key_BracketLeft)
|
|
|
|
{
|
|
|
|
if((event->modifiers() & Qt::ControlModifier) != 0U)
|
|
|
|
{
|
|
|
|
RotatePiecesByAngle(90);
|
|
|
|
}
|
|
|
|
else if((event->modifiers() & Qt::AltModifier) != 0U)
|
|
|
|
{
|
|
|
|
RotatePiecesByAngle(1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
RotatePiecesByAngle(15);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (event->key() == Qt::Key_BracketRight)
|
|
|
|
{
|
|
|
|
if((event->modifiers() & Qt::ControlModifier) != 0U)
|
|
|
|
{
|
|
|
|
RotatePiecesByAngle(-90);
|
|
|
|
}
|
|
|
|
else if((event->modifiers() & Qt::AltModifier) != 0U)
|
|
|
|
{
|
|
|
|
RotatePiecesByAngle(-1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
RotatePiecesByAngle(-15);
|
|
|
|
}
|
|
|
|
}
|
2020-05-09 09:00:27 +02:00
|
|
|
}
|
2021-07-30 13:49:38 +02:00
|
|
|
|
2021-08-17 17:49:28 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPMainGraphicsView::keyReleaseEvent(QKeyEvent *event)
|
|
|
|
{
|
2021-08-18 19:33:47 +02:00
|
|
|
if (event->key() == Qt::Key_Left ||
|
|
|
|
event->key() == Qt::Key_Right ||
|
|
|
|
event->key() == Qt::Key_Up ||
|
|
|
|
event->key() == Qt::Key_Down ||
|
|
|
|
event->key() == Qt::Key_BracketLeft ||
|
|
|
|
event->key() == Qt::Key_BracketRight)
|
2021-08-17 17:49:28 +02:00
|
|
|
{
|
2021-08-18 19:33:47 +02:00
|
|
|
if (not event->isAutoRepeat())
|
|
|
|
{
|
|
|
|
m_allowChangeMerge = false;
|
|
|
|
}
|
2021-08-17 17:49:28 +02:00
|
|
|
}
|
2021-08-18 19:33:47 +02:00
|
|
|
|
|
|
|
if (event->key() == Qt::Key_BracketLeft || event->key() == Qt::Key_BracketRight)
|
|
|
|
{
|
|
|
|
if (not event->isAutoRepeat())
|
|
|
|
{
|
|
|
|
m_rotationControls->SetIgnorePieceTransformation(false);
|
2021-08-18 19:51:40 +02:00
|
|
|
m_rotationControls->on_UpdateControls();
|
|
|
|
m_rotationControls->on_HideHandles(false);
|
2021-08-18 19:33:47 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
VMainGraphicsView::keyReleaseEvent(event);
|
2021-08-17 17:49:28 +02:00
|
|
|
}
|
|
|
|
|
2021-07-31 11:21:07 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPMainGraphicsView::contextMenuEvent(QContextMenuEvent *event)
|
|
|
|
{
|
2021-07-31 15:00:32 +02:00
|
|
|
QGraphicsItem *item = itemAt(event->pos());
|
|
|
|
if (item != nullptr && item->type() == VPGraphicsPiece::Type)
|
|
|
|
{
|
|
|
|
VMainGraphicsView::contextMenuEvent(event);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-08-17 17:49:28 +02:00
|
|
|
VPLayoutPtr layout = m_layout.toStrongRef();
|
|
|
|
if (layout.isNull())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
VPSheetPtr sheet = layout->GetFocusedSheet();
|
|
|
|
|
2021-07-31 11:21:07 +02:00
|
|
|
QMenu menu;
|
2021-08-09 14:09:10 +02:00
|
|
|
|
|
|
|
QAction *restoreOriginAction = menu.addAction(tr("Restore transformation origin"));
|
|
|
|
restoreOriginAction->setShortcut(restoreOriginShortcut);
|
2021-08-17 17:49:28 +02:00
|
|
|
restoreOriginAction->setEnabled(not sheet.isNull() && sheet->TransformationOrigin().custom);
|
2021-08-09 14:09:10 +02:00
|
|
|
|
2021-07-31 11:21:07 +02:00
|
|
|
QAction *removeSheetAction = menu.addAction(QIcon::fromTheme(QStringLiteral("edit-delete")), tr("Remove sheet"));
|
2021-08-17 17:49:28 +02:00
|
|
|
removeSheetAction->setEnabled(not sheet.isNull() && layout->GetSheets().size() > 1);
|
2021-07-31 11:21:07 +02:00
|
|
|
|
|
|
|
QAction *selectedAction = menu.exec(event->globalPos());
|
|
|
|
if (selectedAction == removeSheetAction)
|
|
|
|
{
|
|
|
|
if (sheet != nullptr)
|
|
|
|
{
|
|
|
|
sheet->SetVisible(false);
|
|
|
|
|
2021-08-17 17:49:28 +02:00
|
|
|
QList<VPPiecePtr> pieces = sheet->GetPieces();
|
|
|
|
for (const auto &piece : pieces)
|
2021-07-31 11:21:07 +02:00
|
|
|
{
|
2021-08-17 17:49:28 +02:00
|
|
|
if (not piece.isNull())
|
|
|
|
{
|
|
|
|
piece->SetSheet(nullptr);
|
|
|
|
}
|
2021-07-31 11:21:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-17 17:49:28 +02:00
|
|
|
layout->SetFocusedSheet(VPSheetPtr());
|
2021-07-31 11:21:07 +02:00
|
|
|
emit on_SheetRemoved();
|
|
|
|
}
|
2021-08-09 14:09:10 +02:00
|
|
|
else if (selectedAction == restoreOriginAction)
|
|
|
|
{
|
|
|
|
RestoreOrigin();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPMainGraphicsView::RestoreOrigin() const
|
|
|
|
{
|
2021-08-17 17:49:28 +02:00
|
|
|
VPLayoutPtr layout = m_layout.toStrongRef();
|
|
|
|
if (layout.isNull())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
VPSheetPtr sheet = layout->GetFocusedSheet();
|
|
|
|
if (not sheet.isNull())
|
2021-08-09 14:09:10 +02:00
|
|
|
{
|
|
|
|
VPTransformationOrigon origin = sheet->TransformationOrigin();
|
2021-08-19 11:36:39 +02:00
|
|
|
if (origin.custom)
|
|
|
|
{ // ignore if not custom. Prevent double call
|
|
|
|
origin.custom = false;
|
|
|
|
|
|
|
|
QRectF boundingRect;
|
|
|
|
for (auto *graphicsPiece : m_graphicsPieces)
|
|
|
|
{
|
|
|
|
if (graphicsPiece->isSelected())
|
|
|
|
{
|
|
|
|
boundingRect = boundingRect.united(graphicsPiece->sceneBoundingRect());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
origin.origin = boundingRect.center();
|
|
|
|
|
|
|
|
auto *command = new VPUndoOriginMove(sheet, origin);
|
|
|
|
layout->UndoStack()->push(command);
|
|
|
|
}
|
2021-08-09 14:09:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VPMainGraphicsView::ConnectPiece(VPGraphicsPiece *piece)
|
|
|
|
{
|
|
|
|
SCASSERT(piece != nullptr)
|
|
|
|
|
2021-08-17 17:49:28 +02:00
|
|
|
VPLayoutPtr layout = m_layout.toStrongRef();
|
|
|
|
|
|
|
|
connect(layout.get(), &VPLayout::PieceTransformationChanged, piece,
|
|
|
|
&VPGraphicsPiece::on_RefreshPiece);
|
2021-08-09 14:09:10 +02:00
|
|
|
connect(piece, &VPGraphicsPiece::PieceSelectionChanged,
|
|
|
|
m_rotationControls, &VPGraphicsPieceControls::on_UpdateControls);
|
2021-08-17 17:49:28 +02:00
|
|
|
connect(piece, &VPGraphicsPiece::PieceTransformationChanged,
|
2021-08-09 14:09:10 +02:00
|
|
|
m_rotationControls, &VPGraphicsPieceControls::on_UpdateControls);
|
|
|
|
connect(piece, &VPGraphicsPiece::HideTransformationHandles,
|
|
|
|
m_rotationControls, &VPGraphicsPieceControls::on_HideHandles);
|
|
|
|
connect(piece, &VPGraphicsPiece::HideTransformationHandles,
|
|
|
|
m_rotationOrigin, &VPGraphicsTransformationOrigin::on_HideHandles);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2021-08-18 19:33:47 +02:00
|
|
|
void VPMainGraphicsView::RotatePiecesByAngle(qreal angle)
|
2021-08-09 14:09:10 +02:00
|
|
|
{
|
2021-08-18 19:51:40 +02:00
|
|
|
m_rotationControls->on_HideHandles(true);
|
2021-08-18 19:33:47 +02:00
|
|
|
m_rotationControls->SetIgnorePieceTransformation(true);
|
|
|
|
|
2021-08-17 17:49:28 +02:00
|
|
|
VPLayoutPtr layout = m_layout.toStrongRef();
|
|
|
|
if (layout.isNull())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
VPSheetPtr sheet = layout->GetFocusedSheet();
|
|
|
|
if (sheet.isNull())
|
2021-08-09 14:09:10 +02:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
VPTransformationOrigon origin = sheet->TransformationOrigin();
|
|
|
|
|
2021-08-18 19:33:47 +02:00
|
|
|
auto PreparePieces = [this]()
|
2021-08-09 14:24:36 +02:00
|
|
|
{
|
2021-08-18 19:33:47 +02:00
|
|
|
QVector<VPPiecePtr> pieces;
|
|
|
|
for (auto *item : m_graphicsPieces)
|
2021-08-09 14:24:36 +02:00
|
|
|
{
|
2021-08-18 19:33:47 +02:00
|
|
|
if (item->isSelected())
|
|
|
|
{
|
|
|
|
pieces.append(item->GetPiece());
|
|
|
|
}
|
2021-08-09 14:24:36 +02:00
|
|
|
}
|
2021-08-18 19:33:47 +02:00
|
|
|
|
|
|
|
return pieces;
|
|
|
|
};
|
|
|
|
|
|
|
|
QVector<VPPiecePtr> pieces = PreparePieces();
|
|
|
|
|
|
|
|
if (pieces.size() == 1)
|
|
|
|
{
|
|
|
|
auto *command = new VPUndoPieceRotate(pieces.first(), origin.origin, angle, m_allowChangeMerge);
|
|
|
|
layout->UndoStack()->push(command);
|
2021-08-09 14:24:36 +02:00
|
|
|
}
|
2021-08-18 19:33:47 +02:00
|
|
|
else if (pieces.size() > 1)
|
|
|
|
{
|
|
|
|
auto *command = new VPUndoPiecesRotate(pieces, origin.origin, angle, m_allowChangeMerge);
|
|
|
|
layout->UndoStack()->push(command);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_allowChangeMerge = true;
|
2021-08-09 14:24:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2021-08-17 17:49:28 +02:00
|
|
|
void VPMainGraphicsView::TranslatePiecesOn(qreal dx, qreal dy)
|
2021-08-09 14:24:36 +02:00
|
|
|
{
|
2021-08-17 17:49:28 +02:00
|
|
|
if (m_graphicsPieces.isEmpty())
|
2021-08-09 14:09:10 +02:00
|
|
|
{
|
2021-08-17 17:49:28 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
VPPiecePtr piece = m_graphicsPieces.first()->GetPiece();
|
|
|
|
if (piece.isNull())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
VPLayoutPtr layout = piece->Layout();
|
|
|
|
if (layout.isNull())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto PreparePieces = [this]()
|
|
|
|
{
|
|
|
|
QVector<VPPiecePtr> pieces;
|
|
|
|
for (auto *graphicsPiece : m_graphicsPieces)
|
2021-08-09 14:09:10 +02:00
|
|
|
{
|
2021-08-17 17:49:28 +02:00
|
|
|
if (graphicsPiece->isSelected())
|
|
|
|
{
|
|
|
|
pieces.append(graphicsPiece->GetPiece());
|
|
|
|
}
|
2021-08-09 14:09:10 +02:00
|
|
|
}
|
2021-08-17 17:49:28 +02:00
|
|
|
|
|
|
|
return pieces;
|
|
|
|
};
|
|
|
|
|
|
|
|
QVector<VPPiecePtr> pieces = PreparePieces();
|
|
|
|
if (pieces.size() == 1)
|
|
|
|
{
|
|
|
|
auto *command = new VPUndoPieceMove(pieces.first(), dx, dy, m_allowChangeMerge);
|
|
|
|
layout->UndoStack()->push(command);
|
2021-08-09 14:09:10 +02:00
|
|
|
}
|
2021-08-17 17:49:28 +02:00
|
|
|
else if (pieces.size() > 1)
|
|
|
|
{
|
|
|
|
auto *command = new VPUndoPiecesMove(pieces, dx, dy, m_allowChangeMerge);
|
|
|
|
layout->UndoStack()->push(command);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_allowChangeMerge = true;
|
2021-07-31 11:21:07 +02:00
|
|
|
}
|
|
|
|
|
2021-07-30 13:49:38 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2021-08-17 17:49:28 +02:00
|
|
|
void VPMainGraphicsView::on_PieceSheetChanged(const VPPiecePtr &piece)
|
2021-07-30 13:49:38 +02:00
|
|
|
{
|
|
|
|
VPGraphicsPiece *_graphicsPiece = nullptr;
|
|
|
|
for(auto *graphicPiece : m_graphicsPieces)
|
|
|
|
{
|
|
|
|
if(graphicPiece->GetPiece() == piece)
|
|
|
|
{
|
|
|
|
_graphicsPiece = graphicPiece;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-17 17:49:28 +02:00
|
|
|
VPLayoutPtr layout = piece->Layout();
|
|
|
|
if (layout.isNull())
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (piece->Sheet().isNull() || piece->Sheet() == layout->GetTrashSheet() ||
|
|
|
|
piece->Sheet() != layout->GetFocusedSheet()) // remove
|
2021-07-30 13:49:38 +02:00
|
|
|
{
|
|
|
|
if (_graphicsPiece != nullptr)
|
|
|
|
{
|
|
|
|
scene()->removeItem(_graphicsPiece);
|
|
|
|
m_graphicsPieces.removeAll(_graphicsPiece);
|
2021-07-31 15:00:32 +02:00
|
|
|
delete _graphicsPiece;
|
2021-07-30 13:49:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else // add
|
|
|
|
{
|
|
|
|
if(_graphicsPiece == nullptr)
|
|
|
|
{
|
|
|
|
_graphicsPiece = new VPGraphicsPiece(piece);
|
|
|
|
m_graphicsPieces.append(_graphicsPiece);
|
2021-08-09 14:09:10 +02:00
|
|
|
ConnectPiece(_graphicsPiece);
|
2021-07-30 13:49:38 +02:00
|
|
|
}
|
|
|
|
scene()->addItem(_graphicsPiece);
|
|
|
|
}
|
|
|
|
}
|