-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathkeytreeview.cpp
222 lines (181 loc) · 4.92 KB
/
keytreeview.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/*
SPDX-FileCopyrightText: 2008 Rolf Eike Beer <[email protected]>
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
#include "keytreeview.h"
#include "model/keylistproxymodel.h"
#include "model/kgpgitemmodel.h"
#include "model/kgpgitemnode.h"
#include "transactions/kgpgexport.h"
#include "transactions/kgpgimport.h"
#include <KConfigGroup>
#include <KLocalizedString>
#include <KMessageBox>
#include <KUrlMimeData>
#include <QDrag>
#include <QDragMoveEvent>
#include <QDropEvent>
#include <QHeaderView>
#include <QMimeData>
KeyTreeView::KeyTreeView(QWidget *parent, KeyListProxyModel *model)
: QTreeView(parent), m_proxy(model)
{
setModel(model);
setDragEnabled(true);
setDragDropMode(DragDrop);
setAcceptDrops(true);
setEditTriggers(QTreeView::NoEditTriggers);
}
std::vector<KGpgNode *>
KeyTreeView::selectedNodes(bool *psame, KgpgCore::KgpgItemType *pt) const
{
QModelIndexList selidx = selectedIndexes();
std::vector<KGpgNode *> ndlist;
KgpgItemType tp = {};
bool sametype = true;
if (selidx.isEmpty()) {
if (pt != nullptr)
*pt = tp;
if (psame != nullptr)
*psame = sametype;
return ndlist;
}
tp = m_proxy->nodeForIndex(selidx[0])->getType();
for (int i = 0; i < selidx.count(); i++) {
if (selidx[i].column() != 0)
continue;
KGpgNode *nd = m_proxy->nodeForIndex(selidx[i]);
if (nd->getType() != tp) {
tp |= nd->getType();
sametype = false;
}
ndlist.push_back(nd);
}
if (pt != nullptr)
*pt = tp;
if (psame != nullptr)
*psame = sametype;
return ndlist;
}
KGpgNode *
KeyTreeView::selectedNode() const
{
QModelIndexList selidx = selectedIndexes();
if (selidx.isEmpty())
return nullptr;
return m_proxy->nodeForIndex(selidx[0]);
}
void
KeyTreeView::selectNode(KGpgNode *nd)
{
if (nd == nullptr)
return;
QModelIndex idx = m_proxy->nodeIndex(nd);
selectionModel()->select(idx, QItemSelectionModel::SelectCurrent | QItemSelectionModel::Rows);
selectionModel()->setCurrentIndex(idx, QItemSelectionModel::SelectCurrent | QItemSelectionModel::Rows);
}
void
KeyTreeView::restoreLayout(KConfigGroup &cg)
{
QStringList cols(cg.readEntry("ColumnWidths", QStringList()));
int i = 0;
QStringList::ConstIterator it(cols.constBegin());
const QStringList::ConstIterator itEnd(cols.constEnd());
for (; it != itEnd; ++it)
setColumnWidth(i++, (*it).toInt());
while (i < model()->columnCount(QModelIndex())) {
int width = 100;
switch (i) {
case KEYCOLUMN_NAME:
width = 250;
break;
case KEYCOLUMN_EMAIL:
width = 150;
break;
case KEYCOLUMN_TRUST:
// the trust column needs to be only that big as the header which is done automatically
i++;
continue;
}
setColumnWidth(i, width);
i++;
}
if (cg.hasKey("SortColumn")) {
Qt::SortOrder order = cg.readEntry("SortAscending", true) ? Qt::AscendingOrder : Qt::DescendingOrder;
sortByColumn(cg.readEntry("SortColumn", 0), order);
}
}
void
KeyTreeView::saveLayout(KConfigGroup &cg) const
{
QStringList widths;
const int colCount = model()->columnCount();
for (int i = 0; i < colCount; ++i) {
widths << QString::number(columnWidth(i));
}
cg.writeEntry("ColumnWidths", widths);
cg.writeEntry( "SortColumn", header ()->sortIndicatorSection () );
cg.writeEntry( "SortAscending", ( header()->sortIndicatorOrder () == Qt::AscendingOrder ) );
}
void
KeyTreeView::contentsDragMoveEvent(QDragMoveEvent *e)
{
e->setAccepted(e->mimeData()->hasUrls());
}
void
KeyTreeView::contentsDropEvent(QDropEvent *o)
{
QList<QUrl> uriList = KUrlMimeData::urlsFromMimeData(o->mimeData());
if (!uriList.isEmpty()) {
if (KMessageBox::questionTwoActions(this, i18n("<p>Do you want to import file <b>%1</b> into your key ring?</p>",
uriList.first().path()), QString(), KGuiItem(i18n("Import")),
KGuiItem(i18n("Do Not Import"))) != KMessageBox::PrimaryAction)
return;
Q_EMIT importDrop(uriList);
}
}
void
KeyTreeView::startDrag(Qt::DropActions supportedActions)
{
const auto nodes = selectedNodes();
if (nodes.empty())
return;
const KGpgNode * const nd = nodes.front();
const QString keyid = nd->getId();
if (!(nd->getType() & ITYPE_PUBLIC))
return;
KGpgExport *exp = new KGpgExport(this, QStringList(keyid));
exp->start();
int result = exp->waitForFinished();
if (result == KGpgTransaction::TS_OK) {
QMimeData *m = new QMimeData();
m->setText(QString::fromLatin1( exp->getOutputData() ));
QDrag *drag = new QDrag(this);
drag->setMimeData(m);
drag->exec(supportedActions, Qt::IgnoreAction);
// do NOT delete drag.
}
delete exp;
}
void
KeyTreeView::resizeColumnsToContents()
{
for (int i = m_proxy->columnCount() - 1; i >= 0; i--)
resizeColumnToContents(i);
}
void
KeyTreeView::keyPressEvent(QKeyEvent *event)
{
if (event->key() == Qt::Key_Return) {
if (!event->isAutoRepeat())
Q_EMIT returnPressed();
return;
}
QTreeView::keyPressEvent(event);
}
bool
KeyTreeView::isEditing() const
{
return (state() == EditingState);
}
#include "moc_keytreeview.cpp"