KIdentityManagement

cryptographyeditorbackend.cpp
1// SPDX-FileCopyrightText: 2023 Claudio Cambra <claudio.cambra@kde.org>
2// SPDX-License-Identifier: LGPL-2.0-or-later
3
4#include "cryptographyeditorbackend.h"
5
6#include "cryptographybackendinterface.h"
7#include "identity.h"
8
9using namespace KIdentityManagementQuick;
10
11CryptographyEditorBackend::CryptographyEditorBackend(QObject *parent, const CryptographyBackendInterfacePtr &cryptoBackend)
12 : QObject{parent}
13 , mCryptoBackend(cryptoBackend)
14{
15 connect(this, &CryptographyEditorBackend::cryptographyBackendChanged, this, &CryptographyEditorBackend::openPgpKeyListModelChanged);
16 connect(this, &CryptographyEditorBackend::cryptographyBackendChanged, this, &CryptographyEditorBackend::smimeKeyListModelChanged);
17}
18
19CryptographyBackendInterfacePtr CryptographyEditorBackend::cryptographyBackend() const
20{
21 return mCryptoBackend;
22}
23
24void CryptographyEditorBackend::setCryptographyBackend(const CryptographyBackendInterfacePtr &cryptoBackend)
25{
26 if (cryptoBackend.get() == mCryptoBackend.get()) {
27 return;
28 }
29
30 mCryptoBackend = cryptoBackend;
31 Q_EMIT cryptographyBackendChanged();
32}
33
34QAbstractItemModel *CryptographyEditorBackend::openPgpKeyListModel() const
35{
36 if (!mCryptoBackend) {
37 return nullptr;
38 }
39 return mCryptoBackend->openPgpKeyListModel();
40}
41
42QAbstractItemModel *CryptographyEditorBackend::smimeKeyListModel() const
43{
44 if (!mCryptoBackend) {
45 return nullptr;
46 }
47 return mCryptoBackend->smimeKeyListModel();
48}
49
50KIdentityManagementCore::Identity CryptographyEditorBackend::identity() const
51{
52 return mCryptoBackend->identity();
53}
54
55void CryptographyEditorBackend::setIdentity(const KIdentityManagementCore::Identity &identity)
56{
57 mCryptoBackend->setIdentity(identity);
58 Q_EMIT identityChanged();
59}
60
61QModelIndex
62CryptographyEditorBackend::indexForIdentity(QAbstractItemModel *model, const KIdentityManagementCore::Identity &identity, const KeyUseTypes::KeyUse keyUse)
63{
64 Q_ASSERT(model);
65 const auto klmInterface = dynamic_cast<const KeyListModelInterface *>(model);
66 Q_ASSERT(klmInterface);
67 return klmInterface->indexForIdentity(identity, keyUse);
68}
69
70QString CryptographyEditorBackend::stringFromKeyByteArray(const QByteArray &key)
71{
72 return QString::fromUtf8(key);
73}
74
75#include "moc_cryptographyeditorbackend.cpp"
Q_EMITQ_EMIT
T * get() const const
QString fromUtf8(QByteArrayView str)
QFuture< ArgsType< Signal > > connect(Sender *sender, Signal signal)
This file is part of the KDE documentation.
Documentation copyright © 1996-2025 The KDE developers.
Generated on Fri Mar 28 2025 12:00:17 by doxygen 1.13.2 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.