Mailcommon

filteractionencrypt.h
1/*
2 * SPDX-FileCopyrightText: 2017 Daniel Vrátil <dvratil@kde.org>
3 *
4 * SPDX-License-Identifier: GPL-2.0-or-later
5 *
6 */
7
8#pragma once
9
10#include "filteractionwithcrypto.h"
11
12#include <gpgme++/key.h>
13
14#include <Libkleo/KeyCache>
15
16namespace MailCommon
17{
18class FilterActionEncrypt : public FilterActionWithCrypto
19{
21public:
22 explicit FilterActionEncrypt(QObject *parent = nullptr);
23 ~FilterActionEncrypt() override;
24
25 static FilterAction *newAction();
26
27 [[nodiscard]] QString displayString() const override;
28
29 [[nodiscard]] QString argsAsString() const override;
30 void argsFromString(const QString &argsStr) override;
31
32 [[nodiscard]] SearchRule::RequiredPart requiredPart() const override;
33 [[nodiscard]] FilterAction::ReturnCode process(ItemContext &context, bool applyOnOutbound) const override;
34
35 [[nodiscard]] bool isEmpty() const override;
36
37 [[nodiscard]] QString informationAboutNotValidAction() const override;
38
39 [[nodiscard]] QWidget *createParamWidget(QWidget *parent) const override;
40 void setParamWidgetValue(QWidget *paramWidget) const override;
41 void applyParamWidgetValue(QWidget *paramWidget) override;
42
43 [[nodiscard]] GpgME::Key key() const;
44
45 [[nodiscard]] bool reencrypt() const;
46
47private:
48 std::shared_ptr<const Kleo::KeyCache> mKeyCache;
49 GpgME::Key mKey;
50 bool mReencrypt = false;
51};
52} // namespace MailCommon
ReturnCode
Describes the possible return codes of filter processing:
RequiredPart
Possible required parts.
Definition searchrule.h:68
The filter dialog.
Q_OBJECTQ_OBJECT
QObject * parent() const const
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:14:00 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.