Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F35156259
searchbar.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
5 KB
Subscribers
None
searchbar.cpp
View Options
/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil; -*-
view/searchbar.cpp
This file is part of Kleopatra, the KDE keymanager
SPDX-FileCopyrightText: 2007 Klarälvdalens Datakonsult AB
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include
<config-kleopatra.h>
#include
"searchbar.h"
#include
<Libkleo/KeyFilter>
#include
<Libkleo/KeyFilterManager>
#include
<KLocalizedString>
#include
<QLineEdit>
#include
<QComboBox>
#include
<QHBoxLayout>
#include
<QPushButton>
#include
<QSortFilterProxyModel>
#include
<Libkleo/GnuPG>
#include
<qgpgme/keylistjob.h>
#include
<qgpgme/protocol.h>
#include
<gpgme++/keylistresult.h>
using
namespace
Kleo
;
namespace
{
class
ProxyModel
:
public
QSortFilterProxyModel
{
Q_OBJECT
public
:
using
QSortFilterProxyModel
::
QSortFilterProxyModel
;
protected
:
bool
filterAcceptsRow
(
int
sourceRow
,
const
QModelIndex
&
sourceParent
)
const
override
{
const
QModelIndex
index
=
sourceModel
()
->
index
(
sourceRow
,
0
,
sourceParent
);
const
auto
matchContexts
=
qvariant_cast
<
KeyFilter
::
MatchContexts
>
(
sourceModel
()
->
data
(
index
,
KeyFilterManager
::
FilterMatchContextsRole
));
return
matchContexts
&
KeyFilter
::
Filtering
;
}
};
}
class
SearchBar
::
Private
{
friend
class
::
Kleo
::
SearchBar
;
SearchBar
*
const
q
;
public
:
explicit
Private
(
SearchBar
*
qq
);
~
Private
();
private
:
void
slotKeyFilterChanged
(
int
idx
)
{
Q_EMIT
q
->
keyFilterChanged
(
keyFilter
(
idx
));
}
std
::
shared_ptr
<
KeyFilter
>
keyFilter
(
int
idx
)
const
{
const
QModelIndex
mi
=
proxyModel
->
mapToSource
(
proxyModel
->
index
(
idx
,
0
));
return
KeyFilterManager
::
instance
()
->
fromModelIndex
(
mi
);
}
std
::
shared_ptr
<
KeyFilter
>
currentKeyFilter
()
const
{
return
keyFilter
(
combo
->
currentIndex
());
}
QString
currentKeyFilterID
()
const
{
if
(
const
std
::
shared_ptr
<
KeyFilter
>
f
=
currentKeyFilter
())
{
return
f
->
id
();
}
else
{
return
QString
();
}
}
void
listNotCertifiedKeys
()
const
{
lineEdit
->
clear
();
combo
->
setCurrentIndex
(
combo
->
findData
(
QStringLiteral
(
"not-validated-certificates"
)));
Q_EMIT
q
->
keyFilterChanged
(
keyFilter
(
combo
->
currentIndex
()));
}
/* List all OpenPGP keys and see if we find one with a UID that is
* not at least fully valid. If we find one, show the certify
* button. */
/* XXX: It would be nice to do this every time the user certifies
* a key. */
void
showOrHideCertifyButton
()
const
{
QGpgME
::
KeyListJob
*
job
=
QGpgME
::
openpgp
()
->
keyListJob
();
connect
(
job
,
&
QGpgME
::
KeyListJob
::
result
,
job
,
[
this
](
const
GpgME
::
KeyListResult
&
,
const
std
::
vector
<
GpgME
::
Key
>
&
keys
,
const
QString
&
,
const
GpgME
::
Error
&
)
{
for
(
const
auto
&
key
:
keys
)
{
if
(
Kleo
::
keyValidity
(
key
)
<
GpgME
::
UserID
::
Validity
::
Full
)
{
certifyButton
->
show
();
return
;
}
}
certifyButton
->
hide
();
});
job
->
start
(
QStringList
());
}
private
:
ProxyModel
*
proxyModel
;
QLineEdit
*
lineEdit
;
QComboBox
*
combo
;
QPushButton
*
certifyButton
;
};
SearchBar
::
Private
::
Private
(
SearchBar
*
qq
)
:
q
(
qq
)
{
auto
layout
=
new
QHBoxLayout
(
q
);
layout
->
setContentsMargins
(
0
,
0
,
0
,
0
);
lineEdit
=
new
QLineEdit
(
q
);
lineEdit
->
setClearButtonEnabled
(
true
);
lineEdit
->
setPlaceholderText
(
i18n
(
"Search..."
));
layout
->
addWidget
(
lineEdit
,
/*stretch=*/
1
);
combo
=
new
QComboBox
(
q
);
layout
->
addWidget
(
combo
);
certifyButton
=
new
QPushButton
(
q
);
certifyButton
->
setIcon
(
QIcon
::
fromTheme
(
QStringLiteral
(
"security-medium"
)));
certifyButton
->
setAccessibleName
(
i18n
(
"Show not certified certificates"
));
certifyButton
->
setToolTip
(
i18n
(
"Some certificates are not yet certified. "
"Click here to see a list of these certificates."
"<br/><br/>"
"Certification is required to make sure that the certificates "
"actually belong to the identity they claim to belong to."
));
certifyButton
->
hide
();
layout
->
addWidget
(
certifyButton
);
showOrHideCertifyButton
();
proxyModel
=
new
ProxyModel
{
q
};
proxyModel
->
setSourceModel
(
KeyFilterManager
::
instance
()
->
model
());
proxyModel
->
sort
(
0
,
Qt
::
AscendingOrder
);
combo
->
setModel
(
proxyModel
);
KDAB_SET_OBJECT_NAME
(
layout
);
KDAB_SET_OBJECT_NAME
(
lineEdit
);
KDAB_SET_OBJECT_NAME
(
combo
);
KDAB_SET_OBJECT_NAME
(
certifyButton
);
connect
(
lineEdit
,
&
QLineEdit
::
textChanged
,
q
,
&
SearchBar
::
stringFilterChanged
);
connect
(
combo
,
SIGNAL
(
currentIndexChanged
(
int
)),
q
,
SLOT
(
slotKeyFilterChanged
(
int
)));
connect
(
certifyButton
,
SIGNAL
(
clicked
()),
q
,
SLOT
(
listNotCertifiedKeys
()));
}
SearchBar
::
Private
::~
Private
()
{}
SearchBar
::
SearchBar
(
QWidget
*
parent
,
Qt
::
WindowFlags
f
)
:
QWidget
(
parent
,
f
),
d
(
new
Private
(
this
))
{
}
SearchBar
::~
SearchBar
()
{}
void
SearchBar
::
updateClickMessage
(
const
QString
&
shortcutStr
)
{
d
->
lineEdit
->
setPlaceholderText
(
i18n
(
"Search...<%1>"
,
shortcutStr
));
}
// slot
void
SearchBar
::
setStringFilter
(
const
QString
&
filter
)
{
d
->
lineEdit
->
setText
(
filter
);
}
// slot
void
SearchBar
::
setKeyFilter
(
const
std
::
shared_ptr
<
KeyFilter
>
&
kf
)
{
const
QModelIndex
sourceIndex
=
KeyFilterManager
::
instance
()
->
toModelIndex
(
kf
);
const
QModelIndex
proxyIndex
=
d
->
proxyModel
->
mapFromSource
(
sourceIndex
);
if
(
proxyIndex
.
isValid
())
{
d
->
combo
->
setCurrentIndex
(
proxyIndex
.
row
());
}
else
{
d
->
combo
->
setCurrentIndex
(
0
);
}
}
// slot
void
SearchBar
::
setChangeStringFilterEnabled
(
bool
on
)
{
d
->
lineEdit
->
setEnabled
(
on
);
}
// slot
void
SearchBar
::
setChangeKeyFilterEnabled
(
bool
on
)
{
d
->
combo
->
setEnabled
(
on
);
}
QLineEdit
*
SearchBar
::
lineEdit
()
const
{
return
d
->
lineEdit
;
}
#include
"moc_searchbar.cpp"
#include
"searchbar.moc"
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Mon, Feb 2, 8:39 AM (12 h, 18 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
b9/4f/de9d39105cddc6b8949a321845bb
Attached To
rKLEOPATRA Kleopatra
Event Timeline
Log In to Comment