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 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
|
/* This file is part of the KDE project
* Copyright (C) 2007 Martin Pfeiffer <hubipete@gmx.net>
* Copyright (C) 2007 Jan Hambrecht <jaham@gmx.net>
Copyright (C) 2008 Thorsten Zachmann <zachmann@kde.org>
* Copyright (C) 2010 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 "DefaultToolWidget.h"
#include "DefaultTool.h"
#include <KoInteractionTool.h>
#include <KoCanvasBase.h>
#include <KoCanvasResourceManager.h>
#include <KoShapeManager.h>
#include <KoSelection.h>
#include <KoUnit.h>
#include <commands/KoShapeMoveCommand.h>
#include <commands/KoShapeSizeCommand.h>
#include <commands/KoShapeTransformCommand.h>
#include <KoPositionSelector.h>
#include "SelectionDecorator.h"
#include "DefaultToolTransformWidget.h"
#include <QAction>
#include <QSize>
#include <QRadioButton>
#include <QLabel>
#include <QCheckBox>
#include <QDoubleSpinBox>
#include <QList>
#include <QTransform>
DefaultToolWidget::DefaultToolWidget( KoInteractionTool* tool,
QWidget* parent )
: QWidget( parent ),
m_tool(tool),
m_blockSignals(false)
{
setupUi( this );
setUnit( m_tool->canvas()->unit() );
aspectButton->setKeepAspectRatio( false );
updatePosition();
updateSize();
connect( positionSelector, SIGNAL(positionSelected(KoFlake::Position)),
this, SLOT(positionSelected(KoFlake::Position)) );
connect( positionXSpinBox, SIGNAL(editingFinished()), this, SLOT(positionHasChanged()) );
connect( positionYSpinBox, SIGNAL(editingFinished()), this, SLOT(positionHasChanged()) );
connect( widthSpinBox, SIGNAL(editingFinished()), this, SLOT(sizeHasChanged()) );
connect( heightSpinBox, SIGNAL(editingFinished()), this, SLOT(sizeHasChanged()) );
KoSelection * selection = m_tool->canvas()->shapeManager()->selection();
connect( selection, SIGNAL(selectionChanged()), this, SLOT(updatePosition()) );
connect( selection, SIGNAL(selectionChanged()), this, SLOT(updateSize()) );
KoShapeManager * manager = m_tool->canvas()->shapeManager();
connect( manager, SIGNAL(selectionContentChanged()), this, SLOT(updatePosition()) );
connect( manager, SIGNAL(selectionContentChanged()), this, SLOT(updateSize()) );
connect( m_tool->canvas()->resourceManager(), SIGNAL(canvasResourceChanged(int,QVariant)),
this, SLOT(resourceChanged(int,QVariant)) );
connect (aspectButton, SIGNAL(keepAspectRatioChanged(bool)),
this, SLOT(aspectButtonToggled(bool)));
}
void DefaultToolWidget::positionSelected( KoFlake::Position position )
{
m_tool->canvas()->resourceManager()->setResource( DefaultTool::HotPosition, QVariant(position) );
updatePosition();
}
void DefaultToolWidget::updatePosition()
{
QPointF selPosition( 0, 0 );
KoFlake::Position position = positionSelector->position();
KoSelection * selection = m_tool->canvas()->shapeManager()->selection();
if( selection->count() )
selPosition = selection->absolutePosition( position );
positionXSpinBox->setEnabled( selection->count() );
positionYSpinBox->setEnabled( selection->count() );
if (m_blockSignals)
return;
m_blockSignals = true;
positionXSpinBox->changeValue( selPosition.x() );
positionYSpinBox->changeValue( selPosition.y() );
QList<KoShape*> selectedShapes = selection->selectedShapes( KoFlake::TopLevelSelection );
bool aspectLocked = false;
foreach (KoShape* shape, selectedShapes)
aspectLocked = aspectLocked | shape->keepAspectRatio();
aspectButton->setKeepAspectRatio(aspectLocked);
m_blockSignals = false;
}
void DefaultToolWidget::positionHasChanged()
{
KoSelection * selection = m_tool->canvas()->shapeManager()->selection();
if( ! selection->count() )
return;
KoFlake::Position position = positionSelector->position();
QPointF newPos( positionXSpinBox->value(), positionYSpinBox->value() );
QPointF oldPos = selection->absolutePosition( position );
if( oldPos == newPos )
return;
QList<KoShape*> selectedShapes = selection->selectedShapes( KoFlake::TopLevelSelection );
QPointF moveBy = newPos - oldPos;
QVector<QPointF> oldPositions;
QVector<QPointF> newPositions;
const int selectedShapesCount = selectedShapes.count();
oldPositions.reserve(selectedShapesCount);
newPositions.reserve(selectedShapesCount);
foreach( KoShape* shape, selectedShapes )
{
oldPositions.append( shape->position() );
newPositions.append( shape->position() + moveBy );
}
selection->setPosition( selection->position() + moveBy );
m_tool->canvas()->addCommand( new KoShapeMoveCommand( selectedShapes, oldPositions, newPositions ) );
updatePosition();
}
void DefaultToolWidget::updateSize()
{
QSizeF selSize( 0, 0 );
KoSelection * selection = m_tool->canvas()->shapeManager()->selection();
uint selectionCount = selection->count();
if( selectionCount )
selSize = selection->boundingRect().size();
widthSpinBox->setEnabled( selectionCount );
heightSpinBox->setEnabled( selectionCount );
if (m_blockSignals)
return;
m_blockSignals = true;
widthSpinBox->changeValue( selSize.width() );
heightSpinBox->changeValue( selSize.height() );
m_blockSignals = false;
}
void DefaultToolWidget::sizeHasChanged()
{
if (aspectButton->hasFocus())
return;
if (m_blockSignals)
return;
QSizeF newSize( widthSpinBox->value(), heightSpinBox->value() );
KoSelection *selection = m_tool->canvas()->shapeManager()->selection();
QRectF rect = selection->boundingRect();
if( aspectButton->keepAspectRatio() )
{
qreal aspect = rect.width() / rect.height();
if( rect.width() != newSize.width() )
newSize.setHeight( newSize.width() / aspect );
else if( rect.height() != newSize.height() )
newSize.setWidth( newSize.height() * aspect );
}
if( rect.width() != newSize.width() || rect.height() != newSize.height() )
{
// get the scale/resize center from the position selector
QPointF scaleCenter = selection->absolutePosition( positionSelector->position() );
QTransform resizeMatrix;
resizeMatrix.translate( scaleCenter.x(), scaleCenter.y() );
// make sure not to divide by 0 in case the selection is a line and has no width. In this case just scale by 1.
resizeMatrix.scale( rect.width() ? newSize.width() / rect.width() : 1, rect.height() ? newSize.height() / rect.height() : 1);
resizeMatrix.translate( -scaleCenter.x(), -scaleCenter.y() );
QList<KoShape*> selectedShapes = selection->selectedShapes( KoFlake::StrippedSelection );
QVector<QSizeF> oldSizes, newSizes;
QVector<QTransform> oldState;
QVector<QTransform> newState;
const int selectedShapesCount = selectedShapes.count();
oldSizes.reserve(selectedShapesCount);
newSizes.reserve(selectedShapesCount);
oldState.reserve(selectedShapesCount);
newState.reserve(selectedShapesCount);
foreach( KoShape* shape, selectedShapes )
{
shape->update();
QSizeF oldSize = shape->size();
oldState << shape->transformation();
QTransform shapeMatrix = shape->absoluteTransformation(0);
// calculate the matrix we would apply to the local shape matrix
// that tells us the effective scale values we have to use for the resizing
QTransform localMatrix = shapeMatrix * resizeMatrix * shapeMatrix.inverted();
// save the effective scale values, without any mirroring portion
const qreal scaleX = qAbs(localMatrix.m11());
const qreal scaleY = qAbs(localMatrix.m22());
// calculate the scale matrix which is equivalent to our resizing above
QTransform scaleMatrix = (QTransform().scale( scaleX, scaleY ));
scaleMatrix = shapeMatrix.inverted() * scaleMatrix * shapeMatrix;
// calculate the new size of the shape, using the effective scale values
oldSizes << oldSize;
QSizeF newSize = QSizeF( scaleX * oldSize.width(), scaleY * oldSize.height() );
newSizes << newSize;
shape->setSize( newSize );
// apply the rest of the transformation without the resizing part
shape->applyAbsoluteTransformation( scaleMatrix.inverted() * resizeMatrix );
newState << shape->transformation();
}
m_tool->repaintDecorations();
selection->applyAbsoluteTransformation( resizeMatrix );
KUndo2Command * cmd = new KUndo2Command(kundo2_i18n("Resize"));
new KoShapeSizeCommand( selectedShapes, oldSizes, newSizes, cmd );
new KoShapeTransformCommand( selectedShapes, oldState, newState, cmd );
m_tool->canvas()->addCommand( cmd );
updateSize();
updatePosition();
}
}
void DefaultToolWidget::setUnit( const KoUnit &unit )
{
m_blockSignals = true;
positionXSpinBox->setUnit( unit );
positionYSpinBox->setUnit( unit );
widthSpinBox->setUnit( unit );
heightSpinBox->setUnit( unit );
m_blockSignals = false;
updatePosition();
updateSize();
}
void DefaultToolWidget::resourceChanged( int key, const QVariant & res )
{
if( key == KoCanvasResourceManager::Unit )
setUnit(res.value<KoUnit>());
else if( key == DefaultTool::HotPosition )
{
if( res.toInt() != positionSelector->position() )
{
positionSelector->setPosition( static_cast<KoFlake::Position>( res.toInt() ) );
updatePosition();
}
}
}
void DefaultToolWidget::aspectButtonToggled(bool keepAspect)
{
if (m_blockSignals)
return;
KoSelection * selection = m_tool->canvas()->shapeManager()->selection();
foreach (KoShape *shape, selection->selectedShapes(KoFlake::TopLevelSelection)) {
shape->setKeepAspectRatio(keepAspect);
}
}
|