As it turns out, window_info::type is really the window's "feel".
Basic support for the desktop window feel: WinBorder will now resize a window with kDesktopWindowFeel to span over the whole screen. Minor cleanup. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@13462 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -22,7 +22,7 @@ struct window_info {
|
||||
uint32 workspaces;
|
||||
|
||||
int32 layer; // whatever this is...
|
||||
uint32 type; // see below
|
||||
uint32 feel;
|
||||
uint32 flags;
|
||||
int32 window_left;
|
||||
int32 window_top;
|
||||
@@ -37,14 +37,6 @@ struct client_window_info : window_info {
|
||||
char name[1];
|
||||
} _PACKED;
|
||||
|
||||
enum {
|
||||
// taken from Deskbar
|
||||
kNormalWindow = 0,
|
||||
kDesktopWindow = 1024,
|
||||
kMenuWindow = 1025,
|
||||
kWindowScreen = 1026,
|
||||
};
|
||||
|
||||
enum window_action {
|
||||
B_MINIMIZE_WINDOW,
|
||||
B_BRING_TO_FRONT
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
/*
|
||||
* Copyright 2005, Jérôme Duval, [email protected].
|
||||
|
||||
* Copyright 2005, Jérôme Duval, [email protected].
|
||||
* Distributed under the terms of the MIT License.
|
||||
*/
|
||||
|
||||
#ifndef _WINDOW_PRIVATE_H
|
||||
#define _WINDOW_PRIVATE_H
|
||||
|
||||
|
||||
#include <Window.h>
|
||||
|
||||
|
||||
/* Private window looks */
|
||||
|
||||
const window_look kDesktopWindowLook = window_look(4);
|
||||
@@ -18,6 +18,7 @@ const window_look kLeftTitledWindowLook = window_look(25);
|
||||
|
||||
const window_feel kDesktopWindowFeel = window_feel(1024);
|
||||
const window_feel kMenuWindowFeel = window_feel(1025);
|
||||
const window_feel kWindowScreenFeel = window_feel(1026);
|
||||
|
||||
/* Private window types */
|
||||
|
||||
@@ -28,5 +29,4 @@ const window_type kWindowScreenWindow = window_type(1026);
|
||||
const uint32 kWorkspacesWindowFlag = 0x8000;
|
||||
const uint32 kWindowScreenFlag = 0x10000;
|
||||
|
||||
#endif //_WINDOW_PRIVATE_H
|
||||
|
||||
#endif // _WINDOW_PRIVATE_H
|
||||
|
||||
Reference in New Issue
Block a user