2010-04-07 20:38:20 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file treeitem.cpp
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* @brief
|
|
|
|
* @see The GNU Public License (GPL) Version 3
|
|
|
|
* @defgroup uavobjectbrowser
|
|
|
|
* @{
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "treeitem.h"
|
|
|
|
|
|
|
|
TreeItem::TreeItem(const QList<QVariant> &data, TreeItem *parent) :
|
|
|
|
m_data(data),
|
2010-04-12 07:54:54 +02:00
|
|
|
m_parent(parent),
|
|
|
|
m_highlight(false)
|
2010-04-07 20:38:20 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TreeItem::TreeItem(const QVariant &data, TreeItem *parent) :
|
2010-04-12 07:54:54 +02:00
|
|
|
m_parent(parent),
|
|
|
|
m_highlight(false)
|
2010-04-07 20:38:20 +02:00
|
|
|
{
|
|
|
|
m_data << data << "" << "";
|
|
|
|
}
|
|
|
|
|
|
|
|
TreeItem::~TreeItem()
|
|
|
|
{
|
|
|
|
qDeleteAll(m_children);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TreeItem::appendChild(TreeItem *child)
|
|
|
|
{
|
|
|
|
m_children.append(child);
|
|
|
|
child->setParent(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void TreeItem::insert(int index, TreeItem *child)
|
|
|
|
{
|
|
|
|
m_children.insert(index, child);
|
|
|
|
child->setParent(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
TreeItem *TreeItem::child(int row)
|
|
|
|
{
|
|
|
|
return m_children.value(row);
|
|
|
|
}
|
|
|
|
|
|
|
|
int TreeItem::childCount() const
|
|
|
|
{
|
|
|
|
return m_children.count();
|
|
|
|
}
|
|
|
|
int TreeItem::row() const
|
|
|
|
{
|
|
|
|
if (m_parent)
|
|
|
|
return m_parent->m_children.indexOf(const_cast<TreeItem*>(this));
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int TreeItem::columnCount() const
|
|
|
|
{
|
|
|
|
return m_data.count();
|
|
|
|
}
|
|
|
|
|
|
|
|
QVariant TreeItem::data(int column) const
|
|
|
|
{
|
|
|
|
return m_data.value(column);
|
|
|
|
}
|
|
|
|
|
2010-04-12 07:54:54 +02:00
|
|
|
void TreeItem::setData(QVariant value, int column)
|
2010-04-07 20:38:20 +02:00
|
|
|
{
|
|
|
|
m_data.replace(column, value);
|
|
|
|
}
|