forked from ragnar-lodbrok/meow-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable_column_default_delegate.cpp
82 lines (64 loc) · 2.54 KB
/
table_column_default_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
#include "table_column_default_delegate.h"
#include "ui/common/table_column_default_editor.h"
#include "models/db/table_columns_model.h"
#include "ui/common/geometry_helpers.h"
namespace meow {
namespace models {
namespace delegates {
TableColumnDefaultDelegate::TableColumnDefaultDelegate(QObject * parent)
:QStyledItemDelegate(parent)
{
}
QWidget * TableColumnDefaultDelegate::createEditor(
QWidget *parent,
const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
Q_UNUSED(option);
Q_UNUSED(index);
return new ui::TableColumnDefaultEditor(parent);
}
void TableColumnDefaultDelegate::setEditorData(
QWidget *editor,
const QModelIndex &index) const
{
auto defaultEditor = static_cast<ui::TableColumnDefaultEditor *>(editor);
auto model = static_cast<const models::db::TableColumnsModel *>(index.model());
defaultEditor->setAutoIncEditable(
model->isDefaultAutoIncEnabled(index.row()));
defaultEditor->setCurrentTimeStampEditable(
model->isDefaultCurrentTimeStampEnabled(index.row()));
defaultEditor->setOnUpdCurTsEditable(
model->isDefaultOnUpdCurTsEnabled(index.row()));
defaultEditor->setDefaultText(model->defaultText(index.row()));
defaultEditor->setDefaultValue(model->defaultType(index.row()));
}
void TableColumnDefaultDelegate::setModelData(QWidget *editor,
QAbstractItemModel *model,
const QModelIndex &index) const
{
auto defaultEditor = static_cast<ui::TableColumnDefaultEditor *>(editor);
auto columnsModel = static_cast<models::db::TableColumnsModel *>(model);
columnsModel->setDefaultValue(index.row(),
defaultEditor->defaultValue(),
defaultEditor->defaultText());
}
void TableColumnDefaultDelegate::updateEditorGeometry(
QWidget *editor,
const QStyleOptionViewItem &option,
const QModelIndex &index) const
{
Q_UNUSED(index);
auto tableWidget = static_cast<const QTableView * const>(option.widget);
int headerWidth = tableWidget->verticalHeader()->width();
int headerHeight = tableWidget->horizontalHeader()->height();
QPoint topLeft = tableWidget->mapToGlobal(QPoint(headerWidth, headerHeight))
+ option.rect.topLeft();
QRect rect = QRect(topLeft, editor->minimumSize());
// Check if we feet screen and adjust like eg in combobox
ui::helpers::fitRectToScreen(rect);
editor->setGeometry(rect);
}
} // namespace delegates
} // namespace models
} // namespace meow