2000-03-24 22:23:02 +00:00
|
|
|
/*****************************************************************
|
|
|
|
kwin - the KDE window manager
|
2000-09-25 15:30:51 +00:00
|
|
|
|
2000-03-24 22:23:02 +00:00
|
|
|
Copyright (C) 1999, 2000 Daniel M. Duley <mosfet@kde.org>
|
|
|
|
******************************************************************/
|
1999-12-24 01:36:47 +00:00
|
|
|
#ifndef __PLUGINS_H
|
|
|
|
#define __PLUGINS_H
|
|
|
|
|
|
|
|
#include <qpopupmenu.h>
|
|
|
|
#include <qstringlist.h>
|
2002-07-05 20:05:22 +00:00
|
|
|
#include <netwm_def.h>
|
1999-12-24 01:36:47 +00:00
|
|
|
|
2001-02-20 01:20:38 +00:00
|
|
|
class QFileInfo;
|
2002-02-24 10:41:20 +00:00
|
|
|
class KLibrary;
|
2001-02-20 01:20:38 +00:00
|
|
|
|
|
|
|
namespace KWinInternal {
|
1999-12-24 01:36:47 +00:00
|
|
|
|
|
|
|
class Client;
|
|
|
|
class Workspace;
|
|
|
|
|
|
|
|
class PluginMgr : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
PluginMgr();
|
|
|
|
~PluginMgr();
|
2002-07-05 20:05:22 +00:00
|
|
|
Client *createClient(Workspace *ws, WId w, NET::WindowType type);
|
2002-03-01 01:34:54 +00:00
|
|
|
bool loadPlugin(QString name);
|
2000-09-11 05:30:24 +00:00
|
|
|
QString currentPlugin() { return pluginStr; }
|
2001-02-15 23:19:07 +00:00
|
|
|
public slots:
|
2001-06-07 11:35:06 +00:00
|
|
|
void updatePlugin();
|
1999-12-24 01:36:47 +00:00
|
|
|
signals:
|
|
|
|
void resetAllClients();
|
|
|
|
protected:
|
2001-06-07 11:35:06 +00:00
|
|
|
void shutdownKWin(const QString& error_msg);
|
2002-07-05 20:05:22 +00:00
|
|
|
Client* (*create_ptr)(Workspace *ws, WId w, NET::WindowType type);
|
|
|
|
Client* (*old_create_ptr)(Workspace *ws, WId w, int tool);
|
2002-02-24 10:41:20 +00:00
|
|
|
KLibrary *library;
|
2000-09-11 05:30:24 +00:00
|
|
|
QString pluginStr;
|
1999-12-24 01:36:47 +00:00
|
|
|
};
|
|
|
|
|
2001-02-20 01:20:38 +00:00
|
|
|
};
|
1999-12-24 01:36:47 +00:00
|
|
|
|
|
|
|
#endif
|