2007-04-29 17:35:43 +00:00
|
|
|
/*
|
2010-01-19 13:56:57 +00:00
|
|
|
This is the new kwindecoration kcontrol module
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:56:57 +00:00
|
|
|
Copyright (c) 2001
|
|
|
|
Karol Szwed <gallium@kde.org>
|
|
|
|
http://gallium.n3.net/
|
|
|
|
Copyright 2009, 2010 Martin Gräßlin <kde@martin-graesslin.com>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:56:57 +00:00
|
|
|
Supports new kwin configuration plugins, and titlebar button position
|
|
|
|
modification via dnd interface.
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:56:57 +00:00
|
|
|
Based on original "kwintheme" (Window Borders)
|
|
|
|
Copyright (C) 2001 Rik Hemsley (rikkus) <rik@kde.org>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
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, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef KWINDECORATION_H
|
|
|
|
#define KWINDECORATION_H
|
|
|
|
|
|
|
|
#include <kcmodule.h>
|
|
|
|
#include <kconfig.h>
|
|
|
|
|
|
|
|
#include <kdecoration.h>
|
|
|
|
|
2010-01-19 13:44:22 +00:00
|
|
|
#include "ui_decoration.h"
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:44:22 +00:00
|
|
|
class QSortFilterProxyModel;
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
class DecorationModel;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-01-19 13:44:22 +00:00
|
|
|
class KWinDecorationForm : public QWidget, public Ui::KWinDecorationForm
|
2007-04-29 17:35:43 +00:00
|
|
|
{
|
2010-01-19 13:44:22 +00:00
|
|
|
Q_OBJECT
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
|
|
|
explicit KWinDecorationForm(QWidget* parent);
|
2010-01-19 13:44:22 +00:00
|
|
|
};
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
class KWinDecorationModule : public KCModule, public KDecorationDefines
|
|
|
|
{
|
2010-01-19 13:56:57 +00:00
|
|
|
Q_OBJECT
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
|
|
|
KWinDecorationModule(QWidget* parent, const QVariantList &);
|
|
|
|
~KWinDecorationModule();
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
virtual void load();
|
|
|
|
virtual void save();
|
|
|
|
virtual void defaults();
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
QString quickHelp() const;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2012-01-12 10:28:02 +00:00
|
|
|
int itemWidth() const;
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
signals:
|
|
|
|
void pluginLoad(const KConfigGroup& conf);
|
|
|
|
void pluginSave(KConfigGroup &conf);
|
|
|
|
void pluginDefaults();
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
protected slots:
|
|
|
|
// Allows us to turn "save" on
|
|
|
|
void slotSelectionChanged();
|
|
|
|
void slotConfigureButtons();
|
|
|
|
void slotGHNSClicked();
|
|
|
|
void slotConfigureDecoration();
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
private:
|
|
|
|
void readConfig(const KConfigGroup& conf);
|
|
|
|
void writeConfig(KConfigGroup &conf);
|
2010-01-19 13:44:22 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KSharedConfigPtr kwinConfig;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
KWinDecorationForm* m_ui;
|
|
|
|
bool m_showTooltips;
|
|
|
|
bool m_customPositions;
|
|
|
|
QString m_leftButtons;
|
|
|
|
QString m_rightButtons;
|
2010-01-19 13:44:22 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
DecorationModel* m_model;
|
|
|
|
QSortFilterProxyModel* m_proxyModel;
|
|
|
|
bool m_configLoaded;
|
2007-04-29 17:35:43 +00:00
|
|
|
};
|
|
|
|
|
2010-01-19 13:44:22 +00:00
|
|
|
} //namespace
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#endif
|