add more spacing
[personal-kdebase.git] / runtime / kcontrol / spellchecking / spellchecking.h
blobace47713ce341b0b26ed8827e5d6ef2bb59af1be
1 /*
3 Copyright 2008 Albert Astals Cid <aacid@kde.org>
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License as
7 published by the Free Software Foundation; either version 2 of
8 the License or (at your option) version 3 or any later version
9 accepted by the membership of KDE e.V. (or its successor approved
10 by the membership of KDE e.V.), which shall act as a proxy
11 defined in Section 14 of version 3 of the license.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #ifndef SONNETSPELLCHECKINGMODULE_H
24 #define SONNETSPELLCHECKINGMODULE_H
26 #include "kcmodule.h"
28 class KConfig;
30 namespace Sonnet
32 class ConfigWidget;
35 class SonnetSpellCheckingModule : public KCModule
37 Q_OBJECT
39 public:
40 SonnetSpellCheckingModule(QWidget* parent, const QVariantList&);
41 ~SonnetSpellCheckingModule();
43 void save();
44 void defaults();
46 private:
47 Sonnet::ConfigWidget *m_configWidget;
48 KConfig *m_config;
51 #endif