File indexing completed on 2024-04-21 04:57:00

0001 /* This file is part of the KDE project
0002 
0003    Copyright (C) 2008 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 #ifndef PLUGINSELECTOR_H
0011 #define PLUGINSELECTOR_H
0012 
0013 #include <KPluginWidget>
0014 
0015 class QDialog;
0016 
0017 class PluginSelector : public KPluginWidget
0018 {
0019     Q_OBJECT
0020 public:
0021     PluginSelector(QDialog *parent);
0022     ~PluginSelector() override;
0023 
0024 private Q_SLOTS:
0025     void saveState();
0026     void loadDefaults();
0027 };
0028 
0029 #endif