You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
405 B
21 lines
405 B
#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
|
|
|