2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-04-29 17:35:43 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 1999, 2000 Daniel M. Duley <mosfet@kde.org>
|
|
|
|
Copyright (C) 2003 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
|
2007-11-27 19:40:25 +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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#ifndef KWIN_PLUGINS_H
|
|
|
|
#define KWIN_PLUGINS_H
|
|
|
|
|
|
|
|
#include <kdecoration_plugins_p.h>
|
2013-04-08 09:05:42 +00:00
|
|
|
#include <kwinglobals.h>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2013-04-08 08:57:32 +00:00
|
|
|
class DecorationPlugin
|
2013-04-09 06:32:49 +00:00
|
|
|
: public QObject, public KDecorationPlugins
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2013-04-09 06:32:49 +00:00
|
|
|
Q_OBJECT
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
2013-04-08 09:05:42 +00:00
|
|
|
virtual ~DecorationPlugin();
|
2011-01-30 14:34:42 +00:00
|
|
|
virtual bool provides(Requirement);
|
2011-04-28 13:56:50 +00:00
|
|
|
/**
|
|
|
|
* @returns @c true if there is no decoration plugin.
|
|
|
|
**/
|
2013-04-09 06:11:58 +00:00
|
|
|
bool isDisabled() const;
|
2013-04-08 10:31:16 +00:00
|
|
|
|
|
|
|
bool hasShadows() const;
|
|
|
|
bool hasAlpha() const;
|
|
|
|
bool supportsAnnounceAlpha() const;
|
|
|
|
bool supportsTabbing() const;
|
|
|
|
bool supportsFrameOverlap() const;
|
|
|
|
bool supportsBlurBehind() const;
|
|
|
|
Qt::Corner closeButtonCorner();
|
|
|
|
|
2013-05-27 10:26:44 +00:00
|
|
|
QString supportInformation();
|
|
|
|
|
2013-08-23 12:50:39 +00:00
|
|
|
Q_SIGNALS:
|
|
|
|
void compositingToggled();
|
|
|
|
|
2013-04-09 06:32:49 +00:00
|
|
|
public Q_SLOTS:
|
2013-08-23 11:07:52 +00:00
|
|
|
void recreateDecorations();
|
2011-01-30 14:34:42 +00:00
|
|
|
protected:
|
|
|
|
virtual void error(const QString& error_msg);
|
2011-04-28 13:56:50 +00:00
|
|
|
private:
|
2013-04-09 06:11:58 +00:00
|
|
|
void setDisabled(bool noDecoration);
|
|
|
|
bool m_disabled;
|
2013-04-08 09:05:42 +00:00
|
|
|
KWIN_SINGLETON(DecorationPlugin)
|
2011-01-30 14:34:42 +00:00
|
|
|
};
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2013-04-08 10:31:16 +00:00
|
|
|
inline DecorationPlugin *decorationPlugin() {
|
|
|
|
return DecorationPlugin::self();
|
|
|
|
}
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|