2014-10-31 06:53:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2014 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License or (at your option) version 3 or any later version
|
|
|
|
* accepted by the membership of KDE e.V. (or its successor approved
|
|
|
|
* by the membership of KDE e.V.), which shall act as a proxy
|
|
|
|
* defined in Section 14 of version 3 of the license.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
#ifndef KDECORATIONS_KCM_H
|
|
|
|
#define KDECORATIONS_KCM_H
|
|
|
|
|
|
|
|
#include <kcmodule.h>
|
2014-12-04 15:28:06 +00:00
|
|
|
#include <ui_kcm.h>
|
2014-12-09 15:07:27 +00:00
|
|
|
#include <QAbstractItemModel>
|
2014-10-31 06:53:04 +00:00
|
|
|
|
2014-12-04 16:35:08 +00:00
|
|
|
class QSortFilterProxyModel;
|
2015-01-28 08:58:47 +00:00
|
|
|
class QQuickView;
|
2014-12-04 16:35:08 +00:00
|
|
|
|
2014-10-31 06:53:04 +00:00
|
|
|
namespace KDecoration2
|
|
|
|
{
|
|
|
|
namespace Preview
|
|
|
|
{
|
|
|
|
class PreviewBridge;
|
2014-12-09 15:07:27 +00:00
|
|
|
class ButtonsModel;
|
2014-10-31 06:53:04 +00:00
|
|
|
}
|
|
|
|
namespace Configuration
|
|
|
|
{
|
|
|
|
class DecorationsModel;
|
|
|
|
|
2014-12-04 15:28:06 +00:00
|
|
|
class ConfigurationForm : public QWidget, public Ui::KCMForm
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit ConfigurationForm(QWidget* parent);
|
|
|
|
};
|
|
|
|
|
2014-10-31 06:53:04 +00:00
|
|
|
class ConfigurationModule : public KCModule
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit ConfigurationModule(QWidget *parent = nullptr, const QVariantList &args = QVariantList());
|
|
|
|
virtual ~ConfigurationModule();
|
|
|
|
|
2015-01-16 01:20:15 +00:00
|
|
|
bool eventFilter(QObject *watched, QEvent *e) override;
|
|
|
|
|
2014-10-31 06:53:04 +00:00
|
|
|
public Q_SLOTS:
|
|
|
|
void defaults() override;
|
|
|
|
void load() override;
|
|
|
|
void save() override;
|
2017-02-23 15:40:04 +00:00
|
|
|
//what index is in the model the theme saved as current? needed to move the view at the proper index right at startup
|
|
|
|
int savedIndex() const;
|
2014-10-31 06:53:04 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void showEvent(QShowEvent *ev) override;
|
|
|
|
|
|
|
|
private:
|
2014-12-05 09:15:41 +00:00
|
|
|
void showKNS(const QString &config);
|
2015-01-16 01:20:15 +00:00
|
|
|
void updateColors();
|
2014-10-31 06:53:04 +00:00
|
|
|
DecorationsModel *m_model;
|
2014-12-04 16:35:08 +00:00
|
|
|
QSortFilterProxyModel *m_proxyModel;
|
2014-12-04 15:28:06 +00:00
|
|
|
ConfigurationForm *m_ui;
|
2015-01-28 08:58:47 +00:00
|
|
|
QQuickView *m_quickView;
|
2014-12-09 15:07:27 +00:00
|
|
|
Preview::ButtonsModel *m_leftButtons;
|
|
|
|
Preview::ButtonsModel *m_rightButtons;
|
|
|
|
Preview::ButtonsModel *m_availableButtons;
|
2014-10-31 06:53:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|