-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntegerEditorDelegate.cpp
More file actions
68 lines (58 loc) · 1.85 KB
/
IntegerEditorDelegate.cpp
File metadata and controls
68 lines (58 loc) · 1.85 KB
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
63
64
65
66
#include "IntegerEditorDelegate.h"
#include <QLineEdit>
#include <QSpinBox>
IntegerEditorDelegate::IntegerEditorDelegate( QObject *parent )
:QItemDelegate(parent)
{
}
QWidget* IntegerEditorDelegate::createEditor( QWidget* parent,
const QStyleOptionViewItem&,
const QModelIndex& index ) const
{
if( index.column() == number )
{
QSpinBox* tmpEdt = getEditor<QSpinBox>( parent );
return tmpEdt;
}
else
{
return getEditor<QLineEdit>( parent );
}
}
void IntegerEditorDelegate::setEditorData( QWidget *editor,
const QModelIndex &index ) const
{
const QVariant currentValue = index.data( Qt::EditRole );
if( index.column() == number )
{
static_cast<QSpinBox*>( editor )->setValue( currentValue.toInt() );
}
else
{
static_cast<QLineEdit*>( editor )->setText( currentValue.toString() );
}
}
void IntegerEditorDelegate::setModelData( QWidget *editor,
QAbstractItemModel *model,
const QModelIndex &index ) const
{
QVariant newValue;
if( index.column() == number )
{
newValue = static_cast<QSpinBox*>( editor )->value();
}
else
{
newValue = static_cast<QLineEdit*>( editor )->text();
}
model->setData( index, QVariant( newValue ), Qt::EditRole );
}
void IntegerEditorDelegate::updateEditorGeometry( QWidget *editor,
const QStyleOptionViewItem &option,
const QModelIndex& ) const
{
QRect tempRect(option.rect);
tempRect.setY( tempRect.y()-4 );
tempRect.setHeight( tempRect.height()+4 );
editor->setGeometry( tempRect );
}