File indexing completed on 2024-05-19 05:00:08

0001 /* This file is part of the KDE project
0002 
0003    Copyright (C) 2006 Manolo Valdes <nolis71cu@gmail.com>
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 DLGMULTISEGKIO_H
0012 #define DLGMULTISEGKIO_H
0013 
0014 #include "ui_dlgmultisegkio.h"
0015 
0016 #include <KCModule>
0017 
0018 class DlgSettingsWidget : public KCModule
0019 {
0020     Q_OBJECT
0021 public:
0022     explicit DlgSettingsWidget(QObject *parent = nullptr, const KPluginMetaData &data = {});
0023     ~DlgSettingsWidget() override;
0024 
0025 public Q_SLOTS:
0026     void save() override;
0027     void load() override;
0028 
0029 private:
0030     Ui::DlgMultiSeg ui;
0031 };
0032 
0033 #endif // DLGMULTISEGKIO_H