forked from ragnar-lodbrok/meow-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable_index_delegate.cpp
114 lines (92 loc) · 3.42 KB
/
table_index_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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
#include "table_index_delegate.h"
#include "models/forms/table_indexes_model.h"
#include <QComboBox>
namespace meow {
namespace models {
namespace delegates {
using Cols = models::forms::TableIndexesModel::Columns;
TableIndexDelegate::TableIndexDelegate(QObject * parent)
:QStyledItemDelegate(parent)
{
}
QWidget * TableIndexDelegate::createEditor(
QWidget *parent,
const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
auto model = static_cast<const models::forms::TableIndexesModel *>(
index.model());
Cols column = static_cast<Cols>(index.column());
if (model->isRowTypeIndex(index)) {
if (column == Cols::Type || column == Cols::Algorithm) {
return new QComboBox(parent);
}
} else if (model->isRowTypeColumn(index)) {
if (column == Cols::Name) {
return new QComboBox(parent);
}
}
return QStyledItemDelegate::createEditor(parent, option, index);
}
void TableIndexDelegate::setEditorData(
QWidget *editor,
const QModelIndex &index) const
{
auto model = static_cast<const models::forms::TableIndexesModel *>(
index.model());
Cols column = static_cast<Cols>(index.column());
if (model->isRowTypeIndex(index)) {
if (column == Cols::Type) {
auto comboBox = static_cast<QComboBox *>(editor);
comboBox->addItems(model->indexTypes());
QString value = model->data(index, Qt::EditRole).toString();
comboBox->setCurrentIndex(comboBox->findText(value));
} else if (column == Cols::Algorithm) {
auto comboBox = static_cast<QComboBox *>(editor);
comboBox->addItem("");
comboBox->addItems(model->indexAlgorithms());
QString value = model->data(index, Qt::EditRole).toString();
comboBox->setCurrentIndex(comboBox->findText(value));
}
} else if (model->isRowTypeColumn(index)) {
if (column == Cols::Name) {
auto comboBox = static_cast<QComboBox *>(editor);
comboBox->addItems(model->indexColumns());
QString value = model->data(index, Qt::EditRole).toString();
comboBox->setCurrentIndex(comboBox->findText(value));
}
}
QStyledItemDelegate::setEditorData(editor, index);
}
void TableIndexDelegate::setModelData(QWidget *editor,
QAbstractItemModel *model,
const QModelIndex &index) const
{
auto indxModel = static_cast<models::forms::TableIndexesModel *>(model);
Cols column = static_cast<Cols>(index.column());
bool isCombobox = false;
if (indxModel->isRowTypeIndex(index)) {
isCombobox = (column == Cols::Type) || (column == Cols::Algorithm);
} else if (indxModel->isRowTypeColumn(index)) {
isCombobox = (column == Cols::Name);
}
if (isCombobox) {
auto comboBox = static_cast<QComboBox *>(editor);
QVariant curData = comboBox->currentText();
indxModel->setData(index, curData, Qt::EditRole);
} else {
QStyledItemDelegate::setModelData(editor, model, index);
}
}
void TableIndexDelegate::updateEditorGeometry(
QWidget *editor,
const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
Q_UNUSED(index);
// TODO: no jump when have icon, restrict width
editor->setGeometry(option.rect);
}
} // namespace delegates
} // namespace models
} // namespace meow