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
|
/* This file is part of the KDE project
* Copyright (C) 2006 Thomas Zander <zander@kde.org>
* Copyright (C) 2007 Jan Hambrecht <jaham@gmx.net>
*
* 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 "KoShapeGroup.h"
#include "KoShapeContainerModel.h"
#include "KoShapeContainer_p.h"
#include "KoShapeLayer.h"
#include "SimpleShapeContainerModel.h"
#include "KoShapeSavingContext.h"
#include "KoShapeLoadingContext.h"
#include "KoXmlWriter.h"
#include "KoXmlReader.h"
#include "KoShapeRegistry.h"
#include "KoShapeBorderModel.h"
#include "KoShapeShadow.h"
#include <QPainter>
class ShapeGroupContainerModel : public SimpleShapeContainerModel
{
public:
ShapeGroupContainerModel(KoShapeGroup *group) : m_group(group) {}
~ShapeGroupContainerModel() {}
virtual void add(KoShape *child)
{
SimpleShapeContainerModel::add(child);
m_group->invalidateSizeCache();
}
virtual void remove(KoShape *child)
{
SimpleShapeContainerModel::remove(child);
m_group->invalidateSizeCache();
}
virtual void childChanged(KoShape *shape, KoShape::ChangeType type)
{
SimpleShapeContainerModel::childChanged(shape, type);
//kDebug(30006) << type;
switch (type) {
case KoShape::PositionChanged:
case KoShape::RotationChanged:
case KoShape::ScaleChanged:
case KoShape::ShearChanged:
case KoShape::SizeChanged:
case KoShape::GenericMatrixChange:
case KoShape::ParameterChanged:
case KoShape::ClipPathChanged :
m_group->invalidateSizeCache();
break;
default:
break;
}
}
private: // members
KoShapeGroup * m_group;
};
class KoShapeGroupPrivate : public KoShapeContainerPrivate
{
public:
KoShapeGroupPrivate(KoShapeGroup *q)
: KoShapeContainerPrivate(q)
{
model = new ShapeGroupContainerModel(q);
}
~KoShapeGroupPrivate()
{
}
mutable bool sizeCached;
};
KoShapeGroup::KoShapeGroup()
: KoShapeContainer(*(new KoShapeGroupPrivate(this)))
{
setSize(QSizeF(0, 0));
}
KoShapeGroup::~KoShapeGroup()
{
}
void KoShapeGroup::paintComponent(QPainter &painter, const KoViewConverter &converter, KoShapePaintingContext &)
{
Q_UNUSED(painter);
Q_UNUSED(converter);
}
bool KoShapeGroup::hitTest(const QPointF &position) const
{
Q_UNUSED(position);
return false;
}
QSizeF KoShapeGroup::size() const
{
Q_D(const KoShapeGroup);
//kDebug(30006) << "size" << d->size;
if (!d->sizeCached) {
QRectF bound;
foreach(KoShape *shape, shapes()) {
if (bound.isEmpty())
bound = shape->transformation().mapRect(shape->outlineRect());
else
bound |= shape->transformation().mapRect(shape->outlineRect());
}
d->size = bound.size();
d->sizeCached = true;
kDebug(30006) << "recalculated size" << d->size;
}
return d->size;
}
QRectF KoShapeGroup::boundingRect() const
{
bool first = true;
QRectF groupBound;
QList<KoShape*> shapes = this->shapes();
QList<KoShape*>::const_iterator it = shapes.constBegin();
for (; it != shapes.constEnd(); ++it) {
const QTransform shapeTransform = (*it)->absoluteTransformation(0);
const QRectF shapeRect(QRectF(QPointF(), (*it)->boundingRect().size()));
if (first) {
groupBound = shapeTransform.mapRect(shapeRect);
first = false;
} else {
groupBound = groupBound.united(shapeTransform.mapRect(shapeRect));
}
}
if (this->shadow()) {
KoInsets insets;
this->shadow()->insets(insets);
groupBound.adjust(-insets.left, -insets.top, insets.right, insets.bottom);
}
return groupBound;
}
void KoShapeGroup::saveOdf(KoShapeSavingContext & context) const
{
context.xmlWriter().startElement("draw:g");
saveOdfAttributes(context, (OdfMandatories ^ (OdfLayer | OdfZIndex)) | OdfAdditionalAttributes);
context.xmlWriter().addAttributePt("svg:y", position().y());
QList<KoShape*> shapes = this->shapes();
qSort(shapes.begin(), shapes.end(), KoShape::compareShapeZIndex);
foreach(KoShape* shape, shapes) {
shape->saveOdf(context);
}
saveOdfCommonChildElements(context);
context.xmlWriter().endElement();
}
bool KoShapeGroup::loadOdf(const KoXmlElement & element, KoShapeLoadingContext &context)
{
Q_D(KoShapeGroup);
loadOdfAttributes(element, context, OdfMandatories | OdfStyle | OdfAdditionalAttributes | OdfCommonChildElements);
KoXmlElement child;
QMap<KoShapeLayer*, int> usedLayers;
forEachElement(child, element) {
KoShape * shape = KoShapeRegistry::instance()->createShapeFromOdf(child, context);
if (shape) {
KoShapeLayer *layer = dynamic_cast<KoShapeLayer*>(shape->parent());
if (layer) {
usedLayers[layer]++;
}
addShape(shape);
}
}
KoShapeLayer *parent = 0;
int maxUseCount = 0;
// find most used layer and use this as parent for the group
for (QMap<KoShapeLayer*, int>::const_iterator it(usedLayers.constBegin()); it != usedLayers.constEnd(); ++it) {
if (it.value() > maxUseCount) {
maxUseCount = it.value();
parent = it.key();
}
}
setParent(parent);
QRectF bound;
bool boundInitialized = false;
foreach(KoShape * shape, shapes()) {
if (! boundInitialized) {
bound = shape->boundingRect();
boundInitialized = true;
} else
bound = bound.united(shape->boundingRect());
}
setSize(bound.size());
d->sizeCached = true;
setPosition(bound.topLeft());
foreach(KoShape * shape, shapes())
shape->setAbsolutePosition(shape->absolutePosition() - bound.topLeft());
return true;
}
void KoShapeGroup::shapeChanged(ChangeType type, KoShape *shape)
{
Q_UNUSED(shape);
KoShapeContainer::shapeChanged(type, shape);
switch (type) {
case KoShape::BorderChanged:
{
KoShapeBorderModel *stroke = border();
if (stroke) {
if (stroke->deref())
delete stroke;
setBorder(0);
}
break;
}
default:
break;
}
}
void KoShapeGroup::invalidateSizeCache()
{
Q_D(KoShapeGroup);
d->sizeCached = false;
}
|