File indexing completed on 2024-12-22 04:46:07
0001 /* 0002 SPDX-FileCopyrightText: 2020-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 #include "libruqolawidgets_export.h" 0010 #include <QObject> 0011 class PluginTextInterface; 0012 class LIBRUQOLAWIDGETS_EXPORT PluginText : public QObject 0013 { 0014 Q_OBJECT 0015 public: 0016 explicit PluginText(QObject *parent = nullptr); 0017 ~PluginText() override; 0018 0019 virtual PluginTextInterface *createInterface(QObject *parent) = 0; 0020 0021 Q_SIGNALS: 0022 void errorMessage(const QString &message); 0023 void successMessage(const QString &message); 0024 };