winemac: Implement SetCapture().
[wine.git] / dlls / winemac.drv / macdrv_cocoa.h
blob84dfd8732ad061d6d0db7a5c48d9ea92f0e581f6
1 /*
2 * MACDRV Cocoa interface declarations
4 * Copyright 2011, 2012, 2013 Ken Thomases for CodeWeavers Inc.
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 /* This header serves as a C interface between the Wine parts of MACDRV
22 * and the Objective-C parts. It should restrict itself to C and the C-based
23 * Mac APIs, avoiding both Wine and Objective-C/Cocoa features, so that it can
24 * be included by both sides without contaminating either.
27 #ifndef __WINE_MACDRV_COCOA_H
28 #define __WINE_MACDRV_COCOA_H
31 #define GetCurrentProcess MacGetCurrentProcess
32 #define GetCurrentThread MacGetCurrentThread
33 #define LoadResource MacLoadResource
34 #define AnimatePalette MacAnimatePalette
35 #define EqualRgn MacEqualRgn
36 #define FillRgn MacFillRgn
37 #define FrameRgn MacFrameRgn
38 #define GetPixel MacGetPixel
39 #define InvertRgn MacInvertRgn
40 #define LineTo MacLineTo
41 #define OffsetRgn MacOffsetRgn
42 #define PaintRgn MacPaintRgn
43 #define Polygon MacPolygon
44 #define ResizePalette MacResizePalette
45 #define SetRectRgn MacSetRectRgn
46 #define EqualRect MacEqualRect
47 #define FillRect MacFillRect
48 #define FrameRect MacFrameRect
49 #define GetCursor MacGetCursor
50 #define InvertRect MacInvertRect
51 #define OffsetRect MacOffsetRect
52 #define PtInRect MacPtInRect
53 #define SetCursor MacSetCursor
54 #define SetRect MacSetRect
55 #define ShowCursor MacShowCursor
56 #define UnionRect MacUnionRect
58 #include <ApplicationServices/ApplicationServices.h>
60 #undef GetCurrentProcess
61 #undef GetCurrentThread
62 #undef LoadResource
63 #undef AnimatePalette
64 #undef EqualRgn
65 #undef FillRgn
66 #undef FrameRgn
67 #undef GetPixel
68 #undef InvertRgn
69 #undef LineTo
70 #undef OffsetRgn
71 #undef PaintRgn
72 #undef Polygon
73 #undef ResizePalette
74 #undef SetRectRgn
75 #undef EqualRect
76 #undef FillRect
77 #undef FrameRect
78 #undef GetCursor
79 #undef InvertRect
80 #undef OffsetRect
81 #undef PtInRect
82 #undef SetCursor
83 #undef SetRect
84 #undef ShowCursor
85 #undef UnionRect
86 #undef DPRINTF
88 #include <pthread.h>
91 #ifndef DECLSPEC_HIDDEN
92 # if defined(__MSC_VER) || defined(__MINGW32__) || defined(__CYGWIN__)
93 # define DECLSPEC_HIDDEN
94 # elif defined(__GNUC__) && ((__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)))
95 # define DECLSPEC_HIDDEN __attribute__((visibility ("hidden")))
96 # else
97 # define DECLSPEC_HIDDEN
98 # endif
99 #endif
102 /* Must match the values of Cocoa's NSDragOperation enum. */
103 enum {
104 DRAG_OP_NONE = 0,
105 DRAG_OP_COPY = 1,
106 DRAG_OP_LINK = 2,
107 DRAG_OP_GENERIC = 4,
108 DRAG_OP_PRIVATE = 8,
109 DRAG_OP_MOVE = 16,
110 DRAG_OP_DELETE = 32,
111 DRAG_OP_EVERY = UINT32_MAX
115 typedef struct macdrv_opaque_window* macdrv_window;
116 typedef struct macdrv_opaque_event_queue* macdrv_event_queue;
117 typedef struct macdrv_opaque_view* macdrv_view;
118 typedef struct macdrv_opaque_opengl_context* macdrv_opengl_context;
119 typedef struct macdrv_opaque_status_item* macdrv_status_item;
120 struct macdrv_event;
121 struct macdrv_query;
123 struct macdrv_display {
124 CGDirectDisplayID displayID;
125 CGRect frame;
126 CGRect work_frame;
130 /* main */
131 extern int macdrv_err_on;
133 extern int macdrv_start_cocoa_app(unsigned long long tickcount) DECLSPEC_HIDDEN;
134 extern void macdrv_window_rejected_focus(const struct macdrv_event *event) DECLSPEC_HIDDEN;
135 extern void macdrv_beep(void) DECLSPEC_HIDDEN;
136 extern void macdrv_set_application_icon(CFArrayRef images) DECLSPEC_HIDDEN;
137 extern void macdrv_quit_reply(int reply) DECLSPEC_HIDDEN;
138 extern int macdrv_using_input_method(void) DECLSPEC_HIDDEN;
139 extern void macdrv_set_mouse_capture_window(macdrv_window window) DECLSPEC_HIDDEN;
142 /* cursor */
143 extern void macdrv_set_cursor(CFStringRef name, CFArrayRef frames) DECLSPEC_HIDDEN;
144 extern int macdrv_get_cursor_position(CGPoint *pos) DECLSPEC_HIDDEN;
145 extern int macdrv_set_cursor_position(CGPoint pos) DECLSPEC_HIDDEN;
146 extern int macdrv_clip_cursor(CGRect rect) DECLSPEC_HIDDEN;
149 /* display */
150 extern int macdrv_get_displays(struct macdrv_display** displays, int* count) DECLSPEC_HIDDEN;
151 extern void macdrv_free_displays(struct macdrv_display* displays) DECLSPEC_HIDDEN;
152 extern int macdrv_set_display_mode(const struct macdrv_display* display,
153 CGDisplayModeRef display_mode) DECLSPEC_HIDDEN;
156 /* event */
157 enum {
158 APP_DEACTIVATED,
159 APP_QUIT_REQUESTED,
160 DISPLAYS_CHANGED,
161 IM_SET_CURSOR_POS,
162 IM_SET_TEXT,
163 KEY_PRESS,
164 KEY_RELEASE,
165 KEYBOARD_CHANGED,
166 MOUSE_BUTTON,
167 MOUSE_MOVED,
168 MOUSE_MOVED_ABSOLUTE,
169 MOUSE_SCROLL,
170 QUERY_EVENT,
171 STATUS_ITEM_CLICKED,
172 WINDOW_CLOSE_REQUESTED,
173 WINDOW_DID_MINIMIZE,
174 WINDOW_DID_UNMINIMIZE,
175 WINDOW_FRAME_CHANGED,
176 WINDOW_GOT_FOCUS,
177 WINDOW_LOST_FOCUS,
178 NUM_EVENT_TYPES
181 enum {
182 QUIT_REASON_NONE,
183 QUIT_REASON_LOGOUT,
184 QUIT_REASON_RESTART,
185 QUIT_REASON_SHUTDOWN,
188 typedef uint32_t macdrv_event_mask;
190 typedef struct macdrv_event {
191 int refs;
192 int deliver;
193 int type;
194 macdrv_window window;
195 union {
196 struct {
197 int reason;
198 } app_quit_requested;
199 struct {
200 int activating;
201 } displays_changed;
202 struct {
203 void *data;
204 unsigned int pos;
205 } im_set_cursor_pos;
206 struct {
207 void *data;
208 CFStringRef text; /* new text or NULL if just completing existing text */
209 unsigned int complete; /* is completing text? */
210 } im_set_text;
211 struct {
212 CGKeyCode keycode;
213 CGEventFlags modifiers;
214 unsigned long time_ms;
215 } key;
216 struct {
217 CFDataRef uchr;
218 CGEventSourceKeyboardType keyboard_type;
219 int iso_keyboard;
220 } keyboard_changed;
221 struct {
222 int button;
223 int pressed;
224 int x;
225 int y;
226 unsigned long time_ms;
227 } mouse_button;
228 struct {
229 int x;
230 int y;
231 int drag;
232 unsigned long time_ms;
233 } mouse_moved;
234 struct {
235 int x_scroll;
236 int y_scroll;
237 int x;
238 int y;
239 unsigned long time_ms;
240 } mouse_scroll;
241 struct {
242 struct macdrv_query *query;
243 } query_event;
244 struct {
245 macdrv_status_item item;
246 int count;
247 } status_item_clicked;
248 struct {
249 CGRect frame;
250 } window_frame_changed;
251 struct {
252 unsigned long serial;
253 void *tried_windows;
254 } window_got_focus;
256 } macdrv_event;
258 enum {
259 QUERY_DRAG_DROP,
260 QUERY_DRAG_EXITED,
261 QUERY_DRAG_OPERATION,
262 QUERY_PASTEBOARD_DATA,
263 NUM_QUERY_TYPES
266 typedef struct macdrv_query {
267 int refs;
268 int type;
269 macdrv_window window;
270 int status;
271 int done;
272 union {
273 struct {
274 int x;
275 int y;
276 uint32_t op;
277 CFTypeRef pasteboard;
278 } drag_drop;
279 struct {
280 int x;
281 int y;
282 uint32_t offered_ops;
283 uint32_t accepted_op;
284 CFTypeRef pasteboard;
285 } drag_operation;
286 struct {
287 CFStringRef type;
288 } pasteboard_data;
290 } macdrv_query;
292 static inline macdrv_event_mask event_mask_for_type(int type)
294 return ((macdrv_event_mask)1 << type);
297 typedef void (*macdrv_event_handler)(const macdrv_event *event);
299 extern macdrv_event_queue macdrv_create_event_queue(macdrv_event_handler handler) DECLSPEC_HIDDEN;
300 extern void macdrv_destroy_event_queue(macdrv_event_queue queue) DECLSPEC_HIDDEN;
301 extern int macdrv_get_event_queue_fd(macdrv_event_queue queue) DECLSPEC_HIDDEN;
303 extern int macdrv_copy_event_from_queue(macdrv_event_queue queue,
304 macdrv_event_mask mask, macdrv_event **event) DECLSPEC_HIDDEN;
305 extern void macdrv_release_event(macdrv_event *event) DECLSPEC_HIDDEN;
307 extern macdrv_query* macdrv_create_query(void) DECLSPEC_HIDDEN;
308 extern macdrv_query* macdrv_retain_query(macdrv_query *query) DECLSPEC_HIDDEN;
309 extern void macdrv_release_query(macdrv_query *query) DECLSPEC_HIDDEN;
310 extern void macdrv_set_query_done(macdrv_query *query) DECLSPEC_HIDDEN;
313 /* window */
314 struct macdrv_window_features {
315 unsigned int title_bar:1;
316 unsigned int close_button:1;
317 unsigned int minimize_button:1;
318 unsigned int resizable:1;
319 unsigned int utility:1;
320 unsigned int shadow:1;
323 struct macdrv_window_state {
324 unsigned int disabled:1;
325 unsigned int no_activate:1;
326 unsigned int floating:1;
327 unsigned int excluded_by_expose:1;
328 unsigned int excluded_by_cycle:1;
329 unsigned int minimized:1;
332 extern macdrv_window macdrv_create_cocoa_window(const struct macdrv_window_features* wf,
333 CGRect frame, void* hwnd, macdrv_event_queue queue) DECLSPEC_HIDDEN;
334 extern void macdrv_destroy_cocoa_window(macdrv_window w) DECLSPEC_HIDDEN;
335 extern void* macdrv_get_window_hwnd(macdrv_window w) DECLSPEC_HIDDEN;
336 extern void macdrv_set_cocoa_window_features(macdrv_window w,
337 const struct macdrv_window_features* wf) DECLSPEC_HIDDEN;
338 extern void macdrv_set_cocoa_window_state(macdrv_window w,
339 const struct macdrv_window_state* state) DECLSPEC_HIDDEN;
340 extern void macdrv_set_cocoa_window_title(macdrv_window w, const UniChar* title,
341 size_t length) DECLSPEC_HIDDEN;
342 extern int macdrv_order_cocoa_window(macdrv_window w, macdrv_window prev,
343 macdrv_window next) DECLSPEC_HIDDEN;
344 extern void macdrv_hide_cocoa_window(macdrv_window w) DECLSPEC_HIDDEN;
345 extern int macdrv_set_cocoa_window_frame(macdrv_window w, const CGRect* new_frame) DECLSPEC_HIDDEN;
346 extern void macdrv_get_cocoa_window_frame(macdrv_window w, CGRect* out_frame) DECLSPEC_HIDDEN;
347 extern void macdrv_set_cocoa_parent_window(macdrv_window w, macdrv_window parent) DECLSPEC_HIDDEN;
348 extern void macdrv_set_window_surface(macdrv_window w, void *surface, pthread_mutex_t *mutex) DECLSPEC_HIDDEN;
349 extern CGImageRef create_surface_image(void *window_surface, CGRect *rect, int copy_data) DECLSPEC_HIDDEN;
350 extern int get_surface_blit_rects(void *window_surface, const CGRect **rects, int *count) DECLSPEC_HIDDEN;
351 extern void macdrv_window_needs_display(macdrv_window w, CGRect rect) DECLSPEC_HIDDEN;
352 extern void macdrv_set_window_shape(macdrv_window w, const CGRect *rects, int count) DECLSPEC_HIDDEN;
353 extern void macdrv_set_window_alpha(macdrv_window w, CGFloat alpha) DECLSPEC_HIDDEN;
354 extern void macdrv_set_window_color_key(macdrv_window w, CGFloat keyRed, CGFloat keyGreen,
355 CGFloat keyBlue) DECLSPEC_HIDDEN;
356 extern void macdrv_clear_window_color_key(macdrv_window w) DECLSPEC_HIDDEN;
357 extern void macdrv_window_use_per_pixel_alpha(macdrv_window w, int use_per_pixel_alpha) DECLSPEC_HIDDEN;
358 extern void macdrv_give_cocoa_window_focus(macdrv_window w, int activate) DECLSPEC_HIDDEN;
359 extern macdrv_view macdrv_create_view(macdrv_window w, CGRect rect) DECLSPEC_HIDDEN;
360 extern void macdrv_dispose_view(macdrv_view v) DECLSPEC_HIDDEN;
361 extern void macdrv_set_view_window_and_frame(macdrv_view v, macdrv_window w, CGRect rect) DECLSPEC_HIDDEN;
362 extern void macdrv_add_view_opengl_context(macdrv_view v, macdrv_opengl_context c) DECLSPEC_HIDDEN;
363 extern void macdrv_remove_view_opengl_context(macdrv_view v, macdrv_opengl_context c) DECLSPEC_HIDDEN;
364 extern uint32_t macdrv_window_background_color(void) DECLSPEC_HIDDEN;
365 extern int macdrv_send_text_input_event(int pressed, unsigned int flags, int repeat, int keyc,
366 void* data) DECLSPEC_HIDDEN;
369 /* keyboard */
370 extern CFDataRef macdrv_copy_keyboard_layout(CGEventSourceKeyboardType* keyboard_type, int* is_iso) DECLSPEC_HIDDEN;
373 /* clipboard */
374 extern CFArrayRef macdrv_copy_pasteboard_types(CFTypeRef pasteboard) DECLSPEC_HIDDEN;
375 extern CFDataRef macdrv_copy_pasteboard_data(CFTypeRef pasteboard, CFStringRef type) DECLSPEC_HIDDEN;
376 extern int macdrv_is_pasteboard_owner(void) DECLSPEC_HIDDEN;
377 extern void macdrv_clear_pasteboard(void) DECLSPEC_HIDDEN;
378 extern int macdrv_set_pasteboard_data(CFStringRef type, CFDataRef data, macdrv_window w) DECLSPEC_HIDDEN;
381 /* opengl */
382 extern macdrv_opengl_context macdrv_create_opengl_context(void* cglctx) DECLSPEC_HIDDEN;
383 extern void macdrv_dispose_opengl_context(macdrv_opengl_context c) DECLSPEC_HIDDEN;
384 extern void macdrv_make_context_current(macdrv_opengl_context c, macdrv_view v) DECLSPEC_HIDDEN;
385 extern void macdrv_update_opengl_context(macdrv_opengl_context c) DECLSPEC_HIDDEN;
386 extern void macdrv_flush_opengl_context(macdrv_opengl_context c) DECLSPEC_HIDDEN;
389 /* systray / status item */
390 extern macdrv_status_item macdrv_create_status_item(macdrv_event_queue q) DECLSPEC_HIDDEN;
391 extern void macdrv_destroy_status_item(macdrv_status_item s) DECLSPEC_HIDDEN;
392 extern void macdrv_set_status_item_image(macdrv_status_item s, CGImageRef cgimage) DECLSPEC_HIDDEN;
393 extern void macdrv_set_status_item_tooltip(macdrv_status_item s, CFStringRef cftip) DECLSPEC_HIDDEN;
395 #endif /* __WINE_MACDRV_COCOA_H */