78a7c08049
Prefix all the #ifndef #define ... #endif symbols with KWIN_ , just in case somebody uses CLIENT_H or so too. And don't include config.h . svn path=/trunk/kdebase/kwin/; revision=168940
39 lines
581 B
C++
39 lines
581 B
C++
/*****************************************************************
|
|
kwin - the KDE window manager
|
|
|
|
Copyright (C) 1999, 2000 Matthias Ettrich <ettrich@kde.org>
|
|
******************************************************************/
|
|
|
|
#ifndef KWIN_EVENTS_H
|
|
#define KWIN_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,
|
|
DesktopChange = 100
|
|
};
|
|
|
|
static void raise( Event );
|
|
};
|
|
|
|
#endif
|