forked from ragnar-lodbrok/meow-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforeign_key_reference_option_delegate.cpp
62 lines (51 loc) · 1.62 KB
/
foreign_key_reference_option_delegate.cpp
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
#include "foreign_key_reference_option_delegate.h"
#include <QComboBox>
#include "models/forms/table_foreign_keys_model.h"
namespace meow {
namespace models {
namespace delegates {
ForeignKeyReferenceOptionDelegate::ForeignKeyReferenceOptionDelegate(
QObject * parent
)
:QStyledItemDelegate(parent)
{
}
QWidget * ForeignKeyReferenceOptionDelegate::createEditor(
QWidget *parent,
const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
Q_UNUSED(option);
Q_UNUSED(index);
return new QComboBox(parent);
}
void ForeignKeyReferenceOptionDelegate::setEditorData(
QWidget *editor,
const QModelIndex &index) const
{
auto comboBox = static_cast<QComboBox *>(editor);
auto model = static_cast<const models::forms::TableForeignKeysModel *>(
index.model());
comboBox->addItems(model->referenceOptions());
QString value = index.model()->data(index, Qt::EditRole).toString();
comboBox->setCurrentIndex(comboBox->findText(value));
}
void ForeignKeyReferenceOptionDelegate::setModelData(QWidget *editor,
QAbstractItemModel *model,
const QModelIndex &index) const
{
auto comboBox = static_cast<QComboBox *>(editor);
QVariant curData = comboBox->currentText();
model->setData(index, curData, Qt::EditRole);
}
void ForeignKeyReferenceOptionDelegate::updateEditorGeometry(
QWidget *editor,
const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
Q_UNUSED(index);
editor->setGeometry(option.rect);
}
} // namespace delegates
} // namespace models
} // namespace meow