2001-08-28 20:44:52 +02:00
|
|
|
/*
|
|
|
|
* Wine server USER definitions
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001 Alexandre Julliard
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2001-08-28 20:44:52 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_SERVER_USER_H
|
|
|
|
#define __WINE_SERVER_USER_H
|
|
|
|
|
|
|
|
#include "wine/server_protocol.h"
|
|
|
|
|
|
|
|
struct thread;
|
2004-06-23 22:44:58 +02:00
|
|
|
struct region;
|
2001-08-28 20:44:52 +02:00
|
|
|
struct window;
|
2001-11-13 23:23:48 +01:00
|
|
|
struct msg_queue;
|
2003-07-03 20:16:48 +02:00
|
|
|
struct hook_table;
|
2003-12-10 05:08:06 +01:00
|
|
|
struct window_class;
|
2005-07-07 13:29:23 +02:00
|
|
|
struct atom_table;
|
2005-06-29 22:13:36 +02:00
|
|
|
struct clipboard;
|
2001-08-28 20:44:52 +02:00
|
|
|
|
|
|
|
enum user_object
|
|
|
|
{
|
2002-10-29 01:41:42 +01:00
|
|
|
USER_WINDOW = 1,
|
2009-10-12 14:25:01 +02:00
|
|
|
USER_HOOK,
|
|
|
|
USER_CLIENT /* arbitrary client handle */
|
2001-08-28 20:44:52 +02:00
|
|
|
};
|
|
|
|
|
2005-07-08 13:37:40 +02:00
|
|
|
#define DESKTOP_ATOM ((atom_t)32769)
|
|
|
|
|
2005-07-11 12:55:53 +02:00
|
|
|
struct winstation
|
|
|
|
{
|
|
|
|
struct object obj; /* object header */
|
|
|
|
unsigned int flags; /* winstation flags */
|
|
|
|
struct list entry; /* entry in global winstation list */
|
|
|
|
struct list desktops; /* list of desktops of this winstation */
|
|
|
|
struct clipboard *clipboard; /* clipboard information */
|
|
|
|
struct atom_table *atom_table; /* global atom table */
|
2016-01-20 14:27:44 +01:00
|
|
|
struct namespace *desktop_names; /* namespace for desktops of this winstation */
|
2005-07-11 12:55:53 +02:00
|
|
|
};
|
|
|
|
|
2011-03-31 19:54:22 +02:00
|
|
|
struct global_cursor
|
|
|
|
{
|
|
|
|
int x; /* cursor position */
|
|
|
|
int y;
|
|
|
|
rectangle_t clip; /* cursor clip rectangle */
|
2011-03-31 20:27:29 +02:00
|
|
|
unsigned int clip_msg; /* message to post for cursor clip changes */
|
2011-03-31 20:15:56 +02:00
|
|
|
unsigned int last_change; /* time of last position change */
|
2011-04-06 21:07:04 +02:00
|
|
|
user_handle_t win; /* window that contains the cursor */
|
2011-03-31 19:54:22 +02:00
|
|
|
};
|
|
|
|
|
2005-07-11 12:55:53 +02:00
|
|
|
struct desktop
|
|
|
|
{
|
2011-02-24 16:45:04 +01:00
|
|
|
struct object obj; /* object header */
|
|
|
|
unsigned int flags; /* desktop flags */
|
|
|
|
struct winstation *winstation; /* winstation this desktop belongs to */
|
|
|
|
struct list entry; /* entry in winstation list of desktops */
|
|
|
|
struct window *top_window; /* desktop window for this desktop */
|
|
|
|
struct window *msg_window; /* HWND_MESSAGE top window */
|
|
|
|
struct hook_table *global_hooks; /* table of global hooks on this desktop */
|
2011-05-26 22:52:17 +02:00
|
|
|
struct list hotkeys; /* list of registered hotkeys */
|
2011-02-24 16:45:04 +01:00
|
|
|
struct timeout_user *close_timeout; /* timeout before closing the desktop */
|
|
|
|
struct thread_input *foreground_input; /* thread input of foreground thread */
|
|
|
|
unsigned int users; /* processes and threads using this desktop */
|
2011-03-31 19:54:22 +02:00
|
|
|
struct global_cursor cursor; /* global cursor information */
|
2011-02-25 12:10:04 +01:00
|
|
|
unsigned char keystate[256]; /* asynchronous key state */
|
2005-07-11 12:55:53 +02:00
|
|
|
};
|
|
|
|
|
2001-08-28 20:44:52 +02:00
|
|
|
/* user handles functions */
|
|
|
|
|
|
|
|
extern user_handle_t alloc_user_handle( void *ptr, enum user_object type );
|
|
|
|
extern void *get_user_object( user_handle_t handle, enum user_object type );
|
|
|
|
extern void *get_user_object_handle( user_handle_t *handle, enum user_object type );
|
2001-09-12 19:09:24 +02:00
|
|
|
extern user_handle_t get_user_full_handle( user_handle_t handle );
|
2001-08-28 20:44:52 +02:00
|
|
|
extern void *free_user_handle( user_handle_t handle );
|
|
|
|
extern void *next_user_handle( user_handle_t *handle, enum user_object type );
|
2009-10-15 17:56:04 +02:00
|
|
|
extern void free_process_user_handles( struct process *process );
|
2001-08-28 20:44:52 +02:00
|
|
|
|
2003-06-24 01:02:02 +02:00
|
|
|
/* clipboard functions */
|
|
|
|
|
2016-08-23 13:58:44 +02:00
|
|
|
extern void cleanup_clipboard_window( struct desktop *desktop, user_handle_t window );
|
2003-06-24 01:02:02 +02:00
|
|
|
extern void cleanup_clipboard_thread( struct thread *thread );
|
|
|
|
|
2002-11-20 20:54:32 +01:00
|
|
|
/* hook functions */
|
|
|
|
|
2003-07-11 23:55:58 +02:00
|
|
|
extern void remove_thread_hooks( struct thread *thread );
|
2005-05-11 15:03:15 +02:00
|
|
|
extern unsigned int get_active_hooks(void);
|
2011-03-02 19:53:03 +01:00
|
|
|
extern struct thread *get_first_global_hook( int id );
|
2002-11-20 20:54:32 +01:00
|
|
|
|
2001-08-28 20:44:52 +02:00
|
|
|
/* queue functions */
|
|
|
|
|
2002-08-17 01:30:41 +02:00
|
|
|
extern void free_msg_queue( struct thread *thread );
|
2003-07-03 20:16:48 +02:00
|
|
|
extern struct hook_table *get_queue_hooks( struct thread *thread );
|
|
|
|
extern void set_queue_hooks( struct thread *thread, struct hook_table *hooks );
|
2001-11-13 23:23:48 +01:00
|
|
|
extern void inc_queue_paint_count( struct thread *thread, int incr );
|
2001-08-28 20:44:52 +02:00
|
|
|
extern void queue_cleanup_window( struct thread *thread, user_handle_t win );
|
2005-04-26 16:31:33 +02:00
|
|
|
extern int init_thread_queue( struct thread *thread );
|
2002-10-11 20:50:15 +02:00
|
|
|
extern int attach_thread_input( struct thread *thread_from, struct thread *thread_to );
|
2005-07-11 15:30:23 +02:00
|
|
|
extern void detach_thread_input( struct thread *thread_from );
|
2002-03-23 21:43:52 +01:00
|
|
|
extern void post_message( user_handle_t win, unsigned int message,
|
2008-12-10 16:01:50 +01:00
|
|
|
lparam_t wparam, lparam_t lparam );
|
2016-08-30 09:33:04 +02:00
|
|
|
extern void send_notify_message( user_handle_t win, unsigned int message,
|
|
|
|
lparam_t wparam, lparam_t lparam );
|
2005-02-03 17:40:20 +01:00
|
|
|
extern void post_win_event( struct thread *thread, unsigned int event,
|
|
|
|
user_handle_t win, unsigned int object_id,
|
2008-12-29 17:35:35 +01:00
|
|
|
unsigned int child_id, client_ptr_t proc,
|
2006-07-26 10:43:25 +02:00
|
|
|
const WCHAR *module, data_size_t module_size,
|
2005-02-03 17:40:20 +01:00
|
|
|
user_handle_t handle );
|
2011-05-26 22:52:17 +02:00
|
|
|
extern void free_hotkeys( struct desktop *desktop, user_handle_t window );
|
2001-08-28 20:44:52 +02:00
|
|
|
|
2004-06-23 22:44:58 +02:00
|
|
|
/* region functions */
|
|
|
|
|
2005-02-22 20:42:35 +01:00
|
|
|
extern struct region *create_empty_region(void);
|
2006-07-26 10:43:25 +02:00
|
|
|
extern struct region *create_region_from_req_data( const void *data, data_size_t size );
|
2004-06-23 22:44:58 +02:00
|
|
|
extern void free_region( struct region *region );
|
|
|
|
extern void set_region_rect( struct region *region, const rectangle_t *rect );
|
2006-07-26 10:43:25 +02:00
|
|
|
extern rectangle_t *get_region_data( const struct region *region, data_size_t max_size,
|
|
|
|
data_size_t *total_size );
|
|
|
|
extern rectangle_t *get_region_data_and_free( struct region *region, data_size_t max_size,
|
|
|
|
data_size_t *total_size );
|
2004-06-23 22:44:58 +02:00
|
|
|
extern int is_region_empty( const struct region *region );
|
|
|
|
extern void get_region_extents( const struct region *region, rectangle_t *rect );
|
|
|
|
extern void offset_region( struct region *region, int x, int y );
|
2010-09-27 20:46:41 +02:00
|
|
|
extern void mirror_region( const rectangle_t *client_rect, struct region *region );
|
2018-08-24 12:45:43 +02:00
|
|
|
extern void scale_region( struct region *region, unsigned int dpi_from, unsigned int dpi_to );
|
2004-06-23 22:44:58 +02:00
|
|
|
extern struct region *copy_region( struct region *dst, const struct region *src );
|
|
|
|
extern struct region *intersect_region( struct region *dst, const struct region *src1,
|
|
|
|
const struct region *src2 );
|
|
|
|
extern struct region *subtract_region( struct region *dst, const struct region *src1,
|
|
|
|
const struct region *src2 );
|
|
|
|
extern struct region *union_region( struct region *dst, const struct region *src1,
|
|
|
|
const struct region *src2 );
|
2004-09-08 03:34:22 +02:00
|
|
|
extern struct region *xor_region( struct region *dst, const struct region *src1,
|
|
|
|
const struct region *src2 );
|
2004-07-21 00:17:38 +02:00
|
|
|
extern int point_in_region( struct region *region, int x, int y );
|
2004-09-02 00:49:14 +02:00
|
|
|
extern int rect_in_region( struct region *region, const rectangle_t *rect );
|
2004-06-23 22:44:58 +02:00
|
|
|
|
2001-08-28 20:44:52 +02:00
|
|
|
/* window functions */
|
|
|
|
|
2006-03-06 21:02:24 +01:00
|
|
|
extern struct process *get_top_window_owner( struct desktop *desktop );
|
2011-02-25 11:31:47 +01:00
|
|
|
extern void get_top_window_rectangle( struct desktop *desktop, rectangle_t *rect );
|
2011-03-31 20:25:45 +02:00
|
|
|
extern void post_desktop_message( struct desktop *desktop, unsigned int message,
|
|
|
|
lparam_t wparam, lparam_t lparam );
|
2005-07-11 15:30:23 +02:00
|
|
|
extern void destroy_window( struct window *win );
|
2001-08-28 20:44:52 +02:00
|
|
|
extern void destroy_thread_windows( struct thread *thread );
|
2001-09-21 23:08:40 +02:00
|
|
|
extern int is_child_window( user_handle_t parent, user_handle_t child );
|
2014-03-27 14:59:51 +01:00
|
|
|
extern int is_valid_foreground_window( user_handle_t window );
|
2004-10-27 23:54:41 +02:00
|
|
|
extern int is_window_visible( user_handle_t window );
|
2010-06-11 12:20:41 +02:00
|
|
|
extern int is_window_transparent( user_handle_t window );
|
2002-10-12 01:41:06 +02:00
|
|
|
extern int make_window_active( user_handle_t window );
|
2002-03-23 21:43:52 +01:00
|
|
|
extern struct thread *get_window_thread( user_handle_t handle );
|
2014-10-14 13:28:47 +02:00
|
|
|
extern user_handle_t shallow_window_from_point( struct desktop *desktop, int x, int y );
|
|
|
|
extern struct thread *window_thread_from_point( user_handle_t scope, int x, int y );
|
2001-11-14 22:28:36 +01:00
|
|
|
extern user_handle_t find_window_to_repaint( user_handle_t parent, struct thread *thread );
|
2003-12-10 05:08:06 +01:00
|
|
|
extern struct window_class *get_window_class( user_handle_t window );
|
|
|
|
|
|
|
|
/* window class functions */
|
|
|
|
|
|
|
|
extern void destroy_process_classes( struct process *process );
|
2003-12-11 06:34:53 +01:00
|
|
|
extern struct window_class *grab_class( struct process *process, atom_t atom,
|
2008-12-29 16:41:44 +01:00
|
|
|
mod_handle_t instance, int *extra_bytes );
|
2003-12-10 05:08:06 +01:00
|
|
|
extern void release_class( struct window_class *class );
|
2006-03-06 20:37:52 +01:00
|
|
|
extern int is_desktop_class( struct window_class *class );
|
2008-06-25 14:43:39 +02:00
|
|
|
extern int is_hwnd_message_class( struct window_class *class );
|
2003-12-10 05:08:06 +01:00
|
|
|
extern atom_t get_class_atom( struct window_class *class );
|
2008-12-29 17:24:33 +01:00
|
|
|
extern client_ptr_t get_class_client_ptr( struct window_class *class );
|
2001-08-28 20:44:52 +02:00
|
|
|
|
2005-06-08 20:44:50 +02:00
|
|
|
/* windows station functions */
|
|
|
|
|
2008-03-18 15:17:40 +01:00
|
|
|
extern struct desktop *get_desktop_obj( struct process *process, obj_handle_t handle, unsigned int access );
|
2005-06-29 22:13:36 +02:00
|
|
|
extern struct winstation *get_process_winstation( struct process *process, unsigned int access );
|
2005-07-11 12:55:53 +02:00
|
|
|
extern struct desktop *get_thread_desktop( struct thread *thread, unsigned int access );
|
2006-03-27 12:57:17 +02:00
|
|
|
extern void connect_process_winstation( struct process *process, struct thread *parent );
|
|
|
|
extern void set_process_default_desktop( struct process *process, struct desktop *desktop,
|
|
|
|
obj_handle_t handle );
|
2006-03-06 21:02:24 +01:00
|
|
|
extern void close_process_desktop( struct process *process );
|
2005-06-08 20:44:50 +02:00
|
|
|
extern void close_thread_desktop( struct thread *thread );
|
|
|
|
|
2018-07-05 12:46:18 +02:00
|
|
|
static inline int is_rect_empty( const rectangle_t *rect )
|
|
|
|
{
|
|
|
|
return (rect->left >= rect->right || rect->top >= rect->bottom);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int point_in_rect( const rectangle_t *rect, int x, int y )
|
|
|
|
{
|
|
|
|
return (x >= rect->left && x < rect->right && y >= rect->top && y < rect->bottom);
|
|
|
|
}
|
|
|
|
|
2018-08-24 12:06:45 +02:00
|
|
|
static inline int scale_dpi( int val, unsigned int dpi_from, unsigned int dpi_to )
|
|
|
|
{
|
|
|
|
if (val >= 0) return (val * dpi_to + (dpi_from / 2)) / dpi_from;
|
|
|
|
return (val * dpi_to - (dpi_from / 2)) / dpi_from;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void scale_dpi_rect( rectangle_t *rect, unsigned int dpi_from, unsigned int dpi_to )
|
|
|
|
{
|
|
|
|
rect->left = scale_dpi( rect->left, dpi_from, dpi_to );
|
|
|
|
rect->top = scale_dpi( rect->top, dpi_from, dpi_to );
|
|
|
|
rect->right = scale_dpi( rect->right, dpi_from, dpi_to );
|
|
|
|
rect->bottom = scale_dpi( rect->bottom, dpi_from, dpi_to );
|
|
|
|
}
|
|
|
|
|
2018-07-05 12:46:18 +02:00
|
|
|
/* offset the coordinates of a rectangle */
|
|
|
|
static inline void offset_rect( rectangle_t *rect, int offset_x, int offset_y )
|
|
|
|
{
|
|
|
|
rect->left += offset_x;
|
|
|
|
rect->top += offset_y;
|
|
|
|
rect->right += offset_x;
|
|
|
|
rect->bottom += offset_y;
|
|
|
|
}
|
|
|
|
|
2010-09-27 20:46:41 +02:00
|
|
|
/* mirror a rectangle respective to the window client area */
|
|
|
|
static inline void mirror_rect( const rectangle_t *client_rect, rectangle_t *rect )
|
|
|
|
{
|
|
|
|
int width = client_rect->right - client_rect->left;
|
|
|
|
int tmp = rect->left;
|
|
|
|
rect->left = width - rect->right;
|
|
|
|
rect->right = width - tmp;
|
|
|
|
}
|
|
|
|
|
2011-02-25 11:31:47 +01:00
|
|
|
/* compute the intersection of two rectangles; return 0 if the result is empty */
|
|
|
|
static inline int intersect_rect( rectangle_t *dst, const rectangle_t *src1, const rectangle_t *src2 )
|
|
|
|
{
|
|
|
|
dst->left = max( src1->left, src2->left );
|
|
|
|
dst->top = max( src1->top, src2->top );
|
|
|
|
dst->right = min( src1->right, src2->right );
|
|
|
|
dst->bottom = min( src1->bottom, src2->bottom );
|
2018-07-05 12:46:18 +02:00
|
|
|
return !is_rect_empty( dst );
|
2011-02-25 11:31:47 +01:00
|
|
|
}
|
|
|
|
|
2016-08-30 11:08:36 +02:00
|
|
|
/* validate a window handle and return the full handle */
|
|
|
|
static inline user_handle_t get_valid_window_handle( user_handle_t win )
|
|
|
|
{
|
|
|
|
if (get_user_object_handle( &win, USER_WINDOW )) return win;
|
|
|
|
set_win32_error( ERROR_INVALID_WINDOW_HANDLE );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-08-28 20:44:52 +02:00
|
|
|
#endif /* __WINE_SERVER_USER_H */
|