File indexing completed on 2024-05-12 04:38:19

0001 /*
0002     SPDX-FileCopyrightText: 2007 Andreas Pakulat <apaku@gmx.de>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #ifndef KDEVPLATFORM_UIPREFERENCES_H
0008 #define KDEVPLATFORM_UIPREFERENCES_H
0009 
0010 #include "configpage.h"
0011 
0012 namespace Ui{
0013     class UiConfig;
0014 }
0015 
0016 /**
0017  @author Andreas Pakulat <apaku@gmx.de>
0018 */
0019 
0020 class UiPreferences : public KDevelop::ConfigPage
0021 {
0022     Q_OBJECT
0023 public:
0024     explicit UiPreferences(QWidget* parent = nullptr);
0025 
0026     ~UiPreferences() override;
0027 
0028     QString name() const override;
0029     QString fullName() const override;
0030     QIcon icon() const override;
0031 
0032 public Q_SLOTS:
0033     // need to customize behaviour
0034     void apply() override;
0035 private:
0036     Ui::UiConfig* m_uiconfigUi;
0037 };
0038 
0039 #endif
0040