1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
/*
SPDX-FileCopyrightText: 2016-2025 Laurent Montel <montel@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include <MessageViewer/ViewerPluginInterface>
class KActionCollection;
class QActionGroup;
namespace MessageViewer
{
class ViewerPluginExternalscriptInterface : public ViewerPluginInterface
{
Q_OBJECT
public:
explicit ViewerPluginExternalscriptInterface(KActionCollection *ac, QWidget *parent = nullptr);
~ViewerPluginExternalscriptInterface() override;
[[nodiscard]] QList<QAction *> actions() const override;
[[nodiscard]] ViewerPluginInterface::SpecificFeatureTypes featureTypes() const override;
void execute() override;
void setText(const QString &text) override;
void setMessage(const KMime::Message::Ptr &msg) override;
void refreshActionList(KActionCollection *ac) override;
void setMessageItem(const Akonadi::Item &item) override;
private Q_SLOTS:
void slotScriptActivated(QAction *act);
Q_SIGNALS:
void configChanged();
private:
void createAction(KActionCollection *ac);
void clear();
[[nodiscard]] QStringList adaptArguments(const QStringList &scriptArguments);
void slotConfigure();
QList<QAction *> mAction;
QStringList mCurrentInfo;
QString mText;
QString mAkonadiUrl;
KMime::Message::Ptr mMessage;
QActionGroup *mActionGroup = nullptr;
};
}
|