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
|
/* This file is part of the KDE project
* Copyright (C) 2006-2009 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.
*/
#ifndef KOINLINEOBJECTBASE_H
#define KOINLINEOBJECTBASE_H
#include "kotext_export.h"
#include <KoXmlReaderForward.h>
#include <QObject>
#include <QTextInlineObject>
class QVariant;
class QTextDocument;
class QTextCharFormat;
class QPaintDevice;
class QPainter;
class QRectF;
class KoInlineTextObjectManager;
class KoInlineObjectPrivate;
class KoShapeSavingContext;
class KoTextInlineRdf;
class KoShapeLoadingContext;
/**
* Base class for all inline-text-objects.
*
* In a TextShape you can insert objects that move with the text.
* They are essentially anchored to a specific position in the text, as
* one character.
*
* @see KoInlineTextObjectManager
*/
class KOTEXT_EXPORT KoInlineObject : public QObject
{
Q_OBJECT
public:
enum Property {
DocumentURL,
PageCount,
AuthorName,
SenderEmail,
SenderCompany,
SenderPhoneWork,
SenderPhonePrivate,
SenderFax,
SenderCountry,
Title,
Keywords,
Subject,
Description,
Comments,
SenderPostalCode,
SenderCity,
SenderStreet,
SenderTitle,
SenderFirstname,
SenderLastname,
SenderPosition,
AuthorInitials,
Chapter, ///< Chapter (number, name, number and name, plain number, plain number and name) variables.
KarbonStart = 1000, ///< Base number for Karbon specific values.
KexiStart = 2000, ///< Base number for Kexi specific values.
FlowStart = 3000, ///< Base number for Flow specific values.
PlanStart = 4000, ///< Base number for Plan specific values.
StageStart = 5000, ///< Base number for Stage specific values.
WordsStart = 6000, ///< Base number for Words specific values.
VariableManagerStart = 7000, ///< Start of numbers reserved for the KoVariableManager
UserGet = 12000, ///< User defined variable user-field-get
UserInput = 12001 ///< User defined variable user-field-input
};
/**
* constructor
* @param propertyChangeListener if set to true this instance will be notified of changes of properties.
* @see KoInlineTextObjectManager::setProperty()
* @see propertyChangeListener()
*/
explicit KoInlineObject(bool propertyChangeListener = false);
~KoInlineObject() override;
/**
* Will be called by the manager when this variable is added.
* Remember that inheriting classes should not use the manager() in the constructor, since it will be 0
* @param manager the object manager for this object.
*/
void setManager(KoInlineTextObjectManager *manager);
/**
* Return the object manager set on this inline object.
*/
KoInlineTextObjectManager *manager() const;
/**
* Just prior to the first time this object will be shown this method will be called.
* The object plugin should reimplement this to initialize the object after the manager
* has been set, but before the text has been layouted.
* The default implementation does nothing.
*/
virtual void setup() {}
/**
* Save this inlineObject as ODF
* @param context the context for saving.
*/
virtual void saveOdf(KoShapeSavingContext &context) = 0;
/**
* Update position of the inline object.
* This is called each time the paragraph this inline object is in is re-layouted giving you the opportunity
* to reposition your object based on the new information.
* @param document the text document this inline object is operating on.
* @param posInDocument the character position in the document (param document) this inline object is at.
* @param format the character format for the inline object.
*/
virtual void updatePosition(const QTextDocument *document, int posInDocument, const QTextCharFormat &format) = 0;
/**
* Update the size of the inline object.
* Each time the text is painted, as well as when the paragraph this variable is in, this method
* is called. You should alter the size of the object if the content has changed.
* Altering the size is done by altering the 'object' parameter using QTextInlineObject::setWidth(),
* QTextInlineObject::setAscent() and QTextInlineObject::setDescent() methods.
* Note that this method is called while painting; and thus is time sensitive; avoid doing anything time
* consuming.
* Note make sure that the width is 0 when there is nothing to be shown for the object.
* @param document the text document this inline object is operating on.
* @param object the inline object properties
* @param posInDocument the character position in the document (param document) this inline object is at.
* @param format the character format for the inline object.
* @param pd the postscript-paintdevice that all text is rendered on. Use this for QFont and related
* classes so the inline object can be reused on any paintdevice.
*/
virtual void resize(const QTextDocument *document, QTextInlineObject &object,
int posInDocument, const QTextCharFormat &format, QPaintDevice *pd) = 0;
/**
* Paint the inline-object-base using the provided painter within the rectangle specified by rect.
* @param document the text document this inline object is operating on.
* @param object the inline object properties
* @param posInDocument the character position in the document (param document) this inline object is at.
* @param format the character format for the inline object.
* @param pd the postscript-paintdevice that all text is rendered on. Use this for QFont and related
* classes so the inline object can be reused on any paintdevice.
* @param painter the painting object to paint on. Note that unline many places in calligra painting
* should happen at the position indicated by the rect, not at top-left.
* @param rect the rectangle inside which the variable can paint itself. Painting outside the rect
* will give various problems with regards to repainting issues.
*/
virtual void paint(QPainter &painter, QPaintDevice *pd, const QTextDocument *document,
const QRectF &rect, const QTextInlineObject &object, int posInDocument, const QTextCharFormat &format) = 0;
/**
* Overwrite this if you are interested in propertychanges.
* @param property the property id that has been changed, one from the Property enum.
* You should ignore all properties you don't use as new properties can be added at any time.
* @param value the new value of the property wrapped in a QVariant. Properties can be a lot of
* different class types. Ints, bools, QStrings etc.
* example:
* @code
* void KoDateVariable::propertyChanged(Property key, const QVariant &value) {
* if(key == KoInlineObject::PageCount)
* setValue(QString::number(value.toInt()));
* }
* @endcode
* @see propertyChangeListener()
*/
virtual void propertyChanged(Property property, const QVariant &value);
/// return the inline-object Id that is assigned for this object.
int id() const;
/// Set the inline-object Id that is assigned for this object by the KoInlineTextObjectManager.
void setId(int id);
/**
* When true, notify this object of property changes.
* Each inlineObject can use properties like the PageCount or the document name.
* Only objects that actually have a need for such information be a listener to avoid unneeded
* overhead.
* When this returns true, the propertyChanged() method will be called.
* @see KoInlineTextObjectManager::setProperty()
*/
bool propertyChangeListener() const;
/**
* An inline object might have some Rdf metadata associated with it
* in content.xml
* Ownership of the rdf object is taken by this object, you should not
* delete it.
*/
void setInlineRdf(KoTextInlineRdf *rdf);
/**
* Get any Rdf which was stored in content.xml for this inline object
* This object continues to own the object, do not delete it.
*/
KoTextInlineRdf *inlineRdf() const;
/**
* Load a variable from odf.
*
* @param element element which represents the shape in odf
* @param context the KoShapeLoadingContext used for loading
*
* @return false if loading failed
*/
virtual bool loadOdf(const KoXmlElement &element, KoShapeLoadingContext &context) = 0;
protected:
explicit KoInlineObject(KoInlineObjectPrivate &, bool propertyChangeListener = false);
KoInlineObjectPrivate *d_ptr;
private:
Q_DECLARE_PRIVATE(KoInlineObject)
friend KOTEXT_EXPORT QDebug operator<<(QDebug, const KoInlineObject *);
};
KOTEXT_EXPORT QDebug operator<<(QDebug dbg, const KoInlineObject *o);
#endif
|