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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
/* This file is part of the KDE project
Copyright (C) 2006 Thorsten Zachmann <zachmann@kde.org>
Copyright (C) 2006-2007 Thomas Zander <zander@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "ShapeMoveStrategy.h"
#include "SelectionDecorator.h"
#include <KoCanvasBase.h>
#include <KoShapeManager.h>
#include <KoShapeContainer.h>
#include <KoShapeContainerModel.h>
#include <KoResourceManager.h>
#include <commands/KoShapeMoveCommand.h>
#include <KoSnapGuide.h>
#include <KoPointerEvent.h>
#include <KoToolBase.h>
#include <KLocale>
ShapeMoveStrategy::ShapeMoveStrategy(KoToolBase *tool, const QPointF &clicked)
: KoInteractionStrategy(tool),
m_start(clicked)
{
QList<KoShape*> selectedShapes = tool->canvas()->shapeManager()->selection()->selectedShapes(KoFlake::TopLevelSelection);
QRectF boundingRect;
foreach(KoShape *shape, selectedShapes) {
if( ! shape->isEditable() )
continue;
m_selectedShapes << shape;
m_previousPositions << shape->position();
m_newPositions << shape->position();
boundingRect = boundingRect.unite( shape->boundingRect() );
}
KoSelection * selection = tool->canvas()->shapeManager()->selection();
m_initialOffset = selection->absolutePosition( SelectionDecorator::hotPosition() ) - m_start;
m_initialSelectionPosition = selection->position();
tool->canvas()->snapGuide()->setIgnoredShapes( selection->selectedShapes( KoFlake::FullSelection ) );
tool->setStatusText( i18n("Press ALT to hold x- or y-position.") );
}
void ShapeMoveStrategy::handleMouseMove(const QPointF &point, Qt::KeyboardModifiers modifiers)
{
if(m_selectedShapes.isEmpty())
return;
QPointF diff = point - m_start;
if(modifiers & (Qt::AltModifier | Qt::ControlModifier)) {
// keep x or y position unchanged
if(qAbs(diff.x()) < qAbs(diff.y()))
diff.setX(0);
else
diff.setY(0);
}
else
{
QPointF positionToSnap = point + m_initialOffset;
tool()->canvas()->updateCanvas( tool()->canvas()->snapGuide()->boundingRect() );
QPointF snappedPosition = tool()->canvas()->snapGuide()->snap( positionToSnap, modifiers );
tool()->canvas()->updateCanvas( tool()->canvas()->snapGuide()->boundingRect() );
diff = snappedPosition - m_initialOffset - m_start;
}
m_diff = diff;
moveBy( diff );
}
void ShapeMoveStrategy::handleCustomEvent( KoPointerEvent * event )
{
QPointF diff = tool()->canvas()->viewConverter()->viewToDocument( event->pos() );
if( event->modifiers() & (Qt::AltModifier | Qt::ControlModifier)) {
// keep x or y position unchanged
if(qAbs(diff.x()) < qAbs(diff.y()))
diff.setX(0);
else
diff.setY(0);
}
m_diff += 0.1 * diff ;
moveBy( diff );
}
void ShapeMoveStrategy::moveBy( const QPointF &diff )
{
Q_UNUSED(diff);
Q_ASSERT(m_newPositions.count());
int i=0;
foreach(KoShape *shape, m_selectedShapes) {
QPointF delta = m_previousPositions.at(i) + m_diff - shape->position();
if(shape->parent())
shape->parent()->model()->proposeMove(shape, delta);
tool()->canvas()->clipToDocument(shape, delta);
QPointF newPos (shape->position() + delta);
m_newPositions[i] = newPos;
shape->update();
shape->setPosition(newPos);
shape->update();
i++;
}
tool()->canvas()->shapeManager()->selection()->setPosition(m_initialSelectionPosition + m_diff);
}
QUndoCommand* ShapeMoveStrategy::createCommand()
{
tool()->canvas()->snapGuide()->reset();
if(m_diff.x() == 0 && m_diff.y() == 0)
return 0;
return new KoShapeMoveCommand(m_selectedShapes, m_previousPositions, m_newPositions);
}
void ShapeMoveStrategy::paint( QPainter &painter, const KoViewConverter &converter)
{
SelectionDecorator decorator (KoFlake::NoHandle, false, false);
decorator.setSelection(tool()->canvas()->shapeManager()->selection());
decorator.setHandleRadius( tool()->canvas()->resourceManager()->handleRadius() );
decorator.paint(painter, converter);
}
|