File indexing completed on 2024-05-05 12:21:10

0001 /*
0002     SPDX-FileCopyrightText: 2000 David Faure <faure@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 #ifndef plugin_spellcheck_h
0008 #define plugin_spellcheck_h
0009 
0010 #include <kparts/plugin.h>
0011 
0012 class PluginSpellCheck : public KParts::Plugin
0013 {
0014     Q_OBJECT
0015 public:
0016     PluginSpellCheck(QObject *parent = nullptr, const QVariantList & = QVariantList());
0017     ~PluginSpellCheck() override;
0018 
0019 public Q_SLOTS:
0020     void slotSpellCheck();
0021 };
0022 
0023 #endif