2000-05-05 18:53:37 +00:00
|
|
|
#ifndef KWIN_INTERFACE_H
|
|
|
|
#define KWIN_INTERFACE_H
|
2000-05-05 10:05:12 +00:00
|
|
|
|
|
|
|
#include <dcopobject.h>
|
|
|
|
|
|
|
|
class KWinInterface : virtual public DCOPObject
|
|
|
|
{
|
|
|
|
K_DCOP
|
|
|
|
|
2000-05-05 18:53:37 +00:00
|
|
|
k_dcop:
|
2000-06-22 21:57:39 +00:00
|
|
|
|
2000-06-08 17:05:51 +00:00
|
|
|
virtual ASYNC cascadeDesktop() = 0;
|
|
|
|
virtual ASYNC unclutterDesktop() = 0;
|
2000-06-22 21:57:39 +00:00
|
|
|
virtual ASYNC reconfigure() = 0;
|
2000-05-05 18:53:37 +00:00
|
|
|
|
2000-05-05 10:05:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|