Fix changelog email address
[freerdp-ubuntu-pcb-backport.git] / include / freerdp / rail / window.h
1 /**
2  * FreeRDP: A Remote Desktop Protocol Client
3  * RAIL Windows
4  *
5  * Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19
20 #ifndef __RAIL_WINDOW_H
21 #define __RAIL_WINDOW_H
22
23 #include <freerdp/api.h>
24 #include <freerdp/rail.h>
25 #include <freerdp/types.h>
26 #include <freerdp/update.h>
27 #include <freerdp/utils/stream.h>
28
29 typedef struct rdp_window rdpWindow;
30
31 #include <freerdp/rail/rail.h>
32 #include <freerdp/rail/icon.h>
33
34 struct rdp_window
35 {
36         void* extra;
37         void* extraId;
38         char* title;
39         rdpIcon* bigIcon;
40         rdpIcon* smallIcon;
41         uint32 fieldFlags;
42         rdpWindow* prev;
43         rdpWindow* next;
44         uint32 windowId;
45         uint32 ownerWindowId;
46         rdpWindow* ownerWindow;
47         uint32 style;
48         uint32 extendedStyle;
49         uint8 showState;
50         UNICODE_STRING titleInfo;
51         uint32 clientOffsetX;
52         uint32 clientOffsetY;
53         uint32 clientAreaWidth;
54         uint32 clientAreaHeight;
55         uint8 RPContent;
56         uint32 rootParentHandle;
57         sint32 windowOffsetX;
58         sint32 windowOffsetY;
59         uint32 windowClientDeltaX;
60         uint32 windowClientDeltaY;
61         uint32 windowWidth;
62         uint32 windowHeight;
63         uint16 numWindowRects;
64         RECTANGLE_16* windowRects;
65         uint32 visibleOffsetX;
66         uint32 visibleOffsetY;
67         uint16 numVisibilityRects;
68         RECTANGLE_16* visibilityRects;
69 };
70
71 FREERDP_API void window_state_update(rdpWindow* window, WINDOW_ORDER_INFO* orderInfo, WINDOW_STATE_ORDER* window_state);
72
73 FREERDP_API void rail_CreateWindow(rdpRail* rail, rdpWindow* window);
74 FREERDP_API void rail_UpdateWindow(rdpRail* rail, rdpWindow* window);
75 FREERDP_API void rail_DestroyWindow(rdpRail* rail, rdpWindow* window);
76
77 #endif /* __RAIL_WINDOW_H */