2010-01-19 13:44:22 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2009 Martin Gräßlin <kde@martin-graesslin.com>
|
|
|
|
|
|
|
|
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) any later version.
|
|
|
|
|
|
|
|
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 KWINDECORATIONCONFIGDIALOG_H
|
|
|
|
#define KWINDECORATIONCONFIGDIALOG_H
|
|
|
|
#include <QWidget>
|
|
|
|
#include <kdialog.h>
|
|
|
|
#include <kdecoration.h>
|
|
|
|
#include "ui_config.h"
|
2010-04-23 19:44:50 +00:00
|
|
|
#include "ui_auroraeconfig.h"
|
2010-01-19 13:44:22 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2010-04-23 19:44:50 +00:00
|
|
|
class KWinAuroraeConfigForm : public QWidget, public Ui::KWinAuroraeConfigForm
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
|
|
|
explicit KWinAuroraeConfigForm(QWidget* parent);
|
2013-01-04 13:02:44 +00:00
|
|
|
void enableNoSideBorderSupport(bool enable);
|
2010-04-23 19:44:50 +00:00
|
|
|
};
|
|
|
|
|
2010-01-19 13:44:22 +00:00
|
|
|
class KWinDecorationConfigForm : public QWidget, public Ui::KWinDecorationConfigForm
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
|
|
|
explicit KWinDecorationConfigForm(QWidget* parent);
|
2010-01-19 13:44:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class KWinDecorationConfigDialog : public KDialog, public KDecorationDefines
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
|
|
|
KWinDecorationConfigDialog(QString decoLib, const QList<QVariant>& borderSizes,
|
|
|
|
KDecorationDefines::BorderSize size, QWidget* parent = 0,
|
|
|
|
Qt::WFlags flags = 0);
|
|
|
|
~KWinDecorationConfigDialog();
|
2010-01-19 13:44:22 +00:00
|
|
|
|
|
|
|
KDecorationDefines::BorderSize borderSize() const;
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
signals:
|
|
|
|
void pluginSave(KConfigGroup& group);
|
2010-01-19 13:44:22 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
private slots:
|
|
|
|
void slotSelectionChanged();
|
|
|
|
void slotAccepted();
|
|
|
|
void slotDefault();
|
2010-01-19 13:44:22 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
private:
|
|
|
|
int borderSizeToIndex(KDecorationDefines::BorderSize size, const QList<QVariant>& sizes);
|
|
|
|
QString styleToConfigLib(const QString& styleLib) const;
|
2010-01-19 13:44:22 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
private:
|
|
|
|
KWinDecorationConfigForm* m_ui;
|
|
|
|
QList<QVariant> m_borderSizes;
|
|
|
|
KSharedConfigPtr m_kwinConfig;
|
2010-01-19 13:44:22 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
QObject*(*allocatePlugin)(KConfigGroup& conf, QWidget* parent);
|
|
|
|
QObject* m_pluginObject;
|
|
|
|
QWidget* m_pluginConfigWidget;
|
2010-01-19 13:44:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace KWin
|
|
|
|
|
|
|
|
#endif // KWINDECORATIONCONFIGDIALOG_H
|