// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only #ifndef QSVGHANDLER_P_H #define QSVGHANDLER_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include "QtCore/qxmlstream.h" #include "QtCore/qhash.h" #include "QtCore/qstack.h" #include #include "qsvgstyle_p.h" #if QT_CONFIG(cssparser) #include "private/qcssparser_p.h" #endif #include "qsvggraphics_p.h" #include "qtsvgglobal_p.h" QT_BEGIN_NAMESPACE class QSvgNode; class QSvgTinyDocument; class QSvgHandler; class QColor; class QSvgStyleSelector; #ifndef QT_NO_CSSPARSER struct QSvgCssAttribute { QString name; QString value; }; #endif class Q_SVG_EXPORT QSvgHandler { public: enum LengthType { LT_PERCENT, LT_PX, LT_PC, LT_PT, LT_MM, LT_CM, LT_IN, LT_OTHER }; public: QSvgHandler(QIODevice *device, QtSvg::Options options = {}); QSvgHandler(const QByteArray &data, QtSvg::Options options = {}); QSvgHandler(QXmlStreamReader *const data, QtSvg::Options options = {}); ~QSvgHandler(); QIODevice *device() const; QSvgTinyDocument *document() const; inline bool ok() const { return document() != 0 && !xml->hasError(); } inline QString errorString() const { return xml->errorString(); } inline int lineNumber() const { return xml->lineNumber(); } void setDefaultCoordinateSystem(LengthType type); LengthType defaultCoordinateSystem() const; void pushColor(const QColor &color); void pushColorCopy(); void popColor(); QColor currentColor() const; #ifndef QT_NO_CSSPARSER void setInStyle(bool b); bool inStyle() const; QSvgStyleSelector *selector() const; #endif void setAnimPeriod(int start, int end); int animationDuration() const; #ifndef QT_NO_CSSPARSER void parseCSStoXMLAttrs(const QString &css, QList *attributes); #endif inline QPen defaultPen() const { return m_defaultPen; } QtSvg::Options options() const; bool trustedSourceMode() const; public: bool startElement(const QString &localName, const QXmlStreamAttributes &attributes); bool endElement(QStringView localName); bool characters(QStringView str); bool processingInstruction(const QString &target, const QString &data); private: void init(); QSvgTinyDocument *m_doc; QStack m_nodes; // TODO: This is only needed during parsing, so it unnecessarily takes up space after that. // Temporary container for : // - nodes which haven't been resolved yet. // - nodes to be checked for unsupported filter primitives. QList m_toBeResolved; enum CurrentNode { Unknown, Graphics, Style, Doc }; QStack m_skipNodes; /*! Follows the depths of elements. The top is current xml:space value that applies for a given element. */ QStack m_whitespaceMode; QSvgRefCounter m_style; LengthType m_defaultCoords; QStack m_colorStack; QStack m_colorTagCount; int m_animEnd; QXmlStreamReader *const xml; #ifndef QT_NO_CSSPARSER bool m_inStyle; QSvgStyleSelector *m_selector; QCss::Parser m_cssParser; #endif void parse(); void resolvePaintServers(QSvgNode *node, int nestedDepth = 0); void resolveNodes(); QPen m_defaultPen; /** * Whether we own the variable xml, and hence whether * we need to delete it. */ const bool m_ownsReader; const QtSvg::Options m_options; }; Q_DECLARE_LOGGING_CATEGORY(lcSvgHandler) QT_END_NAMESPACE #endif // QSVGHANDLER_P_H