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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
|
/***************************************************************************
* Copyright (C) 2009 by Peter Penz <[email protected]> *
* Copyright (C) 2009 by Matthias Fuchs <[email protected]> *
* *
* 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 "dolphinsearchbox.h"
#include <config-nepomuk.h>
#include <KConfigGroup>
#include <KDesktopFile>
#include <kglobalsettings.h>
#include <klineedit.h>
#include <klocale.h>
#include <kiconloader.h>
#include <KStandardDirs>
#include <QEvent>
#include <QKeyEvent>
#include <QHBoxLayout>
#include <QStandardItemModel>
#include <QtGui/QCompleter>
#include <QtGui/QTreeView>
#include <QToolButton>
#ifdef HAVE_NEPOMUK
#include <Nepomuk/ResourceManager>
#include <Nepomuk/Tag>
#endif
DolphinSearchCompleter::DolphinSearchCompleter(KLineEdit* linedit) :
QObject(0),
q(linedit),
m_completer(0),
m_completionModel(0),
m_wordStart(-1),
m_wordEnd(-1)
{
m_completionModel = new QStandardItemModel(this);
#ifdef HAVE_NEPOMUK
if (!Nepomuk::ResourceManager::instance()->init()) {
//read all currently set tags
//NOTE if the user changes tags elsewhere they won't get updated here
QList<Nepomuk::Tag> tags = Nepomuk::Tag::allTags();
foreach (const Nepomuk::Tag& tag, tags) {
const QString tagText = tag.label();
addCompletionItem(tagText,
"hasTag:\"" + tagText + '\"',
i18nc("Tag as in Nepomuk::Tag", "Tag"), // TODO: change to "hasTag" after msg freeze
QString(),
KIcon("mail-tagged"));
}
}
#endif //HAVE_NEPOMUK
// load the completions stored in the desktop file
KDesktopFile file(KStandardDirs::locate("data", "dolphin/dolphinsearchcommands.desktop"));
foreach (const QString &group, file.groupList()) {
KConfigGroup cg(&file, group);
const QString displayed = cg.readEntry("Name", QString());
const QString usedForCompletition = cg.readEntry("Completion", QString());
const QString description = cg.readEntry("Comment", QString());
const QString toolTip = cg.readEntry("GenericName", QString());
const QString icon = cg.readEntry("Icon", QString());
if (icon.isEmpty()) {
addCompletionItem(displayed, usedForCompletition, description, toolTip);
} else {
addCompletionItem(displayed, usedForCompletition, description, toolTip, KIcon(icon));
}
}
m_completionModel->sort(0, Qt::AscendingOrder);
m_completer = new QCompleter(m_completionModel, this);
m_completer->setWidget(q);
m_completer->setCaseSensitivity(Qt::CaseInsensitive);
QTreeView *view = new QTreeView;
m_completer->setPopup(view);
view->setRootIsDecorated(false);
view->setHeaderHidden(true);
connect(q, SIGNAL(textEdited(QString)), this, SLOT(slotTextEdited(QString)));
connect(m_completer, SIGNAL(highlighted(QModelIndex)), this, SLOT(highlighted(QModelIndex)));
}
void DolphinSearchCompleter::addCompletionItem(const QString& displayed, const QString& usedForCompletition, const QString& description, const QString& toolTip, const KIcon& icon)
{
if (displayed.isEmpty() || usedForCompletition.isEmpty()) {
return;
}
QList<QStandardItem*> items;
QStandardItem *item = new QStandardItem();
item->setData(QVariant(displayed), Qt::DisplayRole);
item->setData(QVariant(usedForCompletition), Qt::UserRole);
item->setData(QVariant(toolTip), Qt::ToolTipRole);
items << item;
item = new QStandardItem(description);
if (!icon.isNull()) {
item->setIcon(icon);
}
item->setData(QVariant(toolTip), Qt::ToolTipRole);
items << item;
m_completionModel->insertRow(m_completionModel->rowCount(), items);
}
void DolphinSearchCompleter::findText(int* wordStart, int* wordEnd, QString* newWord, int cursorPos, const QString &input)
{
--cursorPos;//decrease to get a useful position (not the end of the word e.g.)
if (!wordStart || !wordEnd) {
return;
}
*wordStart = -1;
*wordEnd = -1;
// the word might contain "" and thus maybe spaces
if (input.contains('\"')) {
int tempStart = -1;
int tempEnd = -1;
do {
tempStart = input.indexOf('\"', tempEnd + 1);
tempEnd = input.indexOf('\"', tempStart + 1);
if ((cursorPos >= tempStart) && (cursorPos <= tempEnd)) {
*wordStart = tempStart;
*wordEnd = tempEnd;
break;
} else if ((tempEnd == -1) && (cursorPos >= tempStart)) {
//one " found, so probably the beginning of the new word
*wordStart = tempStart;
break;
}
} while ((tempStart != -1) && (tempEnd != -1));
}
if (*wordEnd > -1) {
*wordEnd = input.indexOf(' ', *wordEnd) - 1;
} else {
*wordEnd = input.indexOf(' ', cursorPos) - 1;
}
if (*wordEnd < 0) {
*wordEnd = input.length() - 1;
}
if (*wordStart > -1) {
*wordStart = input.lastIndexOf(' ', *wordStart + 1) + 1;
} else {
*wordStart = input.lastIndexOf(' ', cursorPos) + 1;
}
if (*wordStart < 0) {
*wordStart = 0;
}
QString word = input.mid(*wordStart, *wordEnd - *wordStart + 1);
//remove opening braces or negations ('-' = not) at the beginning
while (word.count() && ((word[0] == '(') || (word[0] == '-'))) {
word.remove(0, 1);
++(*wordStart);
}
//remove ending braces at the end
while (word.count() && (word[word.count() - 1] == ')')) {
word.remove(word.count() - 1, 1);
--(*wordEnd);
}
if (newWord) {
*newWord = word;
}
}
void DolphinSearchCompleter::slotTextEdited(const QString& text)
{
findText(&m_wordStart, &m_wordEnd, &m_userText, q->cursorPosition(), text);
if (!m_userText.isEmpty()) {
const int role = m_completer->completionRole();
//change the role used for comparison depending on what the user entered
if (m_userText.contains(':') || m_userText.contains('\"')) {
//assume that m_userText contains searchinformation like 'tag:"..."'
if (role != Qt::UserRole) {
m_completer->setCompletionRole(Qt::UserRole);
}
} else if (role != Qt::EditRole) {
m_completer->setCompletionRole(Qt::EditRole);
}
m_completer->setCompletionPrefix(m_userText);
m_completer->complete();
}
}
void DolphinSearchCompleter::highlighted(const QModelIndex& index)
{
QString text = q->text();
int wordStart;
int wordEnd;
findText(&wordStart, &wordEnd, 0, q->cursorPosition(), text);
QString replace = index.sibling(index.row(), 0).data(Qt::UserRole).toString();
//show the originally entered text
if (replace.isEmpty()) {
replace = m_userText;
}
text.replace(wordStart, wordEnd - wordStart + 1, replace);
q->setText(text);
q->setCursorPosition(wordStart + replace.length());
}
DolphinSearchBox::DolphinSearchBox(QWidget* parent) :
QWidget(parent),
m_searchInput(0),
m_completer(0)
{
QHBoxLayout* hLayout = new QHBoxLayout(this);
hLayout->setMargin(0);
hLayout->setSpacing(0);
m_searchInput = new KLineEdit(this);
m_searchInput->setClearButtonShown(true);
m_searchInput->setMinimumWidth(150);
m_searchInput->setClickMessage(i18nc("@label:textbox", "Search..."));
m_searchInput->installEventFilter(this);
hLayout->addWidget(m_searchInput);
connect(m_searchInput, SIGNAL(returnPressed()),
this, SLOT(emitSearchSignal()));
connect(m_searchInput, SIGNAL(textChanged(QString)),
this, SLOT(slotTextChanged(QString)));
}
DolphinSearchBox::~DolphinSearchBox()
{
}
QString DolphinSearchBox::text() const
{
return m_searchInput->text();
}
bool DolphinSearchBox::event(QEvent* event)
{
if (event->type() == QEvent::Polish) {
m_searchInput->setFont(KGlobalSettings::generalFont());
} else if (event->type() == QEvent::KeyPress) {
if (static_cast<QKeyEvent *>(event)->key() == Qt::Key_Escape) {
m_searchInput->clear();
}
}
return QWidget::event(event);
}
bool DolphinSearchBox::eventFilter(QObject* watched, QEvent* event)
{
if ((watched == m_searchInput) && (event->type() == QEvent::FocusIn)) {
// Postpone the creation of the search completer until
// the search box is used. This decreases the startup time
// of Dolphin.
if (m_completer == 0) {
m_completer = new DolphinSearchCompleter(m_searchInput);
}
if (m_searchInput->text().isEmpty()) {
emit requestSearchOptions();
}
}
return QWidget::eventFilter(watched, event);
}
void DolphinSearchBox::emitSearchSignal()
{
emit search(m_searchInput->text());
}
void DolphinSearchBox::slotTextChanged(const QString& text)
{
if (!text.isEmpty()) {
emit requestSearchOptions();
}
emit searchTextChanged(text);
}
#include "dolphinsearchbox.moc"
|