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
|
/* This file is part of the KDE project
* Copyright (C) 2010 Thomas Zander <zander@kde.org>
* Copyright (C) 2010 KO GmbH <boud@kogbmh.com>
* Copyright (C) 2010 Thorsten Zachmann <zachmann@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.
*/
#ifndef KOTOSCONTAINER_H
#define KOTOSCONTAINER_H
#include "KoShapeContainer.h"
#include "flake_export.h"
class KoTosContainerPrivate;
class KoDocumentResourceManager;
/**
* Container that is used to wrap a shape with a text on top.
* Path shapes inherit from this class to make it possible to have text associated
* with them.
*/
class FLAKE_EXPORT KoTosContainer : public KoShapeContainer
{
public:
KoTosContainer();
virtual ~KoTosContainer();
// reimplemented
virtual void paintComponent(QPainter &painter, const KoViewConverter &converter, KoShapePaintingContext &paintcontext);
// reimplemented
virtual bool loadText(const KoXmlElement &element, KoShapeLoadingContext &context);
// reimplemented
virtual void saveText(KoShapeSavingContext &context) const;
/// different kinds of resizing behavior to determine how to treat text overflow
enum ResizeBehavior {
TextFollowsSize, ///< Text area is same size as content, extra text will be clipped
FollowTextSize, ///< Content shape will get resized if text grows/shrinks
IndependentSizes, ///< The text can get bigger than the content
TextFollowsPreferredTextRect ///< The size/position of the text area will follow the preferredTextRect property
};
/**
* Set the behavior that is used to resize the text or content.
* In order to determine what to do when there is too much text to fit or suddenly less
* text the user can define the wanted behavior using the ResizeBehavior
* @param resizeBehavior the new ResizeBehavior
*/
void setResizeBehavior(ResizeBehavior resizeBehavior);
/**
* Returns the current ResizeBehavior.
*/
ResizeBehavior resizeBehavior() const;
/** Sets the alignment of the text. */
void setTextAlignment(Qt::Alignment alignment);
/** Returns the alignment of all text */
Qt::Alignment textAlignment() const;
/**
* Set some plain text to be displayed on the shape.
* @param text the full text.
*/
void setPlainText(const QString &text);
/**
* Add text the current shape with the specified document resource manager.
*
* @param documentResources
* @return The created text shape or 0 in case it failed
*/
KoShape *createTextShape(KoDocumentResourceManager *documentResources = 0);
virtual void setRunThrough(short int runThrough);
protected:
/// constructor
KoTosContainer(KoTosContainerPrivate &);
/**
* Set the current prefered text rectangle. This rect contains the coordinates of
* the embedded text shape relative to the content shape. This value is ignored if
* resizeBehavior is not TextFollowsPreferredTextRect.
* @param rect the new preferred text rectangle
*/
void setPreferredTextRect(const QRectF &rect);
/**
* Returns the current prefered text rectangle.
*/
QRectF preferredTextRect() const;
/**
* Returns the text shape
*
* @returns textshape if set or 0 in case it is not yet set
*/
KoShape *textShape() const;
virtual void shapeChanged(ChangeType type, KoShape *shape = 0);
private:
Q_DECLARE_PRIVATE(KoTosContainer)
};
#endif
|