1/*
2 * Copyright 2005-2008, Jérôme Duval, jerome.duval@free.fr.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _WINDOW_PRIVATE_H
6#define _WINDOW_PRIVATE_H
7
8
9#include <Window.h>
10
11
12/* Private window looks */
13
14const window_look kDesktopWindowLook = window_look(4);
15const window_look kLeftTitledWindowLook = window_look(25);
16
17/* Private window feels */
18
19const window_feel kDesktopWindowFeel = window_feel(1024);
20const window_feel kMenuWindowFeel = window_feel(1025);
21const window_feel kWindowScreenFeel = window_feel(1026);
22const window_feel kPasswordWindowFeel = window_feel(1027);
23const window_feel kOffscreenWindowFeel = window_feel(1028);
24
25/* Private window types */
26
27const window_type kWindowScreenWindow = window_type(1026);
28
29/* Private window flags */
30
31const uint32 kWindowScreenFlag = 0x10000;
32const uint32 kAcceptKeyboardFocusFlag = 0x40000;
33	// Accept keyboard input even if B_AVOID_FOCUS is set
34
35#endif // _WINDOW_PRIVATE_H
36