DomModel.cc 5.28 KB
Newer Older
pixhawk's avatar
pixhawk committed
1 2 3 4 5 6 7
#include <QtGui>
#include <QtXml>

#include "DomItem.h"
#include "DomModel.h"

DomModel::DomModel(QDomDocument document, QObject *parent)
8
    : QAbstractItemModel(parent), domDocument(document)
pixhawk's avatar
pixhawk committed
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
{
    rootItem = new DomItem(domDocument, 0);
}

DomModel::~DomModel()
{
    delete rootItem;
}

int DomModel::columnCount(const QModelIndex &/*parent*/) const
{
    return 3;
}

QVariant DomModel::data(const QModelIndex &index, int role) const
{
    if (!index.isValid())
        return QVariant();

    if (role != Qt::DisplayRole)
        return QVariant();

    DomItem *item = static_cast<DomItem*>(index.internalPointer());

    QDomNode node = item->node();
    QStringList attributes;
    QDomNamedNodeMap attributeMap = node.attributes();

    switch (index.column()) {
38
    case 0:
pixhawk's avatar
pixhawk committed
39 40 41 42 43 44 45 46
        {
            if (node.nodeName() == "message")
            {
                for (int i = 0; i < attributeMap.count(); ++i) {
                    QDomNode attribute = attributeMap.item(i);
                    if (attribute.nodeName() == "name") return attribute.nodeValue();
                }
            }
47
            else if (node.nodeName() == "field")
pixhawk's avatar
pixhawk committed
48 49 50 51 52 53
            {
                for (int i = 0; i < attributeMap.count(); ++i) {
                    QDomNode attribute = attributeMap.item(i);
                    if (attribute.nodeName() == "name") return attribute.nodeValue();
                }
            }
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
            else if (node.nodeName() == "enum")
            {
                for (int i = 0; i < attributeMap.count(); ++i) {
                    QDomNode attribute = attributeMap.item(i);
                    if (attribute.nodeName() == "name") return attribute.nodeValue();
                }
            }
            else if (node.nodeName() == "entry")
            {
                for (int i = 0; i < attributeMap.count(); ++i) {
                    QDomNode attribute = attributeMap.item(i);
                    if (attribute.nodeName() == "name") return attribute.nodeValue();
                }
            }
            else if (node.nodeName() == "#text")
            {
                return node.nodeValue().split("\n").join(" ");
            }
pixhawk's avatar
pixhawk committed
72 73 74 75 76
            else
            {
                return node.nodeName();
            }
        }
77
        break;
78
    case 1:
79 80 81 82 83 84
        if (node.nodeName() == "description")
            {
                return node.nodeValue().split("\n").join(" ");
            }
        else
        {
pixhawk's avatar
pixhawk committed
85 86
        for (int i = 0; i < attributeMap.count(); ++i) {
            QDomNode attribute = attributeMap.item(i);
87 88 89 90 91 92 93 94 95

            if (attribute.nodeName() == "id" || attribute.nodeName() == "index" || attribute.nodeName() == "value")
            {
                return QString("(# %1)").arg(attribute.nodeValue());
            }
            else  if (attribute.nodeName() == "type")
            {
                return attribute.nodeValue();
            }
pixhawk's avatar
pixhawk committed
96
        }
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
    }
        break;
//    case 2:
//        {
////            if (node.nodeName() != "description")
////            {
////            for (int i = 0; i < attributeMap.count(); ++i) {
////                QDomNode attribute = attributeMap.item(i);
////                attributes << attribute.nodeName() + "=\""
////                        +attribute.nodeValue() + "\"";
////            }
////            return attributes.join(" ");
////            }
////            else
////            {
////            return node.nodeValue().split("\n").join(" ");
////        }
//        }
//        break;
116
    default:
117
        {
pixhawk's avatar
pixhawk committed
118
        return QVariant();
119
        }
pixhawk's avatar
pixhawk committed
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
    }
}

Qt::ItemFlags DomModel::flags(const QModelIndex &index) const
{
    if (!index.isValid())
        return 0;

    return Qt::ItemIsEnabled | Qt::ItemIsSelectable;
}

QVariant DomModel::headerData(int section, Qt::Orientation orientation,
                              int role) const
{
    if (orientation == Qt::Horizontal && role == Qt::DisplayRole) {
        switch (section) {
136
        case 0:
137
            return tr("Name                 ");
138
        case 1:
pixhawk's avatar
pixhawk committed
139
            return tr("Value");
140 141
//        case 2:
//            return tr("Description");
142
        default:
pixhawk's avatar
pixhawk committed
143 144 145 146 147 148 149 150
            return QVariant();
        }
    }

    return QVariant();
}

QModelIndex DomModel::index(int row, int column, const QModelIndex &parent)
151
        const
pixhawk's avatar
pixhawk committed
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
{
    if (!hasIndex(row, column, parent))
        return QModelIndex();

    DomItem *parentItem;

    if (!parent.isValid())
        parentItem = rootItem;
    else
        parentItem = static_cast<DomItem*>(parent.internalPointer());

    DomItem *childItem = parentItem->child(row);
    if (childItem)
        return createIndex(row, column, childItem);
    else
        return QModelIndex();
}

QModelIndex DomModel::parent(const QModelIndex &child) const
{
    if (!child.isValid())
        return QModelIndex();

    DomItem *childItem = static_cast<DomItem*>(child.internalPointer());
    DomItem *parentItem = childItem->parent();

    if (!parentItem || parentItem == rootItem)
        return QModelIndex();

    return createIndex(parentItem->row(), 0, parentItem);
}

int DomModel::rowCount(const QModelIndex &parent) const
{
    if (parent.column() > 0)
        return 0;

    DomItem *parentItem;

    if (!parent.isValid())
        parentItem = rootItem;
    else
        parentItem = static_cast<DomItem*>(parent.internalPointer());

    return parentItem->node().childNodes().count();
}