kwin/KWinInterface.h
Richard J. Moore 99fa5f16ed Added a new method to the DCOP interface that displays the window menu
for a specified WId.

svn path=/trunk/kdebase/kwin/; revision=70680
2000-11-12 20:25:21 +00:00

21 lines
405 B
C++

#ifndef KWIN_INTERFACE_H
#define KWIN_INTERFACE_H
#include <dcopobject.h>
class KWinInterface : virtual public DCOPObject
{
K_DCOP
k_dcop:
virtual ASYNC cascadeDesktop() = 0;
virtual ASYNC unclutterDesktop() = 0;
virtual ASYNC reconfigure() = 0;
virtual ASYNC killWindow() = 0;
virtual void doNotManage(QString)= 0;
virtual void showWindowMenuAt(unsigned long,int,int)= 0;
};
#endif