a982506a75
except if you press the hide buttons. That needs fixing. svn path=/trunk/kdebase/kwin/; revision=48570
17 lines
275 B
C++
17 lines
275 B
C++
#ifndef KWIN_INTERFACE_H
|
|
#define KWIN_INTERFACE_H
|
|
|
|
#include <dcopobject.h>
|
|
|
|
class KWinInterface : virtual public DCOPObject
|
|
{
|
|
K_DCOP
|
|
|
|
k_dcop:
|
|
|
|
virtual void updateClientArea() = 0;
|
|
virtual QRect clientArea() = 0;
|
|
virtual QRect edgeClientArea() = 0;
|
|
};
|
|
|
|
#endif
|