macdrv.h 11.3 KB
Newer Older
1 2 3 4 5
/*
 * MACDRV windowing driver
 *
 * Copyright 1996 Alexandre Julliard
 * Copyright 1999 Patrik Stridvall
6
 * Copyright 2011, 2012, 2013 Ken Thomases for CodeWeavers Inc.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
 *
 * 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
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
 */

#ifndef __WINE_MACDRV_H
#define __WINE_MACDRV_H

#ifndef __WINE_CONFIG_H
# error You must include config.h to use this header
#endif

30
#include "macdrv_cocoa.h"
31 32 33 34 35 36 37
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "wine/debug.h"
#include "wine/gdi_driver.h"


38
extern BOOL skip_single_buffer_flushes DECLSPEC_HIDDEN;
39
extern BOOL allow_vsync DECLSPEC_HIDDEN;
40
extern BOOL allow_set_gamma DECLSPEC_HIDDEN;
41
extern BOOL allow_software_rendering DECLSPEC_HIDDEN;
42
extern BOOL disable_window_decorations DECLSPEC_HIDDEN;
43
extern HMODULE macdrv_module DECLSPEC_HIDDEN;
44 45


46 47
extern const char* debugstr_cf(CFTypeRef t) DECLSPEC_HIDDEN;

48 49
static inline CGRect cgrect_from_rect(RECT rect)
{
50 51 52
    if (rect.left >= rect.right || rect.top >= rect.bottom)
        return CGRectMake(rect.left, rect.top, 0, 0);
    return CGRectMake(rect.left, rect.top, rect.right - rect.left, rect.bottom - rect.top);
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
}

static inline RECT rect_from_cgrect(CGRect cgrect)
{
    static const RECT empty;

    if (!CGRectIsNull(cgrect))
    {
        RECT rect = { CGRectGetMinX(cgrect), CGRectGetMinY(cgrect),
                      CGRectGetMaxX(cgrect), CGRectGetMaxY(cgrect) };
        return rect;
    }

    return empty;
}

69 70 71 72 73 74
static inline const char *wine_dbgstr_cgrect(CGRect cgrect)
{
    return wine_dbg_sprintf("(%g,%g)-(%g,%g)", CGRectGetMinX(cgrect), CGRectGetMinY(cgrect),
                            CGRectGetMaxX(cgrect), CGRectGetMaxY(cgrect));
}

75 76
extern const char* debugstr_cf(CFTypeRef t) DECLSPEC_HIDDEN;

77

78 79 80 81 82
/**************************************************************************
 * Mac GDI driver
 */

extern CGRect macdrv_get_desktop_rect(void) DECLSPEC_HIDDEN;
83
extern void macdrv_reset_device_metrics(void) DECLSPEC_HIDDEN;
84 85
extern BOOL CDECL macdrv_GetDeviceGammaRamp(PHYSDEV dev, LPVOID ramp) DECLSPEC_HIDDEN;
extern BOOL CDECL macdrv_SetDeviceGammaRamp(PHYSDEV dev, LPVOID ramp) DECLSPEC_HIDDEN;
86 87


88 89 90 91
/**************************************************************************
 * Mac USER driver
 */

92 93 94 95
/* Mac driver private messages, must be in the range 0x80001000..0x80001fff */
enum macdrv_window_messages
{
    WM_MACDRV_SET_WIN_REGION = 0x80001000,
96 97 98
    WM_MACDRV_UPDATE_DESKTOP_RECT,
    WM_MACDRV_RESET_DEVICE_METRICS,
    WM_MACDRV_DISPLAYCHANGE,
99
    WM_MACDRV_ACTIVATE_ON_FOLLOWING_FOCUS,
100 101
};

102 103 104
struct macdrv_thread_data
{
    macdrv_event_queue          queue;
105
    const macdrv_event         *current_event;
106
    macdrv_window               capture_window;
107 108 109
    CFDataRef                   keyboard_layout_uchr;
    CGEventSourceKeyboardType   keyboard_type;
    int                         iso_keyboard;
110 111
    CGEventFlags                last_modifiers;
    UInt32                      dead_key_state;
112
    HKL                         active_keyboard_layout;
113 114
    WORD                        keyc2vkey[128];
    WORD                        keyc2scan[128];
115 116 117 118 119 120 121 122 123 124 125 126
};

extern DWORD thread_data_tls_index DECLSPEC_HIDDEN;

extern struct macdrv_thread_data *macdrv_init_thread_data(void) DECLSPEC_HIDDEN;

static inline struct macdrv_thread_data *macdrv_thread_data(void)
{
    return TlsGetValue(thread_data_tls_index);
}


127 128 129 130 131
/* macdrv private window data */
struct macdrv_win_data
{
    HWND                hwnd;                   /* hwnd that this private data belongs to */
    macdrv_window       cocoa_window;
132 133
    macdrv_view         cocoa_view;
    macdrv_view         client_cocoa_view;
134 135 136
    RECT                window_rect;            /* USER window rectangle relative to parent */
    RECT                whole_rect;             /* Mac window rectangle for the whole window relative to parent */
    RECT                client_rect;            /* client area relative to parent */
137
    int                 pixel_format;           /* pixel format for GL */
138
    COLORREF            color_key;              /* color key for layered window; CLR_INVALID is not color keyed */
139
    HANDLE              drag_event;             /* event to signal that Cocoa-driven window dragging has ended */
140 141 142 143 144 145
    unsigned int        on_screen : 1;          /* is window ordered in? (minimized or not) */
    unsigned int        shaped : 1;             /* is window using a custom region shape? */
    unsigned int        layered : 1;            /* is window layered and with valid attributes? */
    unsigned int        ulw_layered : 1;        /* has UpdateLayeredWindow() been called for window? */
    unsigned int        per_pixel_alpha : 1;    /* is window using per-pixel alpha? */
    unsigned int        minimized : 1;          /* is window minimized? */
146
    unsigned int        swap_interval : 1;      /* GL swap interval for window */
147
    struct window_surface *surface;
148
    struct window_surface *unminimized_surface;
149 150
};

151 152 153
extern struct macdrv_win_data *get_win_data(HWND hwnd) DECLSPEC_HIDDEN;
extern void release_win_data(struct macdrv_win_data *data) DECLSPEC_HIDDEN;
extern macdrv_window macdrv_get_cocoa_window(HWND hwnd, BOOL require_on_screen) DECLSPEC_HIDDEN;
154
extern RGNDATA *get_region_data(HRGN hrgn, HDC hdc_lptodp) DECLSPEC_HIDDEN;
155
extern void activate_on_following_focus(void) DECLSPEC_HIDDEN;
156 157
extern struct window_surface *create_surface(macdrv_window window, const RECT *rect,
                                             struct window_surface *old_surface, BOOL use_alpha) DECLSPEC_HIDDEN;
158
extern void set_window_surface(macdrv_window window, struct window_surface *window_surface) DECLSPEC_HIDDEN;
159
extern void set_surface_use_alpha(struct window_surface *window_surface, BOOL use_alpha) DECLSPEC_HIDDEN;
160
extern void surface_clip_to_visible_rect(struct window_surface *window_surface, const RECT *visible_rect) DECLSPEC_HIDDEN;
161

162
extern void macdrv_handle_event(const macdrv_event *event) DECLSPEC_HIDDEN;
163

164
extern void macdrv_window_close_requested(HWND hwnd) DECLSPEC_HIDDEN;
165
extern void macdrv_window_frame_changed(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
166
extern void macdrv_window_got_focus(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
167
extern void macdrv_window_lost_focus(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
168
extern void macdrv_app_activated(void) DECLSPEC_HIDDEN;
169
extern void macdrv_app_deactivated(void) DECLSPEC_HIDDEN;
170
extern void macdrv_app_quit_requested(const macdrv_event *event) DECLSPEC_HIDDEN;
171
extern void macdrv_window_maximize_requested(HWND hwnd) DECLSPEC_HIDDEN;
172
extern void macdrv_window_minimize_requested(HWND hwnd) DECLSPEC_HIDDEN;
173
extern void macdrv_window_did_unminimize(HWND hwnd) DECLSPEC_HIDDEN;
174
extern void macdrv_window_brought_forward(HWND hwnd) DECLSPEC_HIDDEN;
175
extern void macdrv_window_resize_ended(HWND hwnd) DECLSPEC_HIDDEN;
176
extern void macdrv_window_restore_requested(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
177
extern void macdrv_window_drag_begin(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
178
extern void macdrv_window_drag_end(HWND hwnd) DECLSPEC_HIDDEN;
179
extern void macdrv_reassert_window_position(HWND hwnd) DECLSPEC_HIDDEN;
180
extern BOOL query_resize_size(HWND hwnd, macdrv_query *query) DECLSPEC_HIDDEN;
181
extern BOOL query_resize_start(HWND hwnd) DECLSPEC_HIDDEN;
182
extern BOOL query_min_max_info(HWND hwnd) DECLSPEC_HIDDEN;
183

184
extern void macdrv_mouse_button(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
185
extern void macdrv_mouse_moved(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
186
extern void macdrv_mouse_scroll(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
187
extern void macdrv_release_capture(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
188
extern void CDECL macdrv_SetCapture(HWND hwnd, UINT flags) DECLSPEC_HIDDEN;
189

190
extern void macdrv_compute_keyboard_layout(struct macdrv_thread_data *thread_data) DECLSPEC_HIDDEN;
191
extern void macdrv_keyboard_changed(const macdrv_event *event) DECLSPEC_HIDDEN;
192
extern void macdrv_key_event(HWND hwnd, const macdrv_event *event) DECLSPEC_HIDDEN;
193
extern void macdrv_hotkey_press(const macdrv_event *event) DECLSPEC_HIDDEN;
194
extern HKL macdrv_get_hkl_from_source(TISInputSourceRef input_source) DECLSPEC_HIDDEN;
195

196 197
extern void macdrv_displays_changed(const macdrv_event *event) DECLSPEC_HIDDEN;

198
extern void CDECL macdrv_UpdateClipboard(void) DECLSPEC_HIDDEN;
199
extern void macdrv_init_clipboard(void) DECLSPEC_HIDDEN;
200
extern BOOL query_pasteboard_data(HWND hwnd, CFStringRef type) DECLSPEC_HIDDEN;
201
extern void macdrv_lost_pasteboard_ownership(HWND hwnd) DECLSPEC_HIDDEN;
202 203
extern const char *debugstr_format(UINT id) DECLSPEC_HIDDEN;
extern HANDLE macdrv_get_pasteboard_data(CFTypeRef pasteboard, UINT desired_format) DECLSPEC_HIDDEN;
204
extern BOOL macdrv_pasteboard_has_format(CFTypeRef pasteboard, UINT desired_format) DECLSPEC_HIDDEN;
205
extern UINT* macdrv_get_pasteboard_formats(CFTypeRef pasteboard, UINT* num_formats) DECLSPEC_HIDDEN;
206 207 208 209

extern BOOL query_drag_operation(macdrv_query* query) DECLSPEC_HIDDEN;
extern BOOL query_drag_exited(macdrv_query* query) DECLSPEC_HIDDEN;
extern BOOL query_drag_drop(macdrv_query* query) DECLSPEC_HIDDEN;
210

211 212
extern struct opengl_funcs * CDECL macdrv_wine_get_wgl_driver(PHYSDEV dev, UINT version) DECLSPEC_HIDDEN;
extern const struct vulkan_funcs * CDECL macdrv_wine_get_vulkan_driver(PHYSDEV dev, UINT version) DECLSPEC_HIDDEN;
213
extern void sync_gl_view(struct macdrv_win_data* data, const RECT* old_whole_rect, const RECT* old_client_rect) DECLSPEC_HIDDEN;
214

215 216 217 218
extern CGImageRef create_cgimage_from_icon_bitmaps(HDC hdc, HANDLE icon, HBITMAP hbmColor,
                                                   unsigned char *color_bits, int color_size, HBITMAP hbmMask,
                                                   unsigned char *mask_bits, int mask_size, int width,
                                                   int height, int istep) DECLSPEC_HIDDEN;
219
extern CGImageRef create_cgimage_from_icon(HANDLE icon, int width, int height) DECLSPEC_HIDDEN;
220
extern CFArrayRef create_app_icon_images(void) DECLSPEC_HIDDEN;
221

222 223
extern void macdrv_status_item_mouse_button(const macdrv_event *event) DECLSPEC_HIDDEN;
extern void macdrv_status_item_mouse_move(const macdrv_event *event) DECLSPEC_HIDDEN;
224

225
extern void check_retina_status(void) DECLSPEC_HIDDEN;
226
extern void macdrv_init_display_devices(BOOL force) DECLSPEC_HIDDEN;
227 228 229 230 231

/**************************************************************************
 * Mac IME driver
 */

232 233
extern void macdrv_process_text_input(UINT vkey, UINT scan, UINT repeat, const BYTE *key_state,
                                      void *himc, int* done) DECLSPEC_HIDDEN;
234 235

extern void macdrv_im_set_text(const macdrv_event *event) DECLSPEC_HIDDEN;
236
extern void macdrv_sent_text_input(const macdrv_event *event) DECLSPEC_HIDDEN;
237
extern BOOL query_ime_char_rect(macdrv_query* query) DECLSPEC_HIDDEN;
238

239
#endif  /* __WINE_MACDRV_H */