Mailcommon

filteractionexec.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 // FilterActionExec - execute command
16 // Execute a shell command
17 //=============================================================================
18 class FilterActionExec : public FilterActionWithCommand
19 {
20  Q_OBJECT
21 public:
22  explicit FilterActionExec(QObject *parent = nullptr);
23  [[nodiscard]] ReturnCode process(ItemContext &context, bool applyOnOutbound) const override;
24  [[nodiscard]] SearchRule::RequiredPart requiredPart() const override;
25  static FilterAction *newAction();
26  [[nodiscard]] QString informationAboutNotValidAction() const override;
27 };
28 }
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 Tue Nov 28 2023 03:59:04 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.