Mailcommon

filteractionpipethrough.h
1 /*
2  * SPDX-FileCopyrightText: 1996-1998 Stefan Taferner <[email protected]>
3  *
4  * SPDX-License-Identifier: GPL-2.0-or-later
5  *
6  */
7 
8 #pragma once
9 
10 #include "filteractionwithcommand.h"
11 
12 namespace MailCommon
13 {
14 //=============================================================================
15 // FilterActionPipeThrough - use external filter app
16 // External message filter: executes a shell command with message
17 // on stdin; altered message is expected on stdout.
18 //=============================================================================
19 class FilterActionPipeThrough : public FilterActionWithCommand
20 {
21  Q_OBJECT
22 public:
23  explicit FilterActionPipeThrough(QObject *parent = nullptr);
24  Q_REQUIRED_RESULT ReturnCode process(ItemContext &context, bool applyOnOutbound) const override;
25  Q_REQUIRED_RESULT SearchRule::RequiredPart requiredPart() const override;
26  static FilterAction *newAction();
27  Q_REQUIRED_RESULT QString informationAboutNotValidAction() const override;
28 };
29 }
Q_OBJECTQ_OBJECT
RequiredPart
Possible required parts.
Definition: searchrule.h:68
ReturnCode
Describes the possible return codes of filter processing:
Definition: filteraction.h:45
FilterAction(const QString &name, const QString &label, QObject *parent=nullptr)
Creates a new filter action.
The filter dialog.
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Sun Jun 4 2023 03:58:00 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.