kwin/plugins.h
Matthias Ettrich dd29e3723c faster configuration changes. No crashes when reconfiguring kwin
several times with invalid plugin strings (happens when running
today's kpersonalizer)

svn path=/trunk/kdebase/kwin/; revision=139725
2002-03-01 01:34:54 +00:00

42 lines
910 B
C++

/*****************************************************************
kwin - the KDE window manager
Copyright (C) 1999, 2000 Daniel M. Duley <mosfet@kde.org>
******************************************************************/
#ifndef __PLUGINS_H
#define __PLUGINS_H
#include <qpopupmenu.h>
#include <qstringlist.h>
class QFileInfo;
class KLibrary;
namespace KWinInternal {
class Client;
class Workspace;
class PluginMgr : public QObject
{
Q_OBJECT
public:
PluginMgr();
~PluginMgr();
Client *allocateClient(Workspace *ws, WId w, bool tool);
bool loadPlugin(QString name);
QString currentPlugin() { return pluginStr; }
public slots:
void updatePlugin();
signals:
void resetAllClients();
protected:
void shutdownKWin(const QString& error_msg);
Client* (*alloc_ptr)(Workspace *ws, WId w, int tool);
KLibrary *library;
QString pluginStr;
};
};
#endif