SATDecorator implements event handling and handles the stacking api requests.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38170 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Clemens Zeidler
2010-08-17 06:41:35 +00:00
parent c0494bc592
commit 19f43b9f6a
8 changed files with 273 additions and 17 deletions
@@ -0,0 +1,22 @@
#ifndef STACK_AND_TILE_PRIVATE_H
#define STACK_AND_TILE_PRIVATE_H
namespace BPrivate {
const int32 kMagicSATIdentifier = 'SATI';
enum sat_messages {
kAddWindowToStack,
kRemoveWindowFromStack,
kRemoveWindowFromStackAt,
kCountWindowsOnStack,
kWindowOnStackAt,
kStackHasWindow
};
};
#endif