d3d9/tests: Accept AMD GPU sysmem sample failure in test_mipmap_upload.
[wine.git] / dlls / winemac.drv / macdrv.h
blob281d49c1e9a6311903907a6266f98757febf7836
1 /*
2 * MACDRV windowing driver
4 * Copyright 1996 Alexandre Julliard
5 * Copyright 1999 Patrik Stridvall
6 * Copyright 2011, 2012, 2013 Ken Thomases for CodeWeavers Inc.
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #ifndef __WINE_MACDRV_H
24 #define __WINE_MACDRV_H
26 #ifndef __WINE_CONFIG_H
27 # error You must include config.h to use this header
28 #endif
30 #include "macdrv_cocoa.h"
31 #include "windef.h"
32 #include "winbase.h"
33 #include "ntgdi.h"
34 #include "wine/debug.h"
35 #include "wine/gdi_driver.h"
36 #include "unixlib.h"
39 extern BOOL skip_single_buffer_flushes DECLSPEC_HIDDEN;
40 extern BOOL allow_vsync DECLSPEC_HIDDEN;
41 extern BOOL allow_set_gamma DECLSPEC_HIDDEN;
42 extern BOOL allow_software_rendering DECLSPEC_HIDDEN;
43 extern BOOL disable_window_decorations DECLSPEC_HIDDEN;
45 extern const char* debugstr_cf(CFTypeRef t) DECLSPEC_HIDDEN;
47 static inline CGRect cgrect_from_rect(RECT rect)
49 if (rect.left >= rect.right || rect.top >= rect.bottom)
50 return CGRectMake(rect.left, rect.top, 0, 0);
51 return CGRectMake(rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top);
54 static inline RECT rect_from_cgrect(CGRect cgrect)
56 static const RECT empty;
58 if (!CGRectIsNull(cgrect))
60 RECT rect = { CGRectGetMinX(cgrect), CGRectGetMinY(cgrect),
61 CGRectGetMaxX(cgrect), CGRectGetMaxY(cgrect) };
62 return rect;
65 return empty;
68 static inline const char *wine_dbgstr_cgrect(CGRect cgrect)
70 return wine_dbg_sprintf("(%g,%g)-(%g,%g)", CGRectGetMinX(cgrect), CGRectGetMinY(cgrect),
71 CGRectGetMaxX(cgrect), CGRectGetMaxY(cgrect));
74 extern const char* debugstr_cf(CFTypeRef t) DECLSPEC_HIDDEN;
77 /**************************************************************************
78 * Mac GDI driver
81 extern CGRect macdrv_get_desktop_rect(void) DECLSPEC_HIDDEN;
82 extern void macdrv_reset_device_metrics(void) DECLSPEC_HIDDEN;
83 extern BOOL CDECL macdrv_GetDeviceGammaRamp(PHYSDEV dev, LPVOID ramp) DECLSPEC_HIDDEN;
84 extern BOOL CDECL macdrv_SetDeviceGammaRamp(PHYSDEV dev, LPVOID ramp) DECLSPEC_HIDDEN;
87 /**************************************************************************
88 * Mac USER driver
91 /* Mac driver private messages, must be in the range 0x80001000..0x80001fff */
92 enum macdrv_window_messages
94 WM_MACDRV_SET_WIN_REGION = 0x80001000,
95 WM_MACDRV_RESET_DEVICE_METRICS,
96 WM_MACDRV_DISPLAYCHANGE,
97 WM_MACDRV_ACTIVATE_ON_FOLLOWING_FOCUS,
100 struct macdrv_thread_data
102 macdrv_event_queue queue;
103 const macdrv_event *current_event;
104 macdrv_window capture_window;
105 CFDataRef keyboard_layout_uchr;
106 CGEventSourceKeyboardType keyboard_type;
107 int iso_keyboard;
108 CGEventFlags last_modifiers;
109 UInt32 dead_key_state;
110 HKL active_keyboard_layout;
111 WORD keyc2vkey[128];
112 WORD keyc2scan[128];
115 extern struct macdrv_thread_data *macdrv_init_thread_data(void) DECLSPEC_HIDDEN;
117 static inline struct macdrv_thread_data *macdrv_thread_data(void)
119 return (struct macdrv_thread_data *)(UINT_PTR)NtUserGetThreadInfo()->driver_data;
123 extern BOOL macdrv_ActivateKeyboardLayout(HKL hkl, UINT flags) DECLSPEC_HIDDEN;
124 extern void macdrv_Beep(void) DECLSPEC_HIDDEN;
125 extern LONG macdrv_ChangeDisplaySettings(LPDEVMODEW displays, LPCWSTR primary_name, HWND hwnd, DWORD flags, LPVOID lpvoid) DECLSPEC_HIDDEN;
126 extern BOOL macdrv_GetCurrentDisplaySettings(LPCWSTR name, BOOL is_primary, LPDEVMODEW devmode) DECLSPEC_HIDDEN;
127 extern INT macdrv_GetDisplayDepth(LPCWSTR name, BOOL is_primary) DECLSPEC_HIDDEN;
128 extern LRESULT macdrv_ClipboardWindowProc(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp) DECLSPEC_HIDDEN;
129 extern BOOL macdrv_UpdateDisplayDevices( const struct gdi_device_manager *device_manager,
130 BOOL force, void *param ) DECLSPEC_HIDDEN;
131 extern BOOL macdrv_GetDeviceGammaRamp(PHYSDEV dev, LPVOID ramp) DECLSPEC_HIDDEN;
132 extern BOOL macdrv_SetDeviceGammaRamp(PHYSDEV dev, LPVOID ramp) DECLSPEC_HIDDEN;
133 extern BOOL macdrv_ClipCursor(LPCRECT clip) DECLSPEC_HIDDEN;
134 extern BOOL macdrv_CreateDesktopWindow(HWND hwnd) DECLSPEC_HIDDEN;
135 extern LRESULT macdrv_DesktopWindowProc(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam) DECLSPEC_HIDDEN;
136 extern void macdrv_DestroyWindow(HWND hwnd) DECLSPEC_HIDDEN;
137 extern void macdrv_SetFocus(HWND hwnd) DECLSPEC_HIDDEN;
138 extern void macdrv_SetLayeredWindowAttributes(HWND hwnd, COLORREF key, BYTE alpha,
139 DWORD flags) DECLSPEC_HIDDEN;
140 extern void macdrv_SetParent(HWND hwnd, HWND parent, HWND old_parent) DECLSPEC_HIDDEN;
141 extern void macdrv_SetWindowRgn(HWND hwnd, HRGN hrgn, BOOL redraw) DECLSPEC_HIDDEN;
142 extern void macdrv_SetWindowStyle(HWND hwnd, INT offset, STYLESTRUCT *style) DECLSPEC_HIDDEN;
143 extern void macdrv_SetWindowText(HWND hwnd, LPCWSTR text) DECLSPEC_HIDDEN;
144 extern UINT macdrv_ShowWindow(HWND hwnd, INT cmd, RECT *rect, UINT swp) DECLSPEC_HIDDEN;
145 extern LRESULT macdrv_SysCommand(HWND hwnd, WPARAM wparam, LPARAM lparam) DECLSPEC_HIDDEN;
146 extern BOOL macdrv_UpdateLayeredWindow(HWND hwnd, const UPDATELAYEREDWINDOWINFO *info,
147 const RECT *window_rect) DECLSPEC_HIDDEN;
148 extern LRESULT macdrv_WindowMessage(HWND hwnd, UINT msg, WPARAM wp, LPARAM lp) DECLSPEC_HIDDEN;
149 extern BOOL macdrv_WindowPosChanging(HWND hwnd, HWND insert_after, UINT swp_flags,
150 const RECT *window_rect, const RECT *client_rect,
151 RECT *visible_rect, struct window_surface **surface) DECLSPEC_HIDDEN;
152 extern void macdrv_WindowPosChanged(HWND hwnd, HWND insert_after, UINT swp_flags,
153 const RECT *window_rect, const RECT *client_rect,
154 const RECT *visible_rect, const RECT *valid_rects,
155 struct window_surface *surface) DECLSPEC_HIDDEN;
156 extern void macdrv_DestroyCursorIcon(HCURSOR cursor) DECLSPEC_HIDDEN;
157 extern BOOL macdrv_ClipCursor(LPCRECT clip) DECLSPEC_HIDDEN;
158 extern BOOL macdrv_GetCursorPos(LPPOINT pos) DECLSPEC_HIDDEN;
159 extern void macdrv_SetCapture(HWND hwnd, UINT flags) DECLSPEC_HIDDEN;
160 extern void macdrv_SetCursor(HCURSOR cursor) DECLSPEC_HIDDEN;
161 extern BOOL macdrv_SetCursorPos(INT x, INT y) DECLSPEC_HIDDEN;
162 extern BOOL macdrv_RegisterHotKey(HWND hwnd, UINT mod_flags, UINT vkey) DECLSPEC_HIDDEN;
163 extern void macdrv_UnregisterHotKey(HWND hwnd, UINT modifiers, UINT vkey) DECLSPEC_HIDDEN;
164 extern SHORT macdrv_VkKeyScanEx(WCHAR wChar, HKL hkl) DECLSPEC_HIDDEN;
165 extern UINT macdrv_MapVirtualKeyEx(UINT wCode, UINT wMapType, HKL hkl) DECLSPEC_HIDDEN;
166 extern INT macdrv_ToUnicodeEx(UINT virtKey, UINT scanCode, const BYTE *lpKeyState,
167 LPWSTR bufW, int bufW_size, UINT flags, HKL hkl) DECLSPEC_HIDDEN;
168 extern UINT macdrv_GetKeyboardLayoutList(INT size, HKL *list) DECLSPEC_HIDDEN;
169 extern INT macdrv_GetKeyNameText(LONG lparam, LPWSTR buffer, INT size) DECLSPEC_HIDDEN;
170 extern BOOL macdrv_SystemParametersInfo(UINT action, UINT int_param, void *ptr_param,
171 UINT flags) DECLSPEC_HIDDEN;
172 extern BOOL macdrv_ProcessEvents(DWORD mask) DECLSPEC_HIDDEN;
173 extern void macdrv_ThreadDetach(void) DECLSPEC_HIDDEN;
176 /* macdrv private window data */
177 struct macdrv_win_data
179 HWND hwnd; /* hwnd that this private data belongs to */
180 macdrv_window cocoa_window;
181 macdrv_view cocoa_view;
182 macdrv_view client_cocoa_view;
183 RECT window_rect; /* USER window rectangle relative to parent */
184 RECT whole_rect; /* Mac window rectangle for the whole window relative to parent */
185 RECT client_rect; /* client area relative to parent */
186 int pixel_format; /* pixel format for GL */
187 COLORREF color_key; /* color key for layered window; CLR_INVALID is not color keyed */
188 HANDLE drag_event; /* event to signal that Cocoa-driven window dragging has ended */
189 unsigned int on_screen : 1; /* is window ordered in? (minimized or not) */
190 unsigned int shaped : 1; /* is window using a custom region shape? */
191 unsigned int layered : 1; /* is window layered and with valid attributes? */
192 unsigned int ulw_layered : 1; /* has UpdateLayeredWindow() been called for window? */
193 unsigned int per_pixel_alpha : 1; /* is window using per-pixel alpha? */
194 unsigned int minimized : 1; /* is window minimized? */
195 unsigned int swap_interval : 1; /* GL swap interval for window */
196 struct window_surface *surface;
197 struct window_surface *unminimized_surface;
200 extern struct macdrv_win_data *get_win_data(HWND hwnd) DECLSPEC_HIDDEN;
201 extern void release_win_data(struct macdrv_win_data *data) DECLSPEC_HIDDEN;
202 extern void init_win_context(void) DECLSPEC_HIDDEN;
203 extern macdrv_window macdrv_get_cocoa_window(HWND hwnd, BOOL require_on_screen) DECLSPEC_HIDDEN;
204 extern RGNDATA *get_region_data(HRGN hrgn, HDC hdc_lptodp) DECLSPEC_HIDDEN;
205 extern void activate_on_following_focus(void) DECLSPEC_HIDDEN;
206 extern struct window_surface *create_surface(macdrv_window window, const RECT *rect,
207 struct window_surface *old_surface, BOOL use_alpha) DECLSPEC_HIDDEN;
208 extern void set_window_surface(macdrv_window window, struct window_surface *window_surface) DECLSPEC_HIDDEN;
209 extern void set_surface_use_alpha(struct window_surface *window_surface, BOOL use_alpha) DECLSPEC_HIDDEN;
210 extern void surface_clip_to_visible_rect(struct window_surface *window_surface, const RECT *visible_rect) DECLSPEC_HIDDEN;
212 extern void macdrv_handle_event(const macdrv_event *event) DECLSPEC_HIDDEN;
214 extern void macdrv_window_close_requested(HWND hwnd) DECLSPEC_HIDDEN;
215 extern void macdrv_window_frame_changed(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
216 extern void macdrv_window_got_focus(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
217 extern void macdrv_window_lost_focus(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
218 extern void macdrv_app_activated(void) DECLSPEC_HIDDEN;
219 extern void macdrv_app_deactivated(void) DECLSPEC_HIDDEN;
220 extern void macdrv_app_quit_requested(const macdrv_event *event) DECLSPEC_HIDDEN;
221 extern void macdrv_window_maximize_requested(HWND hwnd) DECLSPEC_HIDDEN;
222 extern void macdrv_window_minimize_requested(HWND hwnd) DECLSPEC_HIDDEN;
223 extern void macdrv_window_did_minimize(HWND hwnd) DECLSPEC_HIDDEN;
224 extern void macdrv_window_did_unminimize(HWND hwnd) DECLSPEC_HIDDEN;
225 extern void macdrv_window_brought_forward(HWND hwnd) DECLSPEC_HIDDEN;
226 extern void macdrv_window_resize_ended(HWND hwnd) DECLSPEC_HIDDEN;
227 extern void macdrv_window_restore_requested(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
228 extern void macdrv_window_drag_begin(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
229 extern void macdrv_window_drag_end(HWND hwnd) DECLSPEC_HIDDEN;
230 extern void macdrv_reassert_window_position(HWND hwnd) DECLSPEC_HIDDEN;
231 extern BOOL query_resize_size(HWND hwnd, macdrv_query *query) DECLSPEC_HIDDEN;
232 extern BOOL query_resize_start(HWND hwnd) DECLSPEC_HIDDEN;
233 extern BOOL query_min_max_info(HWND hwnd) DECLSPEC_HIDDEN;
235 extern void macdrv_mouse_button(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
236 extern void macdrv_mouse_moved(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
237 extern void macdrv_mouse_scroll(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
238 extern void macdrv_release_capture(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
239 extern void macdrv_SetCapture(HWND hwnd, UINT flags) DECLSPEC_HIDDEN;
241 extern void macdrv_compute_keyboard_layout(struct macdrv_thread_data *thread_data) DECLSPEC_HIDDEN;
242 extern void macdrv_keyboard_changed(const macdrv_event *event) DECLSPEC_HIDDEN;
243 extern void macdrv_key_event(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
244 extern void macdrv_hotkey_press(const macdrv_event *event) DECLSPEC_HIDDEN;
245 extern HKL macdrv_get_hkl_from_source(TISInputSourceRef input_source) DECLSPEC_HIDDEN;
247 extern void macdrv_displays_changed(const macdrv_event *event) DECLSPEC_HIDDEN;
249 extern void macdrv_UpdateClipboard(void) DECLSPEC_HIDDEN;
250 extern BOOL query_pasteboard_data(HWND hwnd, CFStringRef type) DECLSPEC_HIDDEN;
251 extern void macdrv_lost_pasteboard_ownership(HWND hwnd) DECLSPEC_HIDDEN;
253 extern struct opengl_funcs *macdrv_wine_get_wgl_driver(UINT version) DECLSPEC_HIDDEN;
254 extern const struct vulkan_funcs *macdrv_wine_get_vulkan_driver(UINT version) DECLSPEC_HIDDEN;
255 extern void sync_gl_view(struct macdrv_win_data* data, const RECT* old_whole_rect, const RECT* old_client_rect) DECLSPEC_HIDDEN;
257 extern CGImageRef create_cgimage_from_icon_bitmaps(HDC hdc, HANDLE icon, HBITMAP hbmColor,
258 unsigned char *color_bits, int color_size, HBITMAP hbmMask,
259 unsigned char *mask_bits, int mask_size, int width,
260 int height, int istep) DECLSPEC_HIDDEN;
261 extern CGImageRef create_cgimage_from_icon(HANDLE icon, int width, int height) DECLSPEC_HIDDEN;
262 extern CFArrayRef create_app_icon_images(void) DECLSPEC_HIDDEN;
264 extern void macdrv_status_item_mouse_button(const macdrv_event *event) DECLSPEC_HIDDEN;
265 extern void macdrv_status_item_mouse_move(const macdrv_event *event) DECLSPEC_HIDDEN;
267 extern void check_retina_status(void) DECLSPEC_HIDDEN;
268 extern void macdrv_init_display_devices(BOOL force) DECLSPEC_HIDDEN;
269 extern void macdrv_resize_desktop(void) DECLSPEC_HIDDEN;
270 extern void init_user_driver(void) DECLSPEC_HIDDEN;
272 /* unixlib interface */
274 extern NTSTATUS macdrv_dnd_get_data(void *arg) DECLSPEC_HIDDEN;
275 extern NTSTATUS macdrv_dnd_get_formats(void *arg) DECLSPEC_HIDDEN;
276 extern NTSTATUS macdrv_dnd_have_format(void *arg) DECLSPEC_HIDDEN;
277 extern NTSTATUS macdrv_dnd_release(void *arg) DECLSPEC_HIDDEN;
278 extern NTSTATUS macdrv_dnd_retain(void *arg) DECLSPEC_HIDDEN;
279 extern NTSTATUS macdrv_ime_process_text_input(void *arg) DECLSPEC_HIDDEN;
280 extern NTSTATUS macdrv_notify_icon(void *arg) DECLSPEC_HIDDEN;
282 extern NTSTATUS macdrv_client_func(enum macdrv_client_funcs func, const void *params,
283 ULONG size) DECLSPEC_HIDDEN;
285 /* user helpers */
287 static inline LRESULT send_message(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam)
289 return NtUserMessageCall(hwnd, msg, wparam, lparam, NULL, NtUserSendDriverMessage, FALSE);
292 static inline LRESULT send_message_timeout(HWND hwnd, UINT msg, WPARAM wparam, LPARAM lparam,
293 UINT flags, UINT timeout, PDWORD_PTR res_ptr)
295 struct send_message_timeout_params params = { .flags = flags, .timeout = timeout };
296 LRESULT res = NtUserMessageCall(hwnd, msg, wparam, lparam, &params,
297 NtUserSendMessageTimeout, FALSE);
298 if (res_ptr) *res_ptr = params.result;
299 return res;
302 static inline HWND get_active_window(void)
304 GUITHREADINFO info;
305 info.cbSize = sizeof(info);
306 return NtUserGetGUIThreadInfo(GetCurrentThreadId(), &info) ? info.hwndActive : 0;
309 static inline HWND get_capture(void)
311 GUITHREADINFO info;
312 info.cbSize = sizeof(info);
313 return NtUserGetGUIThreadInfo(GetCurrentThreadId(), &info) ? info.hwndCapture : 0;
316 static inline HWND get_focus(void)
318 GUITHREADINFO info;
319 info.cbSize = sizeof(info);
320 return NtUserGetGUIThreadInfo(GetCurrentThreadId(), &info) ? info.hwndFocus : 0;
323 static inline BOOL intersect_rect( RECT *dst, const RECT *src1, const RECT *src2 )
325 dst->left = max(src1->left, src2->left);
326 dst->top = max(src1->top, src2->top);
327 dst->right = min(src1->right, src2->right);
328 dst->bottom = min(src1->bottom, src2->bottom);
329 return !IsRectEmpty( dst );
332 /* registry helpers */
334 extern HKEY open_hkcu_key( const char *name ) DECLSPEC_HIDDEN;
335 extern ULONG query_reg_value(HKEY hkey, const WCHAR *name, KEY_VALUE_PARTIAL_INFORMATION *info,
336 ULONG size) DECLSPEC_HIDDEN;
337 extern HKEY reg_create_ascii_key(HKEY root, const char *name, DWORD options,
338 DWORD *disposition) DECLSPEC_HIDDEN;
339 extern HKEY reg_create_key(HKEY root, const WCHAR *name, ULONG name_len,
340 DWORD options, DWORD *disposition) DECLSPEC_HIDDEN;
341 extern BOOL reg_delete_tree(HKEY parent, const WCHAR *name, ULONG name_len) DECLSPEC_HIDDEN;
342 extern HKEY reg_open_key(HKEY root, const WCHAR *name, ULONG name_len) DECLSPEC_HIDDEN;
344 /* string helpers */
346 static inline void ascii_to_unicode(WCHAR *dst, const char *src, size_t len)
348 while (len--) *dst++ = (unsigned char)*src++;
351 static inline UINT asciiz_to_unicode(WCHAR *dst, const char *src)
353 WCHAR *p = dst;
354 while ((*p++ = *src++));
355 return (p - dst) * sizeof(WCHAR);
358 #endif /* __WINE_MACDRV_H */