File indexing completed on 2024-04-28 04:57:29

0001 /* This file is part of the KDE project
0002 
0003    Copyright (C) 2007 Lukas Appelhans <l.appelhans@gmx.de>
0004 
0005    This program is free software; you can redistribute it and/or
0006    modify it under the terms of the GNU General Public
0007    License as published by the Free Software Foundation; either
0008    version 2 of the License, or (at your option) any later version.
0009 */
0010 
0011 #ifndef BTSETTINGSWIDGET_H
0012 #define BTSETTINGSWIDGET_H
0013 
0014 #include <ui_btsettingswidget.h>
0015 
0016 #include <KCModule>
0017 
0018 class BTSettingsWidget : public KCModule, public Ui::BTSettingsWidget
0019 {
0020     Q_OBJECT
0021 public:
0022     BTSettingsWidget(QObject *parent = nullptr, const KPluginMetaData &args = {});
0023 
0024 public Q_SLOTS:
0025     void load() override;
0026     void save() override;
0027     void defaults() override;
0028 };
0029 
0030 #endif