a2c3696df5
I remember that I removed those already some time ago. Somebody keeps believing that KWin has something to do with a) KDE startup and b) KDE Exit, grmbl. This is not true, it's ksmserver who does this. Unfortunatly I cannot remove the "logout" keybindings due to the translations. It rather belongs into kdesktopbindings than kwinbindings. Please, guys, kwin is a *window* manager, not a desktop (seems like a neverending story...) svn path=/trunk/kdebase/kwin/; revision=66503
38 lines
549 B
C++
38 lines
549 B
C++
/*****************************************************************
|
|
kwin - the KDE window manager
|
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
******************************************************************/
|
|
|
|
#ifndef EVENTS_H
|
|
#define EVENTS_H
|
|
|
|
class Events
|
|
{
|
|
public:
|
|
|
|
enum Event {
|
|
Activate,
|
|
Close,
|
|
Iconify,
|
|
DeIconify,
|
|
Maximize,
|
|
UnMaximize,
|
|
Sticky,
|
|
UnSticky,
|
|
New,
|
|
Delete,
|
|
TransNew,
|
|
TransDelete,
|
|
ShadeUp,
|
|
ShadeDown,
|
|
MoveStart,
|
|
MoveEnd,
|
|
ResizeStart,
|
|
ResizeEnd
|
|
};
|
|
|
|
static void raise( Event );
|
|
};
|
|
|
|
#endif
|