2010-04-07 20:38:20 +02:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file browseritemdelegate.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 "browseritemdelegate.h"
|
2010-04-15 21:59:45 +02:00
|
|
|
#include "fieldtreeitem.h"
|
2010-04-07 20:38:20 +02:00
|
|
|
|
|
|
|
BrowserItemDelegate::BrowserItemDelegate(QObject *parent) :
|
|
|
|
QStyledItemDelegate(parent)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QWidget *BrowserItemDelegate::createEditor(QWidget *parent,
|
|
|
|
const QStyleOptionViewItem & option ,
|
|
|
|
const QModelIndex & index ) const
|
|
|
|
{
|
|
|
|
FieldTreeItem *item = static_cast<FieldTreeItem*>(index.internalPointer());
|
2010-04-15 21:59:45 +02:00
|
|
|
QWidget *editor = item->createEditor(parent);
|
|
|
|
Q_ASSERT(editor);
|
|
|
|
return editor;
|
2010-04-07 20:38:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void BrowserItemDelegate::setEditorData(QWidget *editor,
|
|
|
|
const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
FieldTreeItem *item = static_cast<FieldTreeItem*>(index.internalPointer());
|
2010-04-15 21:59:45 +02:00
|
|
|
QVariant value = index.model()->data(index, Qt::EditRole);
|
|
|
|
item->setEditorValue(editor, value);
|
2010-04-07 20:38:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void BrowserItemDelegate::setModelData(QWidget *editor, QAbstractItemModel *model,
|
|
|
|
const QModelIndex &index) const
|
|
|
|
{
|
|
|
|
FieldTreeItem *item = static_cast<FieldTreeItem*>(index.internalPointer());
|
2010-04-15 21:59:45 +02:00
|
|
|
QVariant value = item->getEditorValue(editor);
|
|
|
|
model->setData(index, value, Qt::EditRole);
|
2010-04-07 20:38:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void BrowserItemDelegate::updateEditorGeometry(QWidget *editor,
|
|
|
|
const QStyleOptionViewItem &option, const QModelIndex &/* index */) const
|
|
|
|
{
|
|
|
|
editor->setGeometry(option.rect);
|
|
|
|
}
|
2010-04-07 21:50:02 +02:00
|
|
|
|
|
|
|
QSize BrowserItemDelegate::sizeHint(const QStyleOptionViewItem & option, const QModelIndex &index) const
|
|
|
|
{
|
2010-04-07 23:13:29 +02:00
|
|
|
return QSpinBox().sizeHint();
|
2010-04-07 21:50:02 +02:00
|
|
|
}
|