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
|
/* This file is part of the KDE project
* Copyright (C) 2009 Thomas Zander <zander@kde.org>
* Copyright (C) 2010 Boudewijn Rempt <boud@kogmbh.com>
*
* 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.
*/
#ifndef KOSHAPEPRIVATE_H
#define KOSHAPEPRIVATE_H
#include "KoShape.h"
#include <QPoint>
#include <QPaintDevice>
#include <KoCanvasBase.h>
class KoShapePrivate
{
public:
KoShapePrivate(KoShape *shape);
virtual ~KoShapePrivate();
/**
* Notify the shape that a change was done. To be used by inheriting shapes.
* @param type the change type
*/
void shapeChanged(KoShape::ChangeType type);
void addShapeManager(KoShapeManager *manager);
void removeShapeManager(KoShapeManager *manager);
/**
* Fills the style stack and returns the value of the given style property (e.g fill, stroke).
*/
static QString getStyleProperty(const char *property, KoShapeLoadingContext &context);
/// Loads the shadow style
KoShapeShadow *loadOdfShadow(KoShapeLoadingContext &context) const;
/// calls update on the shape where the border is.
void updateBorder();
mutable QSizeF size; // size in pt
QString shapeId;
QString name; ///< the shapes names
QTransform localMatrix; ///< the shapes local transformation matrix
KoConnectionPoints connectors; ///< glue point id to data mapping
KoShapeContainer *parent;
QSet<KoShapeManager *> shapeManagers;
QSet<KoShape *> toolDelegates;
KoShapeUserData *userData;
KoShapeApplicationData *appData;
KoShapeBackground * fill; ///< Stands for the background color / fill etc.
KoShapeBorderModel *border; ///< points to a border, or 0 if there is no border
KoShape *q_ptr;
QList<KoShape*> dependees; ///< list of shape dependent on this shape
KoShapeShadow * shadow; ///< the current shape shadow
KoClipPath * clipPath; ///< the current clip path
QMap<QString, QString> additionalAttributes;
QMap<QByteArray, QString> additionalStyleAttributes;
QSet<KoEventAction *> eventActions; ///< list of event actions the shape has
KoFilterEffectStack *filterEffectStack; ///< stack of filter effects applied to the shape
qreal transparency; ///< the shapes transparency
QString hyperLink; //hyperlink for this shape
static const int MaxZIndex = 32767;
int zIndex : 16; // keep maxZIndex in sync!
int runThrough : 16;
int visible : 1;
int printable : 1;
int geometryProtected : 1;
int keepAspect : 1;
int selectable : 1;
int detectCollision : 1;
int protectContent : 1;
KoShape::TextRunAroundSide textRunAroundSide;
qreal textRunAroundDistance;
qreal textRunAroundThreshold;
/// Convert connection point position from shape coordinates, taking alignment into account
void convertFromShapeCoordinates(KoConnectionPoint &point, const QSizeF &shapeSize) const;
/// Convert connection point position to shape coordinates, taking alignment into account
void convertToShapeCoordinates(KoConnectionPoint &point, const QSizeF &shapeSize) const;
Q_DECLARE_PUBLIC(KoShape)
};
#endif
|