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 const window_feel kOffscreenWindowFeel = window_feel(1028); 24 25 /* Private window types */ 26 27 const window_type kWindowScreenWindow = window_type(1026); 28 29 /* Private window flags */ 30 31 const uint32 kWindowScreenFlag = 0x10000; 32 const uint32 kAcceptKeyboardFocusFlag = 0x40000; 33 // Accept keyboard input even if B_AVOID_FOCUS is set 34 35 #endif // _WINDOW_PRIVATE_H 36