/**************************************************************************** ** ** Copyright (C) 2014 BogDan Vatra ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Build Suite. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #ifndef DOMXML_H #define DOMXML_H #include #include #include #include #include #include namespace qbs { namespace Internal { class XmlDomDocument; void initializeJsExtensionXml(QScriptValue extensionObject); class XmlDomNode: public QObject, public QScriptable { Q_OBJECT public: static QScriptValue ctor(QScriptContext *context, QScriptEngine *engine); Q_INVOKABLE bool isElement() const; Q_INVOKABLE bool isCDATASection() const; Q_INVOKABLE bool isText() const; Q_INVOKABLE QString attribute(const QString & name, const QString & defValue = QString()); Q_INVOKABLE void setAttribute(const QString & name, const QString & value); Q_INVOKABLE bool hasAttribute(const QString & name) const; Q_INVOKABLE QString tagName() const; Q_INVOKABLE void setTagName(const QString & name); Q_INVOKABLE QString text() const; Q_INVOKABLE QString data() const; Q_INVOKABLE void setData(const QString &v) const; Q_INVOKABLE void clear(); Q_INVOKABLE bool hasAttributes() const; Q_INVOKABLE bool hasChildNodes() const; Q_INVOKABLE QScriptValue parentNode() const; Q_INVOKABLE QScriptValue firstChild(const QString & tagName = QString()); Q_INVOKABLE QScriptValue lastChild(const QString & tagName = QString()) const; Q_INVOKABLE QScriptValue previousSibling(const QString & tagName = QString()) const; Q_INVOKABLE QScriptValue nextSibling(const QString & tagName = QString()) const; Q_INVOKABLE QScriptValue appendChild(QScriptValue newChild); Q_INVOKABLE QScriptValue insertBefore(const QScriptValue& newChild, const QScriptValue& refChild); Q_INVOKABLE QScriptValue insertAfter(const QScriptValue& newChild, const QScriptValue& refChild); Q_INVOKABLE QScriptValue replaceChild(const QScriptValue& newChild, const QScriptValue& oldChild); Q_INVOKABLE QScriptValue removeChild(const QScriptValue& oldChild); protected: friend class XmlDomDocument; XmlDomNode(const QDomNode &other = QDomNode()); QDomNode m_domNode; }; class XmlDomDocument: public XmlDomNode { Q_OBJECT public: static QScriptValue ctor(QScriptContext *context, QScriptEngine *engine); Q_INVOKABLE QScriptValue documentElement(); Q_INVOKABLE QScriptValue createElement(const QString & tagName); Q_INVOKABLE QScriptValue createCDATASection(const QString & value); Q_INVOKABLE QScriptValue createTextNode(const QString & value); Q_INVOKABLE bool setContent(const QString & content); Q_INVOKABLE QString toString(int indent = 1); Q_INVOKABLE void save(const QString & filePath, int indent = 1); Q_INVOKABLE void load(const QString & filePath); protected: XmlDomDocument(QScriptContext *context, const QString &name = QString()); private: QDomDocument m_domDocument; }; } // namespace Internal } // namespace qbs Q_DECLARE_METATYPE(qbs::Internal::XmlDomDocument *) Q_DECLARE_METATYPE(qbs::Internal::XmlDomNode *) #endif // DOMXML_H