xref: /haiku/headers/private/interface/WindowPrivate.h (revision 3e216965baa8d58a67bf7372e2bfa13d999f5a9d)
1 /*
2  * Copyright 2005, 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 
23 /* Private window types */
24 
25 const window_type kWindowScreenWindow = window_type(1026);
26 
27 /* Private window flags */
28 
29 const uint32 kWorkspacesWindowFlag = 0x8000;
30 const uint32 kWindowScreenFlag = 0x10000;
31 
32 #endif // _WINDOW_PRIVATE_H
33