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
|
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include "domitem.h"
#include <QtXml>
//! [0]
DomItem::DomItem(const QDomNode &node, int row, DomItem *parent)
: domNode(node),
//! [0]
// Record the item's location within its parent.
//! [1]
parentItem(parent),
rowNumber(row)
{}
//! [1]
//! [2]
DomItem::~DomItem()
{
qDeleteAll(childItems);
}
//! [2]
//! [3]
QDomNode DomItem::node() const
{
return domNode;
}
//! [3]
//! [4]
DomItem *DomItem::parent()
{
return parentItem;
}
//! [4]
//! [5]
DomItem *DomItem::child(int i)
{
DomItem *childItem = childItems.value(i);
if (childItem)
return childItem;
// if child does not yet exist, create it
if (i >= 0 && i < domNode.childNodes().count()) {
QDomNode childNode = domNode.childNodes().item(i);
childItem = new DomItem(childNode, i, this);
childItems[i] = childItem;
}
return childItem;
}
//! [5]
//! [6]
int DomItem::row() const
{
return rowNumber;
}
//! [6]
|