xref: /haiku/headers/private/interface/WindowPrivate.h (revision 3be9edf8da228afd9fec0390f408c964766122aa)
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 
14 const window_look kDesktopWindowLook = window_look(4);
15 const window_look kLeftTitledWindowLook = window_look(25);
16 
17 /* Private window feels */
18 
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 
24 /* Private window types */
25 
26 const window_type kWindowScreenWindow = window_type(1026);
27 
28 /* Private window flags */
29 
30 const uint32 kWindowScreenFlag = 0x10000;
31 const uint32 kAcceptKeyboardFocusFlag = 0x40000;
32 	// Accept keyboard input even if B_AVOID_FOCUS is set
33 
34 #endif // _WINDOW_PRIVATE_H
35