msvcr120: Add [_]strtoimax[_l] and [_]strtoumax[_l].
[wine.git] / server / user.h
blob6267f3e2881095d186b172445082dfa81d0f5056
1 /*
2 * Wine server USER definitions
4 * Copyright (C) 2001 Alexandre Julliard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef __WINE_SERVER_USER_H
22 #define __WINE_SERVER_USER_H
24 #include "wine/server_protocol.h"
26 struct thread;
27 struct region;
28 struct window;
29 struct msg_queue;
30 struct hook_table;
31 struct window_class;
32 struct atom_table;
33 struct clipboard;
35 enum user_object
37 USER_WINDOW = 1,
38 USER_HOOK,
39 USER_CLIENT /* arbitrary client handle */
42 #define DESKTOP_ATOM ((atom_t)32769)
44 struct winstation
46 struct object obj; /* object header */
47 unsigned int flags; /* winstation flags */
48 struct list entry; /* entry in global winstation list */
49 struct list desktops; /* list of desktops of this winstation */
50 struct clipboard *clipboard; /* clipboard information */
51 struct atom_table *atom_table; /* global atom table */
52 struct namespace *desktop_names; /* namespace for desktops of this winstation */
55 struct global_cursor
57 int x; /* cursor position */
58 int y;
59 rectangle_t clip; /* cursor clip rectangle */
60 unsigned int clip_msg; /* message to post for cursor clip changes */
61 unsigned int last_change; /* time of last position change */
62 user_handle_t win; /* window that contains the cursor */
65 struct desktop
67 struct object obj; /* object header */
68 unsigned int flags; /* desktop flags */
69 struct winstation *winstation; /* winstation this desktop belongs to */
70 struct list entry; /* entry in winstation list of desktops */
71 struct window *top_window; /* desktop window for this desktop */
72 struct window *msg_window; /* HWND_MESSAGE top window */
73 struct hook_table *global_hooks; /* table of global hooks on this desktop */
74 struct list hotkeys; /* list of registered hotkeys */
75 struct timeout_user *close_timeout; /* timeout before closing the desktop */
76 struct thread_input *foreground_input; /* thread input of foreground thread */
77 unsigned int users; /* processes and threads using this desktop */
78 struct global_cursor cursor; /* global cursor information */
79 unsigned char keystate[256]; /* asynchronous key state */
82 /* user handles functions */
84 extern user_handle_t alloc_user_handle( void *ptr, enum user_object type );
85 extern void *get_user_object( user_handle_t handle, enum user_object type );
86 extern void *get_user_object_handle( user_handle_t *handle, enum user_object type );
87 extern user_handle_t get_user_full_handle( user_handle_t handle );
88 extern void *free_user_handle( user_handle_t handle );
89 extern void *next_user_handle( user_handle_t *handle, enum user_object type );
90 extern void free_process_user_handles( struct process *process );
92 /* clipboard functions */
94 extern void cleanup_clipboard_window( struct desktop *desktop, user_handle_t window );
95 extern void cleanup_clipboard_thread( struct thread *thread );
97 /* hook functions */
99 extern void remove_thread_hooks( struct thread *thread );
100 extern unsigned int get_active_hooks(void);
101 extern struct thread *get_first_global_hook( int id );
103 /* queue functions */
105 extern void free_msg_queue( struct thread *thread );
106 extern struct hook_table *get_queue_hooks( struct thread *thread );
107 extern void set_queue_hooks( struct thread *thread, struct hook_table *hooks );
108 extern void inc_queue_paint_count( struct thread *thread, int incr );
109 extern void queue_cleanup_window( struct thread *thread, user_handle_t win );
110 extern int init_thread_queue( struct thread *thread );
111 extern int attach_thread_input( struct thread *thread_from, struct thread *thread_to );
112 extern void detach_thread_input( struct thread *thread_from );
113 extern void post_message( user_handle_t win, unsigned int message,
114 lparam_t wparam, lparam_t lparam );
115 extern void send_notify_message( user_handle_t win, unsigned int message,
116 lparam_t wparam, lparam_t lparam );
117 extern void post_win_event( struct thread *thread, unsigned int event,
118 user_handle_t win, unsigned int object_id,
119 unsigned int child_id, client_ptr_t proc,
120 const WCHAR *module, data_size_t module_size,
121 user_handle_t handle );
122 extern void free_hotkeys( struct desktop *desktop, user_handle_t window );
124 /* region functions */
126 extern struct region *create_empty_region(void);
127 extern struct region *create_region_from_req_data( const void *data, data_size_t size );
128 extern void free_region( struct region *region );
129 extern void set_region_rect( struct region *region, const rectangle_t *rect );
130 extern rectangle_t *get_region_data( const struct region *region, data_size_t max_size,
131 data_size_t *total_size );
132 extern rectangle_t *get_region_data_and_free( struct region *region, data_size_t max_size,
133 data_size_t *total_size );
134 extern int is_region_empty( const struct region *region );
135 extern void get_region_extents( const struct region *region, rectangle_t *rect );
136 extern void offset_region( struct region *region, int x, int y );
137 extern void mirror_region( const rectangle_t *client_rect, struct region *region );
138 extern void scale_region( struct region *region, unsigned int dpi_from, unsigned int dpi_to );
139 extern struct region *copy_region( struct region *dst, const struct region *src );
140 extern struct region *intersect_region( struct region *dst, const struct region *src1,
141 const struct region *src2 );
142 extern struct region *subtract_region( struct region *dst, const struct region *src1,
143 const struct region *src2 );
144 extern struct region *union_region( struct region *dst, const struct region *src1,
145 const struct region *src2 );
146 extern struct region *xor_region( struct region *dst, const struct region *src1,
147 const struct region *src2 );
148 extern int point_in_region( struct region *region, int x, int y );
149 extern int rect_in_region( struct region *region, const rectangle_t *rect );
151 /* window functions */
153 extern struct process *get_top_window_owner( struct desktop *desktop );
154 extern void get_top_window_rectangle( struct desktop *desktop, rectangle_t *rect );
155 extern void post_desktop_message( struct desktop *desktop, unsigned int message,
156 lparam_t wparam, lparam_t lparam );
157 extern void destroy_window( struct window *win );
158 extern void destroy_thread_windows( struct thread *thread );
159 extern int is_child_window( user_handle_t parent, user_handle_t child );
160 extern int is_valid_foreground_window( user_handle_t window );
161 extern int is_window_visible( user_handle_t window );
162 extern int is_window_transparent( user_handle_t window );
163 extern int make_window_active( user_handle_t window );
164 extern struct thread *get_window_thread( user_handle_t handle );
165 extern user_handle_t shallow_window_from_point( struct desktop *desktop, int x, int y );
166 extern struct thread *window_thread_from_point( user_handle_t scope, int x, int y );
167 extern user_handle_t find_window_to_repaint( user_handle_t parent, struct thread *thread );
168 extern struct window_class *get_window_class( user_handle_t window );
170 /* window class functions */
172 extern void destroy_process_classes( struct process *process );
173 extern struct window_class *grab_class( struct process *process, atom_t atom,
174 mod_handle_t instance, int *extra_bytes );
175 extern void release_class( struct window_class *class );
176 extern int is_desktop_class( struct window_class *class );
177 extern int is_hwnd_message_class( struct window_class *class );
178 extern atom_t get_class_atom( struct window_class *class );
179 extern client_ptr_t get_class_client_ptr( struct window_class *class );
181 /* windows station functions */
183 extern struct desktop *get_desktop_obj( struct process *process, obj_handle_t handle, unsigned int access );
184 extern struct winstation *get_process_winstation( struct process *process, unsigned int access );
185 extern struct desktop *get_thread_desktop( struct thread *thread, unsigned int access );
186 extern void connect_process_winstation( struct process *process, struct thread *parent_thread,
187 struct process *parent_process );
188 extern void set_process_default_desktop( struct process *process, struct desktop *desktop,
189 obj_handle_t handle );
190 extern void close_process_desktop( struct process *process );
191 extern void close_thread_desktop( struct thread *thread );
193 static inline int is_rect_empty( const rectangle_t *rect )
195 return (rect->left >= rect->right || rect->top >= rect->bottom);
198 static inline int point_in_rect( const rectangle_t *rect, int x, int y )
200 return (x >= rect->left && x < rect->right && y >= rect->top && y < rect->bottom);
203 static inline int scale_dpi( int val, unsigned int dpi_from, unsigned int dpi_to )
205 if (val >= 0) return (val * dpi_to + (dpi_from / 2)) / dpi_from;
206 return (val * dpi_to - (dpi_from / 2)) / dpi_from;
209 static inline void scale_dpi_rect( rectangle_t *rect, unsigned int dpi_from, unsigned int dpi_to )
211 rect->left = scale_dpi( rect->left, dpi_from, dpi_to );
212 rect->top = scale_dpi( rect->top, dpi_from, dpi_to );
213 rect->right = scale_dpi( rect->right, dpi_from, dpi_to );
214 rect->bottom = scale_dpi( rect->bottom, dpi_from, dpi_to );
217 /* offset the coordinates of a rectangle */
218 static inline void offset_rect( rectangle_t *rect, int offset_x, int offset_y )
220 rect->left += offset_x;
221 rect->top += offset_y;
222 rect->right += offset_x;
223 rect->bottom += offset_y;
226 /* mirror a rectangle respective to the window client area */
227 static inline void mirror_rect( const rectangle_t *client_rect, rectangle_t *rect )
229 int width = client_rect->right - client_rect->left;
230 int tmp = rect->left;
231 rect->left = width - rect->right;
232 rect->right = width - tmp;
235 /* compute the intersection of two rectangles; return 0 if the result is empty */
236 static inline int intersect_rect( rectangle_t *dst, const rectangle_t *src1, const rectangle_t *src2 )
238 dst->left = max( src1->left, src2->left );
239 dst->top = max( src1->top, src2->top );
240 dst->right = min( src1->right, src2->right );
241 dst->bottom = min( src1->bottom, src2->bottom );
242 return !is_rect_empty( dst );
245 /* validate a window handle and return the full handle */
246 static inline user_handle_t get_valid_window_handle( user_handle_t win )
248 if (get_user_object_handle( &win, USER_WINDOW )) return win;
249 set_win32_error( ERROR_INVALID_WINDOW_HANDLE );
250 return 0;
253 #endif /* __WINE_SERVER_USER_H */