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

0001 /* This file is part of the KDE project
0002 
0003    Copyright (C) 2006 Manolo Valdes <nolis71cu@gmail.com>
0004    Copyright (C) 2009 Matthias Fuchs <mat69@gmx.net>
0005 
0006    This program is free software; you can redistribute it and/or
0007    modify it under the terms of the GNU General Public
0008    License as published by the Free Software Foundation; either
0009    version 2 of the License, or (at your option) any later version.
0010 */
0011 
0012 #ifndef DLGMETALINK_H
0013 #define DLGMETALINK_H
0014 
0015 #include "ui_dlgmetalink.h"
0016 
0017 #include <KCModule>
0018 
0019 class DlgSettingsWidget : public KCModule
0020 {
0021     Q_OBJECT
0022 public:
0023     explicit DlgSettingsWidget(QObject *parent = nullptr, const KPluginMetaData &args = {});
0024     ~DlgSettingsWidget() override;
0025 
0026 public Q_SLOTS:
0027     void save() override;
0028     void load() override;
0029 
0030 private:
0031     Ui::DlgMetalink ui;
0032 };
0033 
0034 #endif // DLGMETALINK_H