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.
38 lines
549 B
38 lines
549 B
/***************************************************************** |
|
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
|
|
|