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