You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 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