2005-02-02 14:05:21 +03:00
|
|
|
/*
|
2008-03-14 14:19:57 +03:00
|
|
|
* Copyright 2005-2008, Jérôme Duval, jerome.duval@free.fr.
|
2005-02-02 14:05:21 +03:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef _WINDOW_PRIVATE_H
|
|
|
|
#define _WINDOW_PRIVATE_H
|
|
|
|
|
2005-07-06 00:28:40 +04:00
|
|
|
|
2005-02-02 19:45:31 +03:00
|
|
|
#include <Window.h>
|
|
|
|
|
2005-07-06 00:28:40 +04:00
|
|
|
|
2005-02-02 14:05:21 +03:00
|
|
|
/* Private window looks */
|
|
|
|
|
|
|
|
const window_look kDesktopWindowLook = window_look(4);
|
|
|
|
const window_look kLeftTitledWindowLook = window_look(25);
|
|
|
|
|
|
|
|
/* Private window feels */
|
|
|
|
|
|
|
|
const window_feel kDesktopWindowFeel = window_feel(1024);
|
2005-02-02 16:54:30 +03:00
|
|
|
const window_feel kMenuWindowFeel = window_feel(1025);
|
2005-07-06 00:28:40 +04:00
|
|
|
const window_feel kWindowScreenFeel = window_feel(1026);
|
2008-10-22 15:51:23 +04:00
|
|
|
const window_feel kPasswordWindowFeel = window_feel(1027);
|
2011-07-25 07:32:14 +04:00
|
|
|
const window_feel kOffscreenWindowFeel = window_feel(1028);
|
2005-02-02 14:05:21 +03:00
|
|
|
|
|
|
|
/* Private window types */
|
|
|
|
|
|
|
|
const window_type kWindowScreenWindow = window_type(1026);
|
|
|
|
|
2005-02-02 16:54:30 +03:00
|
|
|
/* Private window flags */
|
|
|
|
|
|
|
|
const uint32 kWindowScreenFlag = 0x10000;
|
2009-10-07 20:26:32 +04:00
|
|
|
const uint32 kAcceptKeyboardFocusFlag = 0x40000;
|
|
|
|
// Accept keyboard input even if B_AVOID_FOCUS is set
|
2005-02-02 16:54:30 +03:00
|
|
|
|
2005-07-06 00:28:40 +04:00
|
|
|
#endif // _WINDOW_PRIVATE_H
|