File indexing completed on 2024-05-12 16:41:59

0001 /*
0002     SPDX-FileCopyrightText: 2014-2016 Christian Dávid <christian-david@web.de>
0003     SPDX-FileCopyrightText: 2017-2018 Łukasz Wojniłowicz <lukasz.wojnilowicz@gmail.com>
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef KSETTINGSKMYMONEY_H
0008 #define KSETTINGSKMYMONEY_H
0009 
0010 #include <KConfigDialog>
0011 
0012 /**
0013  * @brief The general settings dialog
0014  */
0015 class KSettingsKMyMoney : public KConfigDialog
0016 {
0017 public:
0018     explicit KSettingsKMyMoney(QWidget *parent, const QString &name, KCoreConfigSkeleton *config);
0019 
0020 Q_SIGNALS:
0021     void pluginsChanged();
0022 
0023 private Q_SLOTS:
0024     void slotPluginsChanged(bool changed);
0025 };
0026 
0027 
0028 #endif /* KSETTINGSKMYMONEY_H */