14#include <config-libkleo.h>
16#include "keyselectiondialog.h"
18#include "keylistview.h"
19#include "progressdialog.h"
21#include <libkleo/compat.h>
22#include <libkleo/compliance.h>
23#include <libkleo/formatting.h>
25#include <kleo_ui_debug.h>
28#include <KConfigGroup>
29#include <KLocalizedString>
31#include <KSharedConfig>
33#include <QGpgME/KeyListJob>
35#include <QApplication>
37#include <QDialogButtonBox>
45#include <QRegularExpression>
50#include <gpgme++/key.h>
51#include <gpgme++/keylistresult.h>
59static bool checkKeyUsage(
const GpgME::Key &key,
unsigned int keyUsage,
QString *statusString =
nullptr)
61 auto setStatusString = [statusString](
const QString &
status) {
67 if (keyUsage & KeySelectionDialog::ValidKeys) {
68 if (key.isInvalid()) {
69 if (key.keyListMode() & GpgME::Validate) {
70 qCDebug(KLEO_UI_LOG) <<
"key is invalid";
71 setStatusString(
i18n(
"The key is not valid."));
74 qCDebug(KLEO_UI_LOG) <<
"key is invalid - ignoring";
77 if (key.isExpired()) {
78 qCDebug(KLEO_UI_LOG) <<
"key is expired";
79 setStatusString(
i18n(
"The key is expired."));
81 }
else if (key.isRevoked()) {
82 qCDebug(KLEO_UI_LOG) <<
"key is revoked";
83 setStatusString(
i18n(
"The key is revoked."));
85 }
else if (key.isDisabled()) {
86 qCDebug(KLEO_UI_LOG) <<
"key is disabled";
87 setStatusString(
i18n(
"The key is disabled."));
92 if (keyUsage & KeySelectionDialog::EncryptionKeys && !Kleo::keyHasEncrypt(key)) {
93 qCDebug(KLEO_UI_LOG) <<
"key can't encrypt";
94 setStatusString(
i18n(
"The key is not designated for encryption."));
97 if (keyUsage & KeySelectionDialog::SigningKeys && !Kleo::keyHasSign(key)) {
98 qCDebug(KLEO_UI_LOG) <<
"key can't sign";
99 setStatusString(
i18n(
"The key is not designated for signing."));
102 if (keyUsage & KeySelectionDialog::CertificationKeys && !Kleo::keyHasCertify(key)) {
103 qCDebug(KLEO_UI_LOG) <<
"key can't certify";
104 setStatusString(
i18n(
"The key is not designated for certifying."));
107 if (keyUsage & KeySelectionDialog::AuthenticationKeys && !Kleo::keyHasAuthenticate(key)) {
108 qCDebug(KLEO_UI_LOG) <<
"key can't authenticate";
109 setStatusString(
i18n(
"The key is not designated for authentication."));
113 if (keyUsage & KeySelectionDialog::SecretKeys && !(keyUsage & KeySelectionDialog::PublicKeys) && !key.hasSecret()) {
114 qCDebug(KLEO_UI_LOG) <<
"key isn't secret";
115 setStatusString(
i18n(
"The key is not secret."));
119 if (keyUsage & KeySelectionDialog::TrustedKeys && key.protocol() == GpgME::OpenPGP &&
123 std::vector<GpgME::UserID> uids = key.userIDs();
124 for (std::vector<GpgME::UserID>::const_iterator it = uids.begin(); it != uids.end(); ++it) {
125 if (!it->isRevoked() && it->validity() >= GpgME::UserID::Marginal) {
126 setStatusString(
i18n(
"The key can be used."));
130 qCDebug(KLEO_UI_LOG) <<
"key has no UIDs with validity >= Marginal";
131 setStatusString(
i18n(
"The key is not trusted enough."));
137 setStatusString(
i18n(
"The key can be used."));
141static bool checkKeyUsage(
const std::vector<GpgME::Key> &keys,
unsigned int keyUsage)
143 for (
auto it = keys.begin(); it != keys.end(); ++it) {
144 if (!checkKeyUsage(*it, keyUsage)) {
154class ColumnStrategy :
public KeyListView::ColumnStrategy
157 ColumnStrategy(
unsigned int keyUsage);
159 QString title(
int col)
const override;
160 int width(
int col,
const QFontMetrics &fm)
const override;
162 QString text(
const GpgME::Key &key,
int col)
const override;
163 QString accessibleText(
const GpgME::Key &key,
int column)
const override;
164 QString toolTip(
const GpgME::Key &key,
int col)
const override;
165 QIcon icon(
const GpgME::Key &key,
int col)
const override;
168 const QIcon mKeyGoodPix, mKeyBadPix, mKeyUnknownPix, mKeyValidPix;
169 const unsigned int mKeyUsage;
172ColumnStrategy::ColumnStrategy(
unsigned int keyUsage)
173 : KeyListView::ColumnStrategy()
174 , mKeyGoodPix(QStringLiteral(
":/libkleopatra/key_ok"))
175 , mKeyBadPix(QStringLiteral(
":/libkleopatra/key_bad"))
176 , mKeyUnknownPix(QStringLiteral(
":/libkleopatra/key_unknown"))
177 , mKeyValidPix(QStringLiteral(
":/libkleopatra/key"))
178 , mKeyUsage(keyUsage)
181 qCWarning(KLEO_UI_LOG) <<
"KeySelectionDialog: keyUsage == 0. You want to use AllKeys instead.";
185QString ColumnStrategy::title(
int col)
const
189 return i18n(
"Key ID");
191 return i18n(
"User ID");
197int ColumnStrategy::width(
int col,
const QFontMetrics &fm)
const
200 static const char hexchars[] =
"0123456789ABCDEF";
202 for (
unsigned int i = 0; i < 16; ++i) {
203 maxWidth = qMax(fm.
boundingRect(QLatin1Char(hexchars[i])).width(), maxWidth);
205 return 8 * maxWidth + 2 * 16 ;
207 return KeyListView::ColumnStrategy::width(col, fm);
210QString ColumnStrategy::text(
const GpgME::Key &key,
int col)
const
215 return Formatting::prettyID(key.keyID());
217 return xi18n(
"<placeholder>unknown</placeholder>");
221 const char *uid = key.userID(0).id();
222 if (key.protocol() == GpgME::OpenPGP) {
225 return Formatting::prettyDN(uid);
233QString ColumnStrategy::accessibleText(
const GpgME::Key &key,
int col)
const
238 return Formatting::accessibleHexID(key.keyID());
247QString ColumnStrategy::toolTip(
const GpgME::Key &key,
int)
const
249 const char *uid = key.userID(0).id();
250 const char *fpr = key.primaryFingerprint();
251 const char *issuer = key.issuerName();
252 const GpgME::Subkey subkey = key.subkey(0);
253 const QString expiry = Formatting::expirationDateString(subkey);
254 const QString creation = Formatting::creationDateString(subkey);
255 QString keyStatusString;
256 if (!checkKeyUsage(key, mKeyUsage, &keyStatusString)) {
258 keyStatusString = QLatin1StringView(
"<b>") % keyStatusString % QLatin1StringView(
"</b>");
261 QString html = QStringLiteral(
"<qt><p style=\"style='white-space:pre'\">");
262 if (key.protocol() == GpgME::OpenPGP) {
265 html +=
i18n(
"S/MIME key for <b>%1</b>", uid ? Formatting::prettyDN(uid) :
i18n(
"unknown"));
267 html += QStringLiteral(
"</p><table>");
269 const auto addRow = [&html](
const QString &name,
const QString &value) {
270 html += QStringLiteral(
"<tr><td align=\"right\"><b>%1: </b></td><td>%2</td></tr>").
arg(name, value);
275 if (key.protocol() != GpgME::OpenPGP) {
276 addRow(
i18nc(
"Key issuer",
"Issuer"), issuer ? Formatting::prettyDN(issuer) :
i18n(
"unknown"));
278 addRow(
i18nc(
"Key status",
"Status"), keyStatusString);
279 if (DeVSCompliance::isActive()) {
280 addRow(
i18nc(
"Compliance of key",
"Compliance"), DeVSCompliance::name(key.isDeVs()));
282 html += QStringLiteral(
"</table></qt>");
287QIcon ColumnStrategy::icon(
const GpgME::Key &key,
int col)
const
293 if (!(key.keyListMode() & GpgME::Validate)) {
294 return mKeyUnknownPix;
297 if (!checkKeyUsage(key, mKeyUsage)) {
301 if (key.protocol() == GpgME::CMS) {
305 switch (key.userID(0).validity()) {
307 case GpgME::UserID::Unknown:
308 case GpgME::UserID::Undefined:
309 return mKeyUnknownPix;
310 case GpgME::UserID::Never:
312 case GpgME::UserID::Marginal:
313 case GpgME::UserID::Full:
314 case GpgME::UserID::Ultimate: {
315 if (DeVSCompliance::isActive() && !key.isDeVs()) {
325static const int sCheckSelectionDelay = 250;
327KeySelectionDialog::KeySelectionDialog(QWidget *parent, Options options)
329 , mOpenPGPBackend(QGpgME::openpgp())
330 , mSMIMEBackend(QGpgME::smime())
333 qCDebug(KLEO_UI_LOG) <<
"mTruncated:" << mTruncated <<
"mSavedOffsetY:" << mSavedOffsetY;
337KeySelectionDialog::KeySelectionDialog(
const QString &title,
339 const std::vector<GpgME::Key> &selectedKeys,
340 unsigned int keyUsage,
341 bool extendedSelection,
346 , mSelectedKeys(selectedKeys)
347 , mKeyUsage(keyUsage)
349 setWindowTitle(title);
351 init(rememberChoice, extendedSelection, text,
QString());
354KeySelectionDialog::KeySelectionDialog(
const QString &title,
357 const std::vector<GpgME::Key> &selectedKeys,
358 unsigned int keyUsage,
359 bool extendedSelection,
364 , mSelectedKeys(selectedKeys)
365 , mKeyUsage(keyUsage)
366 , mSearchText(initialQuery)
367 , mInitialQuery(initialQuery)
369 setWindowTitle(title);
371 init(rememberChoice, extendedSelection, text, initialQuery);
374KeySelectionDialog::KeySelectionDialog(
const QString &title,
377 unsigned int keyUsage,
378 bool extendedSelection,
383 , mKeyUsage(keyUsage)
384 , mSearchText(initialQuery)
385 , mInitialQuery(initialQuery)
387 setWindowTitle(title);
389 init(rememberChoice, extendedSelection, text, initialQuery);
392void KeySelectionDialog::setUpUI(Options options,
const QString &initialQuery)
394 auto mainLayout =
new QVBoxLayout(
this);
400 mCheckSelectionTimer =
new QTimer(
this);
401 mStartSearchTimer =
new QTimer(
this);
403 QFrame *page =
new QFrame(
this);
404 mainLayout->addWidget(page);
405 mainLayout->addWidget(buttonBox);
407 mTopLayout =
new QVBoxLayout(page);
408 mTopLayout->setContentsMargins(0, 0, 0, 0);
410 mTextLabel =
new QLabel(page);
411 mTextLabel->setWordWrap(
true);
417 mTopLayout->addWidget(mTextLabel);
420 QPushButton *
const searchExternalPB =
new QPushButton(
i18nc(
"@action:button",
"Search for &External Certificates"), page);
424 searchExternalPB->
hide();
427 auto hlay =
new QHBoxLayout();
428 mTopLayout->addLayout(hlay);
430 auto le =
new QLineEdit(page);
431 le->setClearButtonEnabled(
true);
432 le->setText(initialQuery);
434 QLabel *lbSearchFor =
new QLabel(
i18nc(
"@label:textbox",
"&Search for:"), page);
437 hlay->addWidget(lbSearchFor);
438 hlay->addWidget(le, 1);
446 mKeyListView =
new KeyListView(
new ColumnStrategy(mKeyUsage),
nullptr, page);
447 mKeyListView->setObjectName(QLatin1StringView(
"mKeyListView"));
448 mKeyListView->header()->stretchLastSection();
449 mKeyListView->setRootIsDecorated(
true);
450 mKeyListView->setSortingEnabled(
true);
451 mKeyListView->header()->setSortIndicatorShown(
true);
453 if (options & ExtendedSelection) {
456 mTopLayout->addWidget(mKeyListView, 10);
458 if (options & RememberChoice) {
459 mRememberCB =
new QCheckBox(
i18nc(
"@option:check",
"&Remember choice"), page);
460 mTopLayout->addWidget(mRememberCB);
461 mRememberCB->setWhatsThis(
462 i18n(
"<qt><p>If you check this box your choice will "
463 "be stored and you will not be asked again."
468 slotCheckSelection();
472 connect(mKeyListView, &KeyListView::doubleClicked,
this, &KeySelectionDialog::slotTryOk);
473 connect(mKeyListView, &KeyListView::contextMenu,
this, &KeySelectionDialog::slotRMB);
475 if (options & RereadKeys) {
476 QPushButton *button =
new QPushButton(
i18nc(
"@action:button",
"&Reread Keys"));
480 if (options & ExternalCertificateManager) {
481 QPushButton *button =
new QPushButton(
i18nc(
"@action:button",
"&Start Certificate Manager"));
484 slotStartCertificateManager();
490 mTopLayout->activate();
495 dialogSize = dialogConfig.readEntry(
"Dialog size", dialogSize);
496 const QByteArray headerState = dialogConfig.readEntry(
"header", QByteArray());
498 mKeyListView->header()->restoreState(headerState);
504void KeySelectionDialog::init(
bool rememberChoice,
bool extendedSelection,
const QString &text,
const QString &initialQuery)
506 Options options = {RereadKeys, ExternalCertificateManager};
507 options.setFlag(ExtendedSelection, extendedSelection);
508 options.setFlag(RememberChoice, rememberChoice);
510 setUpUI(options, initialQuery);
513 if (mKeyUsage & OpenPGPKeys) {
514 mOpenPGPBackend = QGpgME::openpgp();
516 if (mKeyUsage & SMIMEKeys) {
517 mSMIMEBackend = QGpgME::smime();
523KeySelectionDialog::~KeySelectionDialog()
527 dialogConfig.writeEntry(
"Dialog size",
size());
528 dialogConfig.writeEntry(
"header", mKeyListView->header()->saveState());
532void KeySelectionDialog::setText(
const QString &text)
534 mTextLabel->setText(text);
535 mTextLabel->setVisible(!text.
isEmpty());
538void KeySelectionDialog::setKeys(
const std::vector<GpgME::Key> &keys)
540 for (
const GpgME::Key &key : keys) {
541 mKeyListView->slotAddKey(key);
545void KeySelectionDialog::connectSignals()
547 if (mKeyListView->isMultiSelection()) {
551 qOverload<KeyListViewItem *>(&KeyListView::selectionChanged),
553 qOverload<KeyListViewItem *>(&KeySelectionDialog::slotCheckSelection));
557void KeySelectionDialog::disconnectSignals()
559 if (mKeyListView->isMultiSelection()) {
563 qOverload<KeyListViewItem *>(&KeyListView::selectionChanged),
565 qOverload<KeyListViewItem *>(&KeySelectionDialog::slotCheckSelection));
569const GpgME::Key &KeySelectionDialog::selectedKey()
const
571 static const GpgME::Key null = GpgME::Key::null;
572 if (mKeyListView->isMultiSelection() || !mKeyListView->selectedItem()) {
575 return mKeyListView->selectedItem()->key();
578QString KeySelectionDialog::fingerprint()
const
580 return QLatin1StringView(selectedKey().primaryFingerprint());
583QStringList KeySelectionDialog::fingerprints()
const
586 for (
auto it = mSelectedKeys.begin(); it != mSelectedKeys.end(); ++it) {
587 if (
const char *fpr = it->primaryFingerprint()) {
588 result.push_back(QLatin1StringView(fpr));
594QStringList KeySelectionDialog::pgpKeyFingerprints()
const
597 for (
auto it = mSelectedKeys.begin(); it != mSelectedKeys.end(); ++it) {
598 if (it->protocol() == GpgME::OpenPGP) {
599 if (
const char *fpr = it->primaryFingerprint()) {
600 result.push_back(QLatin1StringView(fpr));
607QStringList KeySelectionDialog::smimeFingerprints()
const
610 for (
auto it = mSelectedKeys.begin(); it != mSelectedKeys.end(); ++it) {
611 if (it->protocol() == GpgME::CMS) {
612 if (
const char *fpr = it->primaryFingerprint()) {
613 result.push_back(QLatin1StringView(fpr));
620void KeySelectionDialog::slotRereadKeys()
622 mKeyListView->clear();
625 mSavedOffsetY = mKeyListView->verticalScrollBar()->value();
628 mKeyListView->setEnabled(
false);
631 if (mOpenPGPBackend) {
632 startKeyListJobForBackend(mOpenPGPBackend, std::vector<GpgME::Key>(),
false );
635 startKeyListJobForBackend(mSMIMEBackend, std::vector<GpgME::Key>(),
false );
638 if (mListJobCount == 0) {
639 mKeyListView->setEnabled(
true);
641 i18n(
"No backends found for listing keys. "
642 "Check your installation."),
643 i18nc(
"@title:window",
"Key Listing Failed"));
648void KeySelectionDialog::slotStartCertificateManager(
const QString &query)
652 if (!
query.isEmpty()) {
653 args << QStringLiteral(
"--search") <<
query;
656 if (
exec.isEmpty()) {
657 qCWarning(KLEO_UI_LOG) <<
"Could not find kleopatra executable in PATH";
659 i18n(
"Could not start certificate manager; "
660 "please check your installation."),
661 i18nc(
"@title:window",
"Certificate Manager Error"));
664 qCDebug(KLEO_UI_LOG) <<
"\nslotStartCertManager(): certificate manager started.";
668#ifndef __KLEO_UI_SHOW_KEY_LIST_ERROR_H__
669#define __KLEO_UI_SHOW_KEY_LIST_ERROR_H__
670static void showKeyListError(QWidget *parent,
const GpgME::Error &err)
673 const QString msg =
i18n(
674 "<qt><p>An error occurred while fetching "
675 "the keys from the backend:</p>"
676 "<p><b>%1</b></p></qt>",
677 Formatting::errorAsString(err));
685struct ExtractFingerprint {
686 QString operator()(
const GpgME::Key &key)
688 return QLatin1StringView(key.primaryFingerprint());
693void KeySelectionDialog::startKeyListJobForBackend(
const QGpgME::Protocol *backend,
const std::vector<GpgME::Key> &keys,
bool validate)
696 QGpgME::KeyListJob *job = backend->keyListJob(
false,
false, validate);
701 connect(job, &QGpgME::KeyListJob::result,
this, &KeySelectionDialog::slotKeyListResult);
703 connect(job, &QGpgME::KeyListJob::nextKey, mKeyListView, &KeyListView::slotRefreshKey);
705 connect(job, &QGpgME::KeyListJob::nextKey, mKeyListView, &KeyListView::slotAddKey);
709 std::transform(keys.begin(), keys.end(), std::back_inserter(fprs), ExtractFingerprint());
710 const GpgME::Error err = job->start(fprs, mKeyUsage & SecretKeys && !(mKeyUsage & PublicKeys));
713 return showKeyListError(
this, err);
716#ifndef LIBKLEO_NO_PROGRESSDIALOG
718 (void)
new ProgressDialog(job, validate ?
i18n(
"Checking selected keys...") :
i18n(
"Fetching keys..."),
this);
723static void selectKeys(KeyListView *klv,
const std::vector<GpgME::Key> &selectedKeys)
726 if (selectedKeys.empty()) {
729 for (
auto it = selectedKeys.begin(); it != selectedKeys.end(); ++it) {
730 if (KeyListViewItem *item = klv->itemByFingerprint(it->primaryFingerprint())) {
731 item->setSelected(
true);
736void KeySelectionDialog::slotKeyListResult(
const GpgME::KeyListResult &res)
739 showKeyListError(
this, res.error());
740 }
else if (res.isTruncated()) {
744 if (--mListJobCount > 0) {
748 if (mTruncated > 0) {
750 i18np(
"<qt>One backend returned truncated output.<p>"
751 "Not all available keys are shown</p></qt>",
752 "<qt>%1 backends returned truncated output.<p>"
753 "Not all available keys are shown</p></qt>",
755 i18n(
"Key List Result"));
758 mKeyListView->flushKeys();
760 mKeyListView->setEnabled(
true);
761 mListJobCount = mTruncated = 0;
762 mKeysToCheck.clear();
764 selectKeys(mKeyListView, mSelectedKeys);
770 slotSelectionChanged();
773 mKeyListView->verticalScrollBar()->setValue(mSavedOffsetY);
777void KeySelectionDialog::slotSelectionChanged()
779 qCDebug(KLEO_UI_LOG) <<
"KeySelectionDialog::slotSelectionChanged()";
784 mCheckSelectionTimer->start(sCheckSelectionDelay);
789struct AlreadyChecked {
790 bool operator()(
const GpgME::Key &key)
const
792 return key.keyListMode() & GpgME::Validate;
797void KeySelectionDialog::slotCheckSelection(KeyListViewItem *item)
799 qCDebug(KLEO_UI_LOG) <<
"KeySelectionDialog::slotCheckSelection()";
801 mCheckSelectionTimer->stop();
803 mSelectedKeys.clear();
805 if (!mKeyListView->isMultiSelection()) {
807 mSelectedKeys.push_back(item->key());
811 for (KeyListViewItem *it = mKeyListView->firstChild(); it; it = it->nextSibling()) {
812 if (it->isSelected()) {
813 mSelectedKeys.push_back(it->key());
817 mKeysToCheck.clear();
818 std::remove_copy_if(mSelectedKeys.begin(), mSelectedKeys.end(), std::back_inserter(mKeysToCheck), AlreadyChecked());
819 if (mKeysToCheck.empty()) {
820 mOkButton->setEnabled(!mSelectedKeys.empty() && checkKeyUsage(mSelectedKeys, mKeyUsage));
825 startValidatingKeyListing();
828void KeySelectionDialog::startValidatingKeyListing()
830 if (mKeysToCheck.empty()) {
836 mSavedOffsetY = mKeyListView->verticalScrollBar()->value();
839 mKeyListView->setEnabled(
false);
841 std::vector<GpgME::Key> smime;
842 std::vector<GpgME::Key> openpgp;
843 for (std::vector<GpgME::Key>::const_iterator it = mKeysToCheck.begin(); it != mKeysToCheck.end(); ++it) {
844 if (it->protocol() == GpgME::OpenPGP) {
845 openpgp.push_back(*it);
847 smime.push_back(*it);
851 if (!openpgp.empty()) {
852 Q_ASSERT(mOpenPGPBackend);
853 startKeyListJobForBackend(mOpenPGPBackend, openpgp,
true );
855 if (!smime.empty()) {
856 Q_ASSERT(mSMIMEBackend);
857 startKeyListJobForBackend(mSMIMEBackend, smime,
true );
860 Q_ASSERT(mListJobCount > 0);
863bool KeySelectionDialog::rememberSelection()
const
865 return mRememberCB && mRememberCB->isChecked();
868void KeySelectionDialog::slotRMB(KeyListViewItem *item,
const QPoint &p)
874 mCurrentContextMenuItem = item;
877 menu.
addAction(
i18n(
"Recheck Key"),
this, &KeySelectionDialog::slotRecheckKey);
881void KeySelectionDialog::slotRecheckKey()
883 if (!mCurrentContextMenuItem || mCurrentContextMenuItem->key().isNull()) {
887 mKeysToCheck.clear();
888 mKeysToCheck.push_back(mCurrentContextMenuItem->key());
891void KeySelectionDialog::slotTryOk()
893 if (!mSelectedKeys.empty() && checkKeyUsage(mSelectedKeys, mKeyUsage)) {
898void KeySelectionDialog::slotOk()
900 if (mCheckSelectionTimer->isActive()) {
901 slotCheckSelection();
905 if (!mSelectedKeys.empty() && checkKeyUsage(mSelectedKeys, mKeyUsage)) {
909 mStartSearchTimer->stop();
913void KeySelectionDialog::slotCancel()
915 mCheckSelectionTimer->stop();
916 mStartSearchTimer->stop();
920void KeySelectionDialog::slotSearch(
const QString &text)
926void KeySelectionDialog::slotSearch()
928 mStartSearchTimer->setSingleShot(
true);
929 mStartSearchTimer->start(sCheckSelectionDelay);
932void KeySelectionDialog::slotFilter()
934 if (mSearchText.isEmpty()) {
941 if (keyIdRegExp.match(mSearchText).hasMatch()) {
942 if (mSearchText.startsWith(QLatin1StringView(
"0X"))) {
944 filterByKeyID(mSearchText.mid(2));
947 filterByKeyIDOrUID(mSearchText);
951 filterByUID(mSearchText);
955void KeySelectionDialog::filterByKeyID(
const QString &keyID)
957 Q_ASSERT(keyID.
length() <= 16);
962 for (KeyListViewItem *item = mKeyListView->firstChild(); item; item = item->nextSibling()) {
968static bool anyUIDMatches(
const KeyListViewItem *item,
const QRegularExpression &rx)
974 const std::vector<GpgME::UserID> uids = item->key().userIDs();
975 for (
auto it = uids.begin(); it != uids.end(); ++it) {
983void KeySelectionDialog::filterByKeyIDOrUID(
const QString &str)
990 for (KeyListViewItem *item = mKeyListView->firstChild(); item; item = item->nextSibling()) {
995void KeySelectionDialog::filterByUID(
const QString &str)
1002 for (KeyListViewItem *item = mKeyListView->firstChild(); item; item = item->nextSibling()) {
1003 item->
setHidden(!anyUIDMatches(item, rx));
1007void KeySelectionDialog::showAllItems()
1009 for (KeyListViewItem *item = mKeyListView->firstChild(); item; item = item->nextSibling()) {
1014#include "moc_keyselectiondialog.cpp"
static KSharedConfig::Ptr openStateConfig(const QString &fileName=QString())
Q_SCRIPTABLE CaptureState status()
QString i18np(const char *singular, const char *plural, const TYPE &arg...)
QString i18nc(const char *context, const char *text, const TYPE &arg...)
QString xi18n(const char *text, const TYPE &arg...)
QString i18n(const char *text, const TYPE &arg...)
std::optional< QSqlQuery > query(const QString &queryStatement)
void information(QWidget *parent, const QString &text, const QString &title=QString(), const QString &dontShowAgainName=QString(), Options options=Notify)
void error(QWidget *parent, const QString &text, const QString &title, const KGuiItem &buttonOk, Options options=Notify)
bool isEmpty() const const
virtual QSize sizeHint() const const override
QRect boundingRect(QChar ch) const const
void linkActivated(const QString &link)
void setBuddy(QWidget *buddy)
void textChanged(const QString &text)
QMetaObject::Connection connect(const QObject *sender, PointerToMemberFunction signal, Functor functor)
bool disconnect(const QMetaObject::Connection &connection)
bool startDetached(const QString &program, const QStringList &arguments, const QString &workingDirectory, qint64 *pid)
QRegularExpressionMatch match(QStringView subjectView, qsizetype offset, MatchType matchType, MatchOptions matchOptions) const const
QString anchoredPattern(QStringView expression)
QString escape(QStringView str)
bool hasMatch() const const
QString findExecutable(const QString &executableName, const QStringList &paths)
QString arg(Args &&... args) const const
QString fromLatin1(QByteArrayView str)
QString fromUtf8(QByteArrayView str)
bool isEmpty() const const
qsizetype length() const const
QString & remove(QChar ch, Qt::CaseSensitivity cs)
bool startsWith(QChar c, Qt::CaseSensitivity cs) const const
QString toUpper() const const
QString trimmed() const const
QTestData & addRow(const char *format,...)
QString text(int column) const const