20#ifndef FREERDP_UPDATE_WINDOW_H
21#define FREERDP_UPDATE_WINDOW_H
23#include <freerdp/types.h>
24#include <freerdp/rail.h>
27#define WINDOW_ORDER_TYPE_WINDOW 0x01000000
28#define WINDOW_ORDER_TYPE_NOTIFY 0x02000000
29#define WINDOW_ORDER_TYPE_DESKTOP 0x04000000
31#define WINDOW_ORDER_STATE_NEW 0x10000000
32#define WINDOW_ORDER_STATE_DELETED 0x20000000
35#define WINDOW_ORDER_FIELD_OWNER 0x00000002
36#define WINDOW_ORDER_FIELD_STYLE 0x00000008
37#define WINDOW_ORDER_FIELD_SHOW 0x00000010
38#define WINDOW_ORDER_FIELD_TITLE 0x00000004
39#define WINDOW_ORDER_FIELD_CLIENT_AREA_OFFSET 0x00004000
40#define WINDOW_ORDER_FIELD_CLIENT_AREA_SIZE 0x00010000
41#define WINDOW_ORDER_FIELD_RESIZE_MARGIN_X 0x00000080
42#define WINDOW_ORDER_FIELD_RESIZE_MARGIN_Y 0x08000000
43#define WINDOW_ORDER_FIELD_RP_CONTENT 0x00020000
44#define WINDOW_ORDER_FIELD_ROOT_PARENT 0x00040000
45#define WINDOW_ORDER_FIELD_WND_OFFSET 0x00000800
46#define WINDOW_ORDER_FIELD_WND_CLIENT_DELTA 0x00008000
47#define WINDOW_ORDER_FIELD_WND_SIZE 0x00000400
48#define WINDOW_ORDER_FIELD_WND_RECTS 0x00000100
49#define WINDOW_ORDER_FIELD_VIS_OFFSET 0x00001000
50#define WINDOW_ORDER_FIELD_VISIBILITY 0x00000200
51#define WINDOW_ORDER_FIELD_OVERLAY_DESCRIPTION 0x00400000
52#define WINDOW_ORDER_FIELD_ICON_OVERLAY_NULL 0x00200000
53#define WINDOW_ORDER_FIELD_TASKBAR_BUTTON 0x00800000
54#define WINDOW_ORDER_FIELD_ENFORCE_SERVER_ZORDER 0x00080000
55#define WINDOW_ORDER_FIELD_APPBAR_STATE 0x00000040
56#define WINDOW_ORDER_FIELD_APPBAR_EDGE 0x00000001
59#define WINDOW_ORDER_ICON 0x40000000
60#define WINDOW_ORDER_CACHED_ICON 0x80000000
61#define WINDOW_ORDER_FIELD_ICON_BIG 0x00002000
62#define WINDOW_ORDER_FIELD_ICON_OVERLAY 0x00100000
64#define WINDOW_ORDER_FIELD_NOTIFY_VERSION 0x00000008
65#define WINDOW_ORDER_FIELD_NOTIFY_TIP 0x00000001
66#define WINDOW_ORDER_FIELD_NOTIFY_INFO_TIP 0x00000002
67#define WINDOW_ORDER_FIELD_NOTIFY_STATE 0x00000004
68#define WINDOW_ORDER_FIELD_DESKTOP_NONE 0x00000001
69#define WINDOW_ORDER_FIELD_DESKTOP_HOOKED 0x00000002
70#define WINDOW_ORDER_FIELD_DESKTOP_ARC_COMPLETED 0x00000004
71#define WINDOW_ORDER_FIELD_DESKTOP_ARC_BEGAN 0x00000008
72#define WINDOW_ORDER_FIELD_DESKTOP_ZORDER 0x00000010
73#define WINDOW_ORDER_FIELD_DESKTOP_ACTIVE_WND 0x00000020
76#define WINDOW_HIDE 0x00
77#define WINDOW_SHOW_MINIMIZED 0x02
78#define WINDOW_SHOW_MAXIMIZED 0x03
79#define WINDOW_SHOW 0x05
83#define WS_NONE 0x00000000
84#define WS_BORDER 0x00800000
85#define WS_CAPTION 0x00C00000
86#define WS_CHILD 0x40000000
87#define WS_CHILDWINDOW 0x40000000
88#define WS_CLIPCHILDREN 0x02000000
89#define WS_CLIPSIBLINGS 0x04000000
90#define WS_DISABLED 0x08000000
91#define WS_DLGFRAME 0x00400000
92#define WS_GROUP 0x00020000
93#define WS_HSCROLL 0x00100000
94#define WS_ICONIC 0x20000000
95#define WS_MAXIMIZE 0x01000000
96#define WS_MAXIMIZEBOX 0x00010000
97#define WS_MINIMIZE 0x20000000
98#define WS_MINIMIZEBOX 0x00020000
99#define WS_OVERLAPPED 0x00000000
100#define WS_OVERLAPPEDWINDOW \
101 (WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX)
102#define WS_POPUP 0x80000000
103#define WS_POPUPWINDOW (WS_POPUP | WS_BORDER | WS_SYSMENU)
104#define WS_SIZEBOX 0x00040000
105#define WS_SYSMENU 0x00080000
106#define WS_TABSTOP 0x00010000
107#define WS_THICKFRAME 0x00040000
108#define WS_VISIBLE 0x10000000
109#define WS_VSCROLL 0x00200000
110#define WS_TILEDWINDOW \
111 (WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_THICKFRAME | WS_MINIMIZEBOX | WS_MAXIMIZEBOX)
116#define WS_EX_NONE 0x00000000
117#define WS_EX_ACCEPTFILES 0x00000010
118#define WS_EX_APPWINDOW 0x00040000
119#define WS_EX_CLIENTEDGE 0x00000200
120#define WS_EX_COMPOSITED 0x02000000
121#define WS_EX_CONTEXTHELP 0x00000400
122#define WS_EX_CONTROLPARENT 0x00010000
123#define WS_EX_DLGMODALFRAME 0x00000001
124#define WS_EX_LAYERED 0x00080000
125#define WS_EX_LAYOUTRTL 0x00400000
126#define WS_EX_LEFT 0x00000000
127#define WS_EX_LEFTSCROLLBAR 0x00004000
128#define WS_EX_LTRREADING 0x00000000
129#define WS_EX_MDICHILD 0x00000040
130#define WS_EX_NOACTIVATE 0x08000000
131#define WS_EX_NOINHERITLAYOUT 0x00100000
132#define WS_EX_NOPARENTNOTIFY 0x00000004
133#define WS_EX_NOREDIRECTIONBITMAP 0x00200000
134#define WS_EX_OVERLAPPEDWINDOW (WS_EX_WINDOWEDGE | WS_EX_CLIENTEDGE)
135#define WS_EX_PALETTEWINDOW (WS_EX_WINDOWEDGE | WS_EX_TOOLWINDOW | WS_EX_TOPMOST)
136#define WS_EX_RIGHT 0x00001000
137#define WS_EX_RIGHTSCROLLBAR 0x00000000
138#define WS_EX_RTLREADING 0x00002000
139#define WS_EX_STATICEDGE 0x00020000
140#define WS_EX_TOOLWINDOW 0x00000080
141#define WS_EX_TOPMOST 0x00000008
142#define WS_EX_TRANSPARENT 0x00000020
143#define WS_EX_WINDOWEDGE 0x00000100
151#define WS_EX_DECORATIONS 0x40000000
196 UINT32 ownerWindowId;
198 UINT32 extendedStyle;
203 UINT32 clientAreaWidth;
204 UINT32 clientAreaHeight;
206 UINT32 rootParentHandle;
209 INT32 windowClientDeltaX;
210 INT32 windowClientDeltaY;
213 UINT32 numWindowRects;
215 INT32 visibleOffsetX;
216 INT32 visibleOffsetY;
217 UINT32 resizeMarginLeft;
218 UINT32 resizeMarginTop;
219 UINT32 resizeMarginRight;
220 UINT32 resizeMarginBottom;
221 UINT32 numVisibilityRects;
225 UINT8 EnforceServerZOrder;
252 UINT32 activeWindowId;
257 typedef BOOL (*pWindowCreate)(rdpContext* context,
const WINDOW_ORDER_INFO* orderInfo,
259 typedef BOOL (*pWindowUpdate)(rdpContext* context,
const WINDOW_ORDER_INFO* orderInfo,
261 typedef BOOL (*pWindowIcon)(rdpContext* context,
const WINDOW_ORDER_INFO* orderInfo,
263 typedef BOOL (*pWindowCachedIcon)(rdpContext* context,
const WINDOW_ORDER_INFO* orderInfo,
265 typedef BOOL (*pWindowDelete)(rdpContext* context,
const WINDOW_ORDER_INFO* orderInfo);
266 typedef BOOL (*pNotifyIconCreate)(rdpContext* context,
const WINDOW_ORDER_INFO* orderInfo,
268 typedef BOOL (*pNotifyIconUpdate)(rdpContext* context,
const WINDOW_ORDER_INFO* orderInfo,
270 typedef BOOL (*pNotifyIconDelete)(rdpContext* context,
const WINDOW_ORDER_INFO* orderInfo);
271 typedef BOOL (*pMonitoredDesktop)(rdpContext* context,
const WINDOW_ORDER_INFO* orderInfo,
273 typedef BOOL (*pNonMonitoredDesktop)(rdpContext* context,
const WINDOW_ORDER_INFO* orderInfo);
278 UINT32 paddingA[16 - 1];
280 pWindowCreate WindowCreate;
281 pWindowUpdate WindowUpdate;
282 pWindowIcon WindowIcon;
283 pWindowCachedIcon WindowCachedIcon;
284 pWindowDelete WindowDelete;
285 pNotifyIconCreate NotifyIconCreate;
286 pNotifyIconUpdate NotifyIconUpdate;
287 pNotifyIconDelete NotifyIconDelete;
288 pMonitoredDesktop MonitoredDesktop;
289 pNonMonitoredDesktop NonMonitoredDesktop;
290 UINT32 paddingB[32 - 26];