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
|
// Copyright (C) 2008 Lukas Lalinsky
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#include "columnlistview.h"
#include "columnlistmodel.h"
#include "databasetable.h"
ColumnListView::ColumnListView(QWidget *parent)
: QTreeView(parent)
{
ColumnListModel *model = new ColumnListModel(this);
setModel(model);
setTable(0);
}
void
ColumnListView::setTable(DatabaseTable *table)
{
columnListModel()->setTable(table);
}
void
ColumnListView::addColumn()
{
QModelIndex index = columnListModel()->addColumn();
setCurrentIndex(index);
edit(index);
}
void
ColumnListView::removeColumn()
{
QModelIndexList indexes = selectedIndexes();
if (indexes.size() > 0) {
columnListModel()->removeColumn(indexes[0]);
}
}
void
ColumnListView::moveColumnDown()
{
QModelIndexList indexes = selectedIndexes();
if (indexes.size() == 1) {
int i = indexes[0].row();
if (i + 1 < columnListModel()->table()->columnCount()) {
columnListModel()->swapColumns(i, i + 1);
setCurrentIndex(columnListModel()->indexFromRow(i + 1));
}
}
}
void
ColumnListView::moveColumnUp()
{
QModelIndexList indexes = selectedIndexes();
if (indexes.size() == 1) {
int i = indexes[0].row();
if (i > 0) {
columnListModel()->swapColumns(i, i - 1);
setCurrentIndex(columnListModel()->indexFromRow(i - 1));
}
}
}
QModelIndexList
ColumnListView::selectedIndexes() const
{
QModelIndexList indexes;
foreach (QModelIndex index, selectionModel()->selectedIndexes()) {
if (index.column() == 0) {
indexes << index;
}
}
return indexes;
}
QList<int>
ColumnListView::selectedColumns() const
{
QList<int> columns;
foreach (QModelIndex index, selectedIndexes()) {
columns << index.row();
}
return columns;
}
|