2000-03-24 22:23:02 +00:00
|
|
|
/*****************************************************************
|
2003-09-16 19:28:03 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
2000-03-24 22:23:02 +00:00
|
|
|
Copyright (C) 1999, 2000 Daniel M. Duley <mosfet@kde.org>
|
2003-09-16 19:28:03 +00:00
|
|
|
Copyright (C) 2003 Lubos Lunak <l.lunak@kde.org>
|
|
|
|
|
|
|
|
You can Freely distribute this program under the GNU General Public
|
|
|
|
License. See the file "COPYING" for the exact licensing terms.
|
2000-03-24 22:23:02 +00:00
|
|
|
******************************************************************/
|
2003-09-16 19:28:03 +00:00
|
|
|
|
2002-07-26 20:30:36 +00:00
|
|
|
#ifndef KWIN_PLUGINS_H
|
|
|
|
#define KWIN_PLUGINS_H
|
1999-12-24 01:36:47 +00:00
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
#include <kdecoration_plugins_p.h>
|
1999-12-24 01:36:47 +00:00
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
namespace KWinInternal
|
|
|
|
{
|
1999-12-24 01:36:47 +00:00
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
class PluginMgr
|
|
|
|
: public KDecorationPlugins
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PluginMgr();
|
|
|
|
protected:
|
|
|
|
virtual void error( const QString& error_msg );
|
|
|
|
};
|
1999-12-24 01:36:47 +00:00
|
|
|
|
2003-09-16 19:28:03 +00:00
|
|
|
} // namespace
|
1999-12-24 01:36:47 +00:00
|
|
|
|
|
|
|
#endif
|