File indexing completed on 2024-04-28 04:58:12

0001 /*
0002     This file is part of the KDE project.
0003 
0004     SPDX-FileCopyrightText: 2021 Stefano Crocco <posta@stefanocrocco.it>
0005 
0006     SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0007 */
0008 
0009 #ifndef KONQ_SPELLCHECKINGCONFIGURATIONDISPATCHER_H
0010 #define KONQ_SPELLCHECKINGCONFIGURATIONDISPATCHER_H
0011 
0012 #include <QObject>
0013 
0014 #include <libkonq_export.h>
0015 
0016 class LIBKONQ_EXPORT KonqSpellCheckingConfigurationDispatcher : public QObject
0017 {
0018     Q_OBJECT
0019 
0020 public:
0021     static KonqSpellCheckingConfigurationDispatcher* self();
0022 
0023 signals:
0024     void spellCheckingConfigurationChanged(bool enabled);
0025 
0026 };
0027 
0028 #endif // KONQ_SPELLCHECKINGCONFIGURATIONDISPATCHER_H