aa3eb43071
- cleanup k menu, added configurable bookmarks menu - unclutter/cascade in window menu - logout from kdesktop without warning message - kicker menu adjusts on reconfigure() - desktop menu off by default (now that all functionality is visible otherwise) - killWindow in kwin's dcop interface Patch tested and confirmed by coolo and Matthias Elter. svn path=/trunk/kdebase/kwin/; revision=64783
20 lines
346 B
C++
20 lines
346 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;
|
|
|
|
};
|
|
|
|
#endif
|