From fc4243eef08b1b90241bdf048506826180d9d853 Mon Sep 17 00:00:00 2001 From: Tomaz Canabrava Date: Wed, 22 May 2013 14:11:49 -0300 Subject: Added a Delegate for editing Cylinders Now when you edit 'Type', a drop-down list will appear and will enable you to choose from it's contents. Signed-off-by: Tomaz Canabrava --- qt-ui/modeldelegates.cpp | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'qt-ui/modeldelegates.cpp') diff --git a/qt-ui/modeldelegates.cpp b/qt-ui/modeldelegates.cpp index be47198e2..0164deedc 100644 --- a/qt-ui/modeldelegates.cpp +++ b/qt-ui/modeldelegates.cpp @@ -9,6 +9,7 @@ #include #include #include +#include StarWidgetsDelegate::StarWidgetsDelegate(QWidget* parent): QStyledItemDelegate(parent), @@ -47,3 +48,25 @@ QSize StarWidgetsDelegate::sizeHint(const QStyleOptionViewItem& option, const QM { return QSize(IMG_SIZE * TOTALSTARS + SPACING * (TOTALSTARS-1), IMG_SIZE); } + +QWidget* TankInfoDelegate::createEditor(QWidget* parent, const QStyleOptionViewItem& option, const QModelIndex& index) const +{ + QComboBox *comboDelegate = new QComboBox(parent); + TankInfoModel *model = new TankInfoModel; + QString data = index.model()->data(index, Qt::DisplayRole).toString(); + qDebug() << "Tentando pegar " << data; + comboDelegate->setModel(model); + int i; + for(i = 0; i < model->rowCount(); i++){ + if (model->data(model->index(i,0), Qt::DisplayRole).toString() == data){ + break; + } + } + if (i != model->rowCount()) + comboDelegate->setCurrentIndex(i); + return comboDelegate; +} + +TankInfoDelegate::TankInfoDelegate(QObject* parent): QStyledItemDelegate(parent) +{ +} -- cgit v1.2.3-70-g09d2