1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
/* This file is part of the KDE project
* SPDX-FileCopyrightText: 2006 Jan Hambrecht <jaham@gmx.net>
* SPDX-FileCopyrightText: 2006, 2007 Thorsten Zachmann <zachmann@kde.org>
*
* SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "KoPathControlPointMoveStrategy.h"
#include "KoCanvasBase.h"
#include "KoSnapGuide.h"
#include "KoPathTool.h"
#include "commands/KoPathControlPointMoveCommand.h"
#include "kis_command_utils.h"
KoPathControlPointMoveStrategy::KoPathControlPointMoveStrategy(KoPathTool *tool, const KoPathPointData &pointData, KoPathPoint::PointType type, const QPointF &pos)
: KoInteractionStrategy(tool)
, m_lastPosition(pos)
, m_move(0, 0)
, m_tool(tool)
, m_pointData(pointData)
, m_pointType(type)
{
m_path = m_pointData.pathShape;
}
KoPathControlPointMoveStrategy::~KoPathControlPointMoveStrategy()
{
}
void KoPathControlPointMoveStrategy::handleMouseMove(const QPointF &mouseLocation, Qt::KeyboardModifiers modifiers)
{
QPointF docPoint = m_tool->canvas()->snapGuide()->snap(mouseLocation, modifiers);
QPointF localPos = m_path->documentToShape(docPoint);
QPointF move = localPos - m_path->documentToShape(m_lastPosition);
// as the last position can change when the top left is changed we have
// to save it in document pos and not in shape pos
m_lastPosition = docPoint;
m_move += move;
KisCommandUtils::redoAndMergeIntoAccumulatingCommand(
new KoPathControlPointMoveCommand(m_pointData, move, m_pointType),
m_intermediateCommand);
}
void KoPathControlPointMoveStrategy::finishInteraction(Qt::KeyboardModifiers modifiers)
{
Q_UNUSED(modifiers);
}
KUndo2Command* KoPathControlPointMoveStrategy::createCommand()
{
if (m_intermediateCommand) {
return new KisCommandUtils::SkipFirstRedoWrapper(m_intermediateCommand.take());
}
return nullptr;
}
|