2005-11-22 10:03:32 +00:00
|
|
|
/* gdkwindow-quartz.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
2007-03-10 21:58:49 +00:00
|
|
|
* Copyright (C) 2005-2007 Imendio AB
|
2005-11-22 10:03:32 +00: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 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., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2008-06-22 14:28:52 +00:00
|
|
|
#include "config.h"
|
2007-10-02 17:51:06 +00:00
|
|
|
#include <Carbon/Carbon.h>
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
#include "gdk.h"
|
2008-06-27 17:06:06 +00:00
|
|
|
#include "gdkwindowimpl.h"
|
2005-11-22 10:03:32 +00:00
|
|
|
#include "gdkprivate-quartz.h"
|
2009-10-25 20:36:56 +00:00
|
|
|
#include "gdkscreen-quartz.h"
|
2009-10-23 11:53:57 +00:00
|
|
|
#include "gdkinputprivate.h"
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
static gpointer parent_class;
|
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
static GSList *update_nswindows;
|
|
|
|
static gboolean in_process_all_updates = FALSE;
|
2007-07-07 16:19:40 +00:00
|
|
|
|
|
|
|
static GSList *main_window_stack;
|
2006-08-08 20:53:09 +00:00
|
|
|
|
2008-02-14 21:41:59 +00:00
|
|
|
#define FULLSCREEN_DATA "fullscreen-data"
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
gint x, y;
|
|
|
|
gint width, height;
|
|
|
|
GdkWMDecoration decor;
|
|
|
|
} FullscreenSavedGeometry;
|
|
|
|
|
|
|
|
|
2007-10-23 13:06:31 +00:00
|
|
|
static void update_toplevel_order (void);
|
2008-02-14 21:41:59 +00:00
|
|
|
static void clear_toplevel_order (void);
|
|
|
|
|
|
|
|
static FullscreenSavedGeometry *get_fullscreen_geometry (GdkWindow *window);
|
2007-10-23 13:06:31 +00:00
|
|
|
|
2009-01-05 14:34:44 +00:00
|
|
|
#define WINDOW_IS_TOPLEVEL(window) \
|
|
|
|
(GDK_WINDOW_TYPE (window) != GDK_WINDOW_CHILD && \
|
|
|
|
GDK_WINDOW_TYPE (window) != GDK_WINDOW_FOREIGN && \
|
|
|
|
GDK_WINDOW_TYPE (window) != GDK_WINDOW_OFFSCREEN)
|
2006-08-08 20:53:09 +00:00
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static void gdk_window_impl_iface_init (GdkWindowImplIface *iface);
|
|
|
|
|
2006-03-21 08:02:17 +00:00
|
|
|
NSView *
|
|
|
|
gdk_quartz_window_get_nsview (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GdkWindowObject *private = (GdkWindowObject *)window;
|
|
|
|
|
2007-12-10 20:44:23 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return NULL;
|
|
|
|
|
2006-03-21 08:02:17 +00:00
|
|
|
return ((GdkWindowImplQuartz *)private->impl)->view;
|
|
|
|
}
|
|
|
|
|
2007-12-10 20:44:23 +00:00
|
|
|
NSWindow *
|
|
|
|
gdk_quartz_window_get_nswindow (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GdkWindowObject *private = (GdkWindowObject *)window;
|
|
|
|
|
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return ((GdkWindowImplQuartz *)private->impl)->toplevel;
|
|
|
|
}
|
|
|
|
|
2008-07-20 16:14:35 +00:00
|
|
|
static CGContextRef
|
|
|
|
gdk_window_impl_quartz_get_context (GdkDrawable *drawable,
|
|
|
|
gboolean antialias)
|
|
|
|
{
|
|
|
|
GdkDrawableImplQuartz *drawable_impl = GDK_DRAWABLE_IMPL_QUARTZ (drawable);
|
|
|
|
GdkWindowImplQuartz *window_impl = GDK_WINDOW_IMPL_QUARTZ (drawable);
|
|
|
|
CGContextRef cg_context;
|
|
|
|
|
|
|
|
if (GDK_WINDOW_DESTROYED (drawable_impl->wrapper))
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* Lock focus when not called as part of a drawRect call. This
|
|
|
|
* is needed when called from outside "real" expose events, for
|
|
|
|
* example for synthesized expose events when realizing windows
|
|
|
|
* and for widgets that send fake expose events like the arrow
|
2009-02-18 15:20:06 +00:00
|
|
|
* buttons in spinbuttons or the position marker in rulers.
|
2008-07-20 16:14:35 +00:00
|
|
|
*/
|
|
|
|
if (window_impl->in_paint_rect_count == 0)
|
|
|
|
{
|
|
|
|
if (![window_impl->view lockFocusIfCanDraw])
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
cg_context = [[NSGraphicsContext currentContext] graphicsPort];
|
|
|
|
CGContextSaveGState (cg_context);
|
|
|
|
CGContextSetAllowsAntialiasing (cg_context, antialias);
|
|
|
|
|
|
|
|
/* We'll emulate the clipping caused by double buffering here */
|
|
|
|
if (window_impl->begin_paint_count != 0)
|
|
|
|
{
|
|
|
|
CGRect rect;
|
|
|
|
CGRect *cg_rects;
|
|
|
|
GdkRectangle *rects;
|
|
|
|
gint n_rects, i;
|
|
|
|
|
|
|
|
gdk_region_get_rectangles (window_impl->paint_clip_region,
|
|
|
|
&rects, &n_rects);
|
|
|
|
|
|
|
|
if (n_rects == 1)
|
|
|
|
cg_rects = ▭
|
|
|
|
else
|
|
|
|
cg_rects = g_new (CGRect, n_rects);
|
|
|
|
|
|
|
|
for (i = 0; i < n_rects; i++)
|
|
|
|
{
|
|
|
|
cg_rects[i].origin.x = rects[i].x;
|
|
|
|
cg_rects[i].origin.y = rects[i].y;
|
|
|
|
cg_rects[i].size.width = rects[i].width;
|
|
|
|
cg_rects[i].size.height = rects[i].height;
|
|
|
|
}
|
|
|
|
|
|
|
|
CGContextClipToRects (cg_context, cg_rects, n_rects);
|
|
|
|
|
|
|
|
g_free (rects);
|
|
|
|
if (cg_rects != &rect)
|
|
|
|
g_free (cg_rects);
|
|
|
|
}
|
|
|
|
|
|
|
|
return cg_context;
|
|
|
|
}
|
|
|
|
|
2009-02-02 18:14:07 +00:00
|
|
|
static void
|
|
|
|
check_grab_unmap (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GdkDisplay *display = gdk_drawable_get_display (window);
|
|
|
|
|
|
|
|
_gdk_display_end_pointer_grab (display, 0, window, TRUE);
|
|
|
|
|
|
|
|
if (display->keyboard_grab.window)
|
|
|
|
{
|
|
|
|
GdkWindowObject *private = GDK_WINDOW_OBJECT (window);
|
|
|
|
GdkWindowObject *tmp = GDK_WINDOW_OBJECT (display->keyboard_grab.window);
|
|
|
|
|
|
|
|
while (tmp && tmp != private)
|
|
|
|
tmp = tmp->parent;
|
|
|
|
|
|
|
|
if (tmp)
|
|
|
|
_gdk_display_unset_has_keyboard_grab (display, TRUE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
check_grab_destroy (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GdkDisplay *display = gdk_drawable_get_display (window);
|
|
|
|
GdkPointerGrabInfo *grab;
|
|
|
|
|
|
|
|
/* Make sure there is no lasting grab in this native window */
|
|
|
|
grab = _gdk_display_get_last_pointer_grab (display);
|
|
|
|
if (grab && grab->native_window == window)
|
|
|
|
{
|
|
|
|
/* Serials are always 0 in quartz, but for clarity: */
|
|
|
|
grab->serial_end = grab->serial_start;
|
|
|
|
grab->implicit_ungrab = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (window == display->keyboard_grab.native_window &&
|
|
|
|
display->keyboard_grab.window != NULL)
|
|
|
|
_gdk_display_unset_has_keyboard_grab (display, TRUE);
|
|
|
|
}
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
static void
|
|
|
|
gdk_window_impl_quartz_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GdkWindowImplQuartz *impl = GDK_WINDOW_IMPL_QUARTZ (object);
|
|
|
|
|
2009-02-02 18:14:07 +00:00
|
|
|
check_grab_destroy (GDK_DRAWABLE_IMPL_QUARTZ (object)->wrapper);
|
|
|
|
|
2006-04-10 23:17:26 +00:00
|
|
|
if (impl->paint_clip_region)
|
|
|
|
gdk_region_destroy (impl->paint_clip_region);
|
|
|
|
|
2007-06-04 20:02:58 +00:00
|
|
|
if (impl->transient_for)
|
|
|
|
g_object_unref (impl->transient_for);
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_window_impl_quartz_class_init (GdkWindowImplQuartzClass *klass)
|
|
|
|
{
|
2006-04-10 23:17:26 +00:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2009-01-05 14:39:44 +00:00
|
|
|
GdkDrawableImplQuartzClass *drawable_quartz_class = GDK_DRAWABLE_IMPL_QUARTZ_CLASS (klass);
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
|
|
|
|
2006-04-10 23:17:26 +00:00
|
|
|
object_class->finalize = gdk_window_impl_quartz_finalize;
|
|
|
|
|
2008-07-20 16:14:35 +00:00
|
|
|
drawable_quartz_class->get_context = gdk_window_impl_quartz_get_context;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_window_impl_quartz_init (GdkWindowImplQuartz *impl)
|
|
|
|
{
|
2006-07-19 09:13:24 +00:00
|
|
|
impl->type_hint = GDK_WINDOW_TYPE_HINT_NORMAL;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2006-04-10 23:17:26 +00:00
|
|
|
static void
|
2008-01-25 13:13:05 +00:00
|
|
|
gdk_window_impl_quartz_begin_paint_region (GdkPaintable *paintable,
|
2009-01-26 19:33:33 +00:00
|
|
|
GdkWindow *window,
|
2008-01-25 13:13:05 +00:00
|
|
|
const GdkRegion *region)
|
2006-04-10 23:17:26 +00:00
|
|
|
{
|
|
|
|
GdkWindowImplQuartz *impl = GDK_WINDOW_IMPL_QUARTZ (paintable);
|
2009-01-26 19:33:33 +00:00
|
|
|
GdkWindowObject *private = (GdkWindowObject*)window;
|
2006-07-31 21:05:12 +00:00
|
|
|
int n_rects;
|
2009-01-26 19:33:33 +00:00
|
|
|
GdkRectangle *rects = NULL;
|
2006-07-31 21:05:12 +00:00
|
|
|
GdkPixmap *bg_pixmap;
|
2009-01-26 19:33:33 +00:00
|
|
|
GdkRegion *clipped_and_offset_region;
|
|
|
|
gboolean free_clipped_and_offset_region = TRUE;
|
|
|
|
|
|
|
|
bg_pixmap = private->bg_pixmap;
|
2007-03-10 21:58:49 +00:00
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
clipped_and_offset_region = gdk_region_copy (region);
|
|
|
|
|
|
|
|
gdk_region_intersect (clipped_and_offset_region,
|
|
|
|
private->clip_region_with_children);
|
|
|
|
gdk_region_offset (clipped_and_offset_region,
|
|
|
|
private->abs_x, private->abs_y);
|
2006-04-10 23:17:26 +00:00
|
|
|
|
|
|
|
if (impl->begin_paint_count == 0)
|
2009-01-26 19:33:33 +00:00
|
|
|
{
|
|
|
|
impl->paint_clip_region = clipped_and_offset_region;
|
|
|
|
free_clipped_and_offset_region = FALSE;
|
|
|
|
}
|
2006-04-10 23:17:26 +00:00
|
|
|
else
|
2009-01-26 19:33:33 +00:00
|
|
|
gdk_region_union (impl->paint_clip_region, clipped_and_offset_region);
|
2006-04-10 23:17:26 +00:00
|
|
|
|
2007-03-10 21:58:49 +00:00
|
|
|
impl->begin_paint_count++;
|
2006-04-10 23:17:26 +00:00
|
|
|
|
2006-07-31 21:05:12 +00:00
|
|
|
if (bg_pixmap == GDK_NO_BG)
|
2009-01-26 19:33:33 +00:00
|
|
|
goto done;
|
2007-03-10 21:58:49 +00:00
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
gdk_region_get_rectangles (clipped_and_offset_region, &rects, &n_rects);
|
2007-03-10 21:58:49 +00:00
|
|
|
|
2006-07-31 21:05:12 +00:00
|
|
|
if (bg_pixmap == NULL)
|
|
|
|
{
|
2007-03-10 21:58:49 +00:00
|
|
|
CGContextRef cg_context;
|
2009-12-28 08:01:01 +00:00
|
|
|
CGFloat r, g, b, a;
|
2006-07-31 21:05:12 +00:00
|
|
|
gint i;
|
2007-03-10 21:58:49 +00:00
|
|
|
|
|
|
|
cg_context = gdk_quartz_drawable_get_context (GDK_DRAWABLE (impl), FALSE);
|
2009-01-26 19:33:33 +00:00
|
|
|
_gdk_quartz_colormap_get_rgba_from_pixel (gdk_drawable_get_colormap (window),
|
|
|
|
private->bg_color.pixel,
|
|
|
|
&r, &g, &b, &a);
|
2008-11-05 10:26:47 +00:00
|
|
|
CGContextSetRGBFillColor (cg_context, r, g, b, a);
|
2007-03-10 21:58:49 +00:00
|
|
|
|
2008-11-05 10:26:47 +00:00
|
|
|
for (i = 0; i < n_rects; i++)
|
2006-07-31 21:05:12 +00:00
|
|
|
{
|
2007-03-10 21:58:49 +00:00
|
|
|
CGContextFillRect (cg_context,
|
2008-11-05 10:26:47 +00:00
|
|
|
CGRectMake (rects[i].x, rects[i].y,
|
|
|
|
rects[i].width, rects[i].height));
|
2006-07-31 21:05:12 +00:00
|
|
|
}
|
2007-03-10 21:58:49 +00:00
|
|
|
|
|
|
|
gdk_quartz_drawable_release_context (GDK_DRAWABLE (impl), cg_context);
|
2006-07-31 21:05:12 +00:00
|
|
|
}
|
|
|
|
else
|
2006-04-10 23:17:26 +00:00
|
|
|
{
|
2006-07-31 21:05:12 +00:00
|
|
|
int x, y;
|
|
|
|
int x_offset, y_offset;
|
|
|
|
int width, height;
|
|
|
|
GdkGC *gc;
|
2007-03-10 21:58:49 +00:00
|
|
|
|
2006-07-31 21:05:12 +00:00
|
|
|
x_offset = y_offset = 0;
|
2007-03-10 21:58:49 +00:00
|
|
|
|
2007-12-03 19:34:30 +00:00
|
|
|
while (window && bg_pixmap == GDK_PARENT_RELATIVE_BG)
|
2006-07-31 21:05:12 +00:00
|
|
|
{
|
|
|
|
/* If this window should have the same background as the parent,
|
|
|
|
* fetch the parent. (And if the same goes for the parent, fetch
|
|
|
|
* the grandparent, etc.)
|
|
|
|
*/
|
|
|
|
x_offset += ((GdkWindowObject *) window)->x;
|
|
|
|
y_offset += ((GdkWindowObject *) window)->y;
|
|
|
|
window = GDK_WINDOW (((GdkWindowObject *) window)->parent);
|
2007-12-03 19:34:30 +00:00
|
|
|
bg_pixmap = ((GdkWindowObject *) window)->bg_pixmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bg_pixmap == NULL || bg_pixmap == GDK_NO_BG || bg_pixmap == GDK_PARENT_RELATIVE_BG)
|
|
|
|
{
|
|
|
|
/* Parent relative background but the parent doesn't have a
|
|
|
|
* pixmap.
|
|
|
|
*/
|
2009-01-26 19:33:33 +00:00
|
|
|
goto done;
|
2006-07-31 21:05:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Note: There should be a CG API to draw tiled images, we might
|
|
|
|
* want to look into that for this.
|
|
|
|
*/
|
|
|
|
gc = gdk_gc_new (GDK_DRAWABLE (impl));
|
2007-03-10 21:58:49 +00:00
|
|
|
|
2006-07-31 21:05:12 +00:00
|
|
|
gdk_drawable_get_size (GDK_DRAWABLE (bg_pixmap), &width, &height);
|
2007-03-10 21:58:49 +00:00
|
|
|
|
2006-07-31 21:05:12 +00:00
|
|
|
x = -x_offset;
|
|
|
|
while (x < (rects[0].x + rects[0].width))
|
|
|
|
{
|
|
|
|
if (x + width >= rects[0].x)
|
|
|
|
{
|
|
|
|
y = -y_offset;
|
|
|
|
while (y < (rects[0].y + rects[0].height))
|
|
|
|
{
|
|
|
|
if (y + height >= rects[0].y)
|
|
|
|
gdk_draw_drawable (GDK_DRAWABLE (impl), gc, bg_pixmap, 0, 0, x, y, width, height);
|
|
|
|
|
|
|
|
y += height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
x += width;
|
|
|
|
}
|
2007-03-10 21:58:49 +00:00
|
|
|
|
|
|
|
g_object_unref (gc);
|
2006-04-10 23:17:26 +00:00
|
|
|
}
|
2007-03-10 21:58:49 +00:00
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
done:
|
|
|
|
if (free_clipped_and_offset_region)
|
|
|
|
gdk_region_destroy (clipped_and_offset_region);
|
2006-04-10 23:17:26 +00:00
|
|
|
g_free (rects);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_window_impl_quartz_end_paint (GdkPaintable *paintable)
|
|
|
|
{
|
|
|
|
GdkWindowImplQuartz *impl = GDK_WINDOW_IMPL_QUARTZ (paintable);
|
|
|
|
|
2007-03-10 21:58:49 +00:00
|
|
|
impl->begin_paint_count--;
|
2006-04-12 08:23:01 +00:00
|
|
|
|
|
|
|
if (impl->begin_paint_count == 0)
|
|
|
|
{
|
|
|
|
gdk_region_destroy (impl->paint_clip_region);
|
|
|
|
impl->paint_clip_region = NULL;
|
|
|
|
}
|
2006-04-10 23:17:26 +00:00
|
|
|
}
|
|
|
|
|
2009-09-20 13:27:14 +00:00
|
|
|
void
|
|
|
|
_gdk_quartz_window_set_needs_display_in_rect (GdkWindow *window,
|
|
|
|
GdkRectangle *rect)
|
|
|
|
{
|
|
|
|
GdkWindowObject *private;
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
|
|
|
private = GDK_WINDOW_OBJECT (window);
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
|
|
|
|
if (!impl->needs_display_region)
|
|
|
|
impl->needs_display_region = gdk_region_new ();
|
|
|
|
|
|
|
|
gdk_region_union_with_rect (impl->needs_display_region, rect);
|
|
|
|
|
|
|
|
[impl->view setNeedsDisplayInRect:NSMakeRect (rect->x, rect->y,
|
|
|
|
rect->width, rect->height)];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
void
|
|
|
|
_gdk_windowing_window_process_updates_recurse (GdkWindow *window,
|
|
|
|
GdkRegion *region)
|
2006-08-08 20:53:09 +00:00
|
|
|
{
|
2009-01-26 19:33:33 +00:00
|
|
|
int i, n_rects;
|
|
|
|
GdkRectangle *rects;
|
2007-03-10 21:58:49 +00:00
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
/* Make sure to only flush each toplevel at most once if we're called
|
|
|
|
* from process_all_updates.
|
|
|
|
*/
|
|
|
|
if (in_process_all_updates)
|
2006-08-08 20:53:09 +00:00
|
|
|
{
|
2008-03-14 10:20:55 +00:00
|
|
|
GdkWindow *toplevel;
|
|
|
|
|
|
|
|
toplevel = gdk_window_get_toplevel (window);
|
2008-03-25 13:35:20 +00:00
|
|
|
if (toplevel)
|
2008-03-14 10:20:55 +00:00
|
|
|
{
|
2009-01-26 19:33:33 +00:00
|
|
|
GdkWindowObject *toplevel_private;
|
|
|
|
GdkWindowImplQuartz *toplevel_impl;
|
2008-03-25 13:35:20 +00:00
|
|
|
NSWindow *nswindow;
|
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
toplevel_private = (GdkWindowObject *)toplevel;
|
|
|
|
toplevel_impl = (GdkWindowImplQuartz *)toplevel_private->impl;
|
|
|
|
nswindow = toplevel_impl->toplevel;
|
2008-03-25 13:35:20 +00:00
|
|
|
|
2009-02-04 09:40:40 +00:00
|
|
|
/* In theory, we could skip the flush disabling, since we only
|
|
|
|
* have one NSView.
|
|
|
|
*/
|
2008-03-25 13:35:20 +00:00
|
|
|
if (nswindow && ![nswindow isFlushWindowDisabled])
|
|
|
|
{
|
2009-01-26 19:33:33 +00:00
|
|
|
[nswindow retain];
|
2008-03-25 13:35:20 +00:00
|
|
|
[nswindow disableFlushWindow];
|
2009-01-26 19:33:33 +00:00
|
|
|
update_nswindows = g_slist_prepend (update_nswindows, nswindow);
|
2008-03-25 13:35:20 +00:00
|
|
|
}
|
2008-03-14 10:20:55 +00:00
|
|
|
}
|
2006-08-08 20:53:09 +00:00
|
|
|
}
|
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
gdk_region_get_rectangles (region, &rects, &n_rects);
|
2008-03-14 10:20:55 +00:00
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
for (i = 0; i < n_rects; i++)
|
2009-09-20 13:27:14 +00:00
|
|
|
_gdk_quartz_window_set_needs_display_in_rect (window, &rects[i]);
|
2007-03-10 21:58:49 +00:00
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
g_free (rects);
|
|
|
|
|
2009-02-04 09:40:40 +00:00
|
|
|
/* NOTE: I'm not sure if we should displayIfNeeded here. It slows down a
|
|
|
|
* lot (since it triggers the beam syncing) and things seem to work
|
|
|
|
* without it.
|
|
|
|
*/
|
2006-08-08 20:53:09 +00:00
|
|
|
}
|
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
void
|
|
|
|
_gdk_windowing_before_process_all_updates (void)
|
2006-08-08 20:53:09 +00:00
|
|
|
{
|
2009-01-26 19:33:33 +00:00
|
|
|
in_process_all_updates = TRUE;
|
2009-02-05 07:23:58 +00:00
|
|
|
|
|
|
|
NSDisableScreenUpdates ();
|
2006-08-08 20:53:09 +00:00
|
|
|
}
|
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
void
|
|
|
|
_gdk_windowing_after_process_all_updates (void)
|
2006-04-10 23:17:26 +00:00
|
|
|
{
|
2009-01-26 19:33:33 +00:00
|
|
|
GSList *old_update_nswindows = update_nswindows;
|
|
|
|
GSList *tmp_list = update_nswindows;
|
2006-04-10 23:17:26 +00:00
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
update_nswindows = NULL;
|
2006-04-10 23:17:26 +00:00
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
while (tmp_list)
|
2006-08-08 20:53:09 +00:00
|
|
|
{
|
2009-01-26 19:33:33 +00:00
|
|
|
NSWindow *nswindow = tmp_list->data;
|
|
|
|
|
2009-02-04 09:40:40 +00:00
|
|
|
[[nswindow contentView] displayIfNeeded];
|
|
|
|
|
2009-02-09 14:46:30 +00:00
|
|
|
_gdk_quartz_drawable_flush (NULL);
|
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
[nswindow enableFlushWindow];
|
|
|
|
[nswindow flushWindow];
|
|
|
|
[nswindow release];
|
2006-04-10 23:17:26 +00:00
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
tmp_list = tmp_list->next;
|
2006-08-08 20:53:09 +00:00
|
|
|
}
|
2006-04-10 23:17:26 +00:00
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
g_slist_free (old_update_nswindows);
|
2006-04-10 23:17:26 +00:00
|
|
|
|
2009-01-26 19:33:33 +00:00
|
|
|
in_process_all_updates = FALSE;
|
2009-02-05 07:23:58 +00:00
|
|
|
|
|
|
|
NSEnableScreenUpdates ();
|
2006-04-10 23:17:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_window_impl_quartz_paintable_init (GdkPaintableIface *iface)
|
|
|
|
{
|
|
|
|
iface->begin_paint_region = gdk_window_impl_quartz_begin_paint_region;
|
|
|
|
iface->end_paint = gdk_window_impl_quartz_end_paint;
|
|
|
|
}
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
GType
|
|
|
|
_gdk_window_impl_quartz_get_type (void)
|
|
|
|
{
|
|
|
|
static GType object_type = 0;
|
|
|
|
|
|
|
|
if (!object_type)
|
|
|
|
{
|
2007-03-10 21:58:49 +00:00
|
|
|
const GTypeInfo object_info =
|
|
|
|
{
|
|
|
|
sizeof (GdkWindowImplQuartzClass),
|
|
|
|
(GBaseInitFunc) NULL,
|
|
|
|
(GBaseFinalizeFunc) NULL,
|
|
|
|
(GClassInitFunc) gdk_window_impl_quartz_class_init,
|
|
|
|
NULL, /* class_finalize */
|
|
|
|
NULL, /* class_data */
|
|
|
|
sizeof (GdkWindowImplQuartz),
|
|
|
|
0, /* n_preallocs */
|
|
|
|
(GInstanceInitFunc) gdk_window_impl_quartz_init,
|
|
|
|
};
|
|
|
|
|
|
|
|
const GInterfaceInfo paintable_info =
|
|
|
|
{
|
|
|
|
(GInterfaceInitFunc) gdk_window_impl_quartz_paintable_init,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
2006-04-10 23:17:26 +00:00
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
const GInterfaceInfo window_impl_info =
|
|
|
|
{
|
|
|
|
(GInterfaceInitFunc) gdk_window_impl_iface_init,
|
|
|
|
NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
object_type = g_type_register_static (GDK_TYPE_DRAWABLE_IMPL_QUARTZ,
|
|
|
|
"GdkWindowImplQuartz",
|
|
|
|
&object_info, 0);
|
2006-04-10 23:17:26 +00:00
|
|
|
g_type_add_interface_static (object_type,
|
|
|
|
GDK_TYPE_PAINTABLE,
|
|
|
|
&paintable_info);
|
2008-06-27 17:06:06 +00:00
|
|
|
g_type_add_interface_static (object_type,
|
|
|
|
GDK_TYPE_WINDOW_IMPL,
|
|
|
|
&window_impl_info);
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
2007-03-10 21:58:49 +00:00
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
return object_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
GType
|
|
|
|
_gdk_window_impl_get_type (void)
|
|
|
|
{
|
|
|
|
return _gdk_window_impl_quartz_get_type ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static const gchar *
|
|
|
|
get_default_title (void)
|
|
|
|
{
|
|
|
|
const char *title;
|
|
|
|
|
|
|
|
title = g_get_application_name ();
|
|
|
|
if (!title)
|
|
|
|
title = g_get_prgname ();
|
|
|
|
|
|
|
|
return title;
|
|
|
|
}
|
|
|
|
|
2008-02-16 00:27:29 +00:00
|
|
|
static void
|
|
|
|
get_ancestor_coordinates_from_child (GdkWindow *child_window,
|
|
|
|
gint child_x,
|
|
|
|
gint child_y,
|
|
|
|
GdkWindow *ancestor_window,
|
|
|
|
gint *ancestor_x,
|
|
|
|
gint *ancestor_y)
|
|
|
|
{
|
|
|
|
GdkWindowObject *child_private = GDK_WINDOW_OBJECT (child_window);
|
|
|
|
GdkWindowObject *ancestor_private = GDK_WINDOW_OBJECT (ancestor_window);
|
|
|
|
|
|
|
|
while (child_private != ancestor_private)
|
|
|
|
{
|
|
|
|
child_x += child_private->x;
|
|
|
|
child_y += child_private->y;
|
|
|
|
|
|
|
|
child_private = child_private->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ancestor_x = child_x;
|
|
|
|
*ancestor_y = child_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-03-31 13:15:15 +00:00
|
|
|
_gdk_quartz_window_debug_highlight (GdkWindow *window, gint number)
|
2008-02-16 00:27:29 +00:00
|
|
|
{
|
|
|
|
GdkWindowObject *private = GDK_WINDOW_OBJECT (window);
|
|
|
|
gint x, y;
|
2009-10-25 20:36:56 +00:00
|
|
|
gint gx, gy;
|
2008-02-16 00:27:29 +00:00
|
|
|
GdkWindow *toplevel;
|
|
|
|
gint tx, ty;
|
2008-03-31 13:15:15 +00:00
|
|
|
static NSWindow *debug_window[10];
|
|
|
|
static NSRect old_rect[10];
|
2008-02-16 00:27:29 +00:00
|
|
|
NSRect rect;
|
2008-03-31 13:15:15 +00:00
|
|
|
NSColor *color;
|
|
|
|
|
|
|
|
g_return_if_fail (number >= 0 && number <= 9);
|
2008-02-16 00:27:29 +00:00
|
|
|
|
|
|
|
if (window == _gdk_root)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (window == NULL)
|
2008-03-31 13:15:15 +00:00
|
|
|
{
|
|
|
|
if (debug_window[number])
|
|
|
|
[debug_window[number] close];
|
|
|
|
debug_window[number] = NULL;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2008-02-16 00:27:29 +00:00
|
|
|
|
|
|
|
toplevel = gdk_window_get_toplevel (window);
|
|
|
|
get_ancestor_coordinates_from_child (window, 0, 0, toplevel, &x, &y);
|
|
|
|
|
|
|
|
gdk_window_get_origin (toplevel, &tx, &ty);
|
|
|
|
x += tx;
|
|
|
|
y += ty;
|
|
|
|
|
2009-10-25 20:36:56 +00:00
|
|
|
_gdk_quartz_window_gdk_xy_to_xy (x, y + private->height,
|
|
|
|
&gx, &gy);
|
|
|
|
|
|
|
|
rect = NSMakeRect (gx, gy, private->width, private->height);
|
2008-02-16 00:27:29 +00:00
|
|
|
|
2008-03-31 13:15:15 +00:00
|
|
|
if (debug_window[number] && NSEqualRects (rect, old_rect[number]))
|
|
|
|
return;
|
|
|
|
|
|
|
|
old_rect[number] = rect;
|
2008-02-16 00:27:29 +00:00
|
|
|
|
2008-03-31 13:15:15 +00:00
|
|
|
if (debug_window[number])
|
|
|
|
[debug_window[number] close];
|
2008-02-16 00:27:29 +00:00
|
|
|
|
2008-03-31 13:15:15 +00:00
|
|
|
debug_window[number] = [[NSWindow alloc] initWithContentRect:rect
|
|
|
|
styleMask:NSBorderlessWindowMask
|
|
|
|
backing:NSBackingStoreBuffered
|
|
|
|
defer:NO];
|
2008-02-16 00:27:29 +00:00
|
|
|
|
2008-03-31 13:15:15 +00:00
|
|
|
switch (number)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
color = [NSColor redColor];
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
color = [NSColor blueColor];
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
color = [NSColor greenColor];
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
color = [NSColor yellowColor];
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
color = [NSColor brownColor];
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
color = [NSColor purpleColor];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
color = [NSColor blackColor];
|
|
|
|
break;
|
|
|
|
}
|
2008-02-16 00:27:29 +00:00
|
|
|
|
2008-03-31 13:15:15 +00:00
|
|
|
[debug_window[number] setBackgroundColor:color];
|
|
|
|
[debug_window[number] setAlphaValue:0.4];
|
|
|
|
[debug_window[number] setOpaque:NO];
|
|
|
|
[debug_window[number] setReleasedWhenClosed:YES];
|
|
|
|
[debug_window[number] setIgnoresMouseEvents:YES];
|
|
|
|
[debug_window[number] setLevel:NSFloatingWindowLevel];
|
2008-02-16 00:27:29 +00:00
|
|
|
|
2008-03-31 13:15:15 +00:00
|
|
|
[debug_window[number] orderFront:nil];
|
2008-02-16 00:27:29 +00:00
|
|
|
}
|
|
|
|
|
2007-07-13 19:09:10 +00:00
|
|
|
gboolean
|
|
|
|
_gdk_quartz_window_is_ancestor (GdkWindow *ancestor,
|
|
|
|
GdkWindow *window)
|
|
|
|
{
|
|
|
|
if (ancestor == NULL || window == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
return (gdk_window_get_parent (window) == ancestor ||
|
|
|
|
_gdk_quartz_window_is_ancestor (ancestor,
|
|
|
|
gdk_window_get_parent (window)));
|
|
|
|
}
|
|
|
|
|
2009-10-25 20:36:56 +00:00
|
|
|
|
2009-11-15 14:29:45 +00:00
|
|
|
/* See notes on top of gdkscreen-quartz.c */
|
2009-10-25 20:36:56 +00:00
|
|
|
void
|
|
|
|
_gdk_quartz_window_gdk_xy_to_xy (gint gdk_x,
|
|
|
|
gint gdk_y,
|
|
|
|
gint *ns_x,
|
|
|
|
gint *ns_y)
|
|
|
|
{
|
|
|
|
GdkScreenQuartz *screen_quartz = GDK_SCREEN_QUARTZ (_gdk_screen);
|
|
|
|
|
|
|
|
if (ns_y)
|
|
|
|
*ns_y = screen_quartz->height - gdk_y + screen_quartz->min_y;
|
|
|
|
|
|
|
|
if (ns_x)
|
|
|
|
*ns_x = gdk_x + screen_quartz->min_x;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_gdk_quartz_window_xy_to_gdk_xy (gint ns_x,
|
|
|
|
gint ns_y,
|
|
|
|
gint *gdk_x,
|
|
|
|
gint *gdk_y)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2009-10-25 20:36:56 +00:00
|
|
|
GdkScreenQuartz *screen_quartz = GDK_SCREEN_QUARTZ (_gdk_screen);
|
2005-11-22 10:03:32 +00:00
|
|
|
|
2009-10-25 20:36:56 +00:00
|
|
|
if (gdk_y)
|
|
|
|
*gdk_y = screen_quartz->height - ns_y + screen_quartz->min_y;
|
2009-09-27 11:36:08 +00:00
|
|
|
|
2009-10-25 20:36:56 +00:00
|
|
|
if (gdk_x)
|
|
|
|
*gdk_x = ns_x - screen_quartz->min_x;
|
|
|
|
}
|
2009-09-27 11:36:08 +00:00
|
|
|
|
2009-10-25 20:36:56 +00:00
|
|
|
void
|
|
|
|
_gdk_quartz_window_nspoint_to_gdk_xy (NSPoint point,
|
|
|
|
gint *x,
|
|
|
|
gint *y)
|
|
|
|
{
|
|
|
|
_gdk_quartz_window_xy_to_gdk_xy (point.x, point.y,
|
|
|
|
x, y);
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2007-05-28 20:42:51 +00:00
|
|
|
static GdkWindow *
|
|
|
|
find_child_window_helper (GdkWindow *window,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint x_offset,
|
|
|
|
gint y_offset)
|
|
|
|
{
|
2007-10-23 13:06:31 +00:00
|
|
|
GdkWindowImplQuartz *impl;
|
2007-05-28 20:42:51 +00:00
|
|
|
GList *l;
|
|
|
|
|
2007-10-23 13:06:31 +00:00
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (window)->impl);
|
|
|
|
|
|
|
|
if (window == _gdk_root)
|
|
|
|
update_toplevel_order ();
|
|
|
|
|
|
|
|
for (l = impl->sorted_children; l; l = l->next)
|
2007-05-28 20:42:51 +00:00
|
|
|
{
|
2007-10-23 13:06:31 +00:00
|
|
|
GdkWindowObject *child_private = l->data;
|
|
|
|
GdkWindowImplQuartz *child_impl = GDK_WINDOW_IMPL_QUARTZ (child_private->impl);
|
2007-05-28 20:42:51 +00:00
|
|
|
int temp_x, temp_y;
|
|
|
|
|
2007-10-23 13:06:31 +00:00
|
|
|
if (!GDK_WINDOW_IS_MAPPED (child_private))
|
2007-05-28 20:42:51 +00:00
|
|
|
continue;
|
|
|
|
|
2007-10-23 13:06:31 +00:00
|
|
|
temp_x = x_offset + child_private->x;
|
|
|
|
temp_y = y_offset + child_private->y;
|
|
|
|
|
|
|
|
/* Special-case the root window. We have to include the title
|
|
|
|
* bar in the checks, otherwise the window below the title bar
|
|
|
|
* will be found i.e. events punch through. (If we can find a
|
|
|
|
* better way to deal with the events in gdkevents-quartz, this
|
|
|
|
* might not be needed.)
|
|
|
|
*/
|
|
|
|
if (window == _gdk_root)
|
|
|
|
{
|
|
|
|
NSRect frame = NSMakeRect (0, 0, 100, 100);
|
|
|
|
NSRect content;
|
2009-12-27 16:01:25 +00:00
|
|
|
NSUInteger mask;
|
2007-10-23 13:06:31 +00:00
|
|
|
int titlebar_height;
|
|
|
|
|
|
|
|
mask = [child_impl->toplevel styleMask];
|
|
|
|
|
|
|
|
/* Get the title bar height. */
|
|
|
|
content = [NSWindow contentRectForFrameRect:frame
|
|
|
|
styleMask:mask];
|
|
|
|
titlebar_height = frame.size.height - content.size.height;
|
|
|
|
|
|
|
|
if (titlebar_height > 0 &&
|
|
|
|
x >= temp_x && y >= temp_y - titlebar_height &&
|
2009-01-05 14:56:57 +00:00
|
|
|
x < temp_x + child_private->width && y < temp_y)
|
2007-10-23 13:06:31 +00:00
|
|
|
{
|
|
|
|
/* The root means "unknown" i.e. a window not managed by
|
|
|
|
* GDK.
|
|
|
|
*/
|
|
|
|
return (GdkWindow *)_gdk_root;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-28 20:42:51 +00:00
|
|
|
if (x >= temp_x && y >= temp_y &&
|
2009-01-05 14:56:57 +00:00
|
|
|
x < temp_x + child_private->width && y < temp_y + child_private->height)
|
2007-05-28 20:42:51 +00:00
|
|
|
{
|
|
|
|
/* Look for child windows. */
|
|
|
|
return find_child_window_helper (l->data,
|
|
|
|
x, y,
|
|
|
|
temp_x, temp_y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return window;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Given a GdkWindow and coordinates relative to it, returns the
|
2007-06-30 19:39:45 +00:00
|
|
|
* innermost subwindow that contains the point. If the coordinates are
|
|
|
|
* outside the passed in window, NULL is returned.
|
2007-05-28 20:42:51 +00:00
|
|
|
*/
|
|
|
|
GdkWindow *
|
|
|
|
_gdk_quartz_window_find_child (GdkWindow *window,
|
|
|
|
gint x,
|
|
|
|
gint y)
|
|
|
|
{
|
|
|
|
GdkWindowObject *private = GDK_WINDOW_OBJECT (window);
|
|
|
|
|
2009-01-05 14:56:57 +00:00
|
|
|
if (x >= 0 && y >= 0 && x < private->width && y < private->height)
|
2007-05-28 20:42:51 +00:00
|
|
|
return find_child_window_helper (window, x, y, 0, 0);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-09-25 15:23:54 +00:00
|
|
|
|
2007-07-07 16:19:40 +00:00
|
|
|
void
|
|
|
|
_gdk_quartz_window_did_become_main (GdkWindow *window)
|
|
|
|
{
|
|
|
|
main_window_stack = g_slist_remove (main_window_stack, window);
|
|
|
|
|
|
|
|
if (GDK_WINDOW_OBJECT (window)->window_type != GDK_WINDOW_TEMP)
|
2010-01-03 14:27:53 +00:00
|
|
|
main_window_stack = g_slist_prepend (main_window_stack, window);
|
2007-10-23 13:06:31 +00:00
|
|
|
|
|
|
|
clear_toplevel_order ();
|
2007-07-07 16:19:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_gdk_quartz_window_did_resign_main (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GdkWindow *new_window = NULL;
|
|
|
|
|
|
|
|
if (main_window_stack)
|
|
|
|
new_window = main_window_stack->data;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GList *toplevels;
|
|
|
|
|
|
|
|
toplevels = gdk_window_get_toplevels ();
|
|
|
|
if (toplevels)
|
|
|
|
new_window = toplevels->data;
|
|
|
|
g_list_free (toplevels);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (new_window &&
|
|
|
|
new_window != window &&
|
|
|
|
GDK_WINDOW_IS_MAPPED (new_window) &&
|
|
|
|
GDK_WINDOW_OBJECT (new_window)->window_type != GDK_WINDOW_TEMP)
|
|
|
|
{
|
|
|
|
GdkWindowObject *private = (GdkWindowObject *) new_window;
|
|
|
|
GdkWindowImplQuartz *impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
|
|
|
|
[impl->toplevel makeKeyAndOrderFront:impl->toplevel];
|
|
|
|
}
|
2007-10-23 13:06:31 +00:00
|
|
|
|
|
|
|
clear_toplevel_order ();
|
2007-07-07 16:19:40 +00:00
|
|
|
}
|
|
|
|
|
2009-10-25 20:36:56 +00:00
|
|
|
static NSScreen *
|
2009-10-26 07:58:12 +00:00
|
|
|
get_nsscreen_for_point (gint x, gint y)
|
2009-10-25 20:36:56 +00:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
NSArray *screens;
|
2009-12-30 13:12:42 +00:00
|
|
|
NSScreen *screen = NULL;
|
2009-10-25 20:36:56 +00:00
|
|
|
|
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
|
|
|
|
|
|
|
screens = [NSScreen screens];
|
|
|
|
|
|
|
|
for (i = 0; i < [screens count]; i++)
|
|
|
|
{
|
|
|
|
NSRect rect = [[screens objectAtIndex:i] frame];
|
|
|
|
|
2009-10-26 07:58:12 +00:00
|
|
|
if (x >= rect.origin.x && x <= rect.origin.x + rect.size.width &&
|
|
|
|
y >= rect.origin.y && y <= rect.origin.y + rect.size.height)
|
2009-12-30 13:12:42 +00:00
|
|
|
{
|
|
|
|
screen = [screens objectAtIndex:i];
|
|
|
|
break;
|
|
|
|
}
|
2009-10-25 20:36:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
|
|
|
|
2009-12-30 13:12:42 +00:00
|
|
|
return screen;
|
2009-10-25 20:36:56 +00:00
|
|
|
}
|
|
|
|
|
2009-01-05 15:22:47 +00:00
|
|
|
void
|
|
|
|
_gdk_window_impl_new (GdkWindow *window,
|
|
|
|
GdkWindow *real_parent,
|
|
|
|
GdkScreen *screen,
|
|
|
|
GdkVisual *visual,
|
|
|
|
GdkEventMask event_mask,
|
|
|
|
GdkWindowAttr *attributes,
|
|
|
|
gint attributes_mask)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
GdkWindowObject *private;
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
GdkDrawableImplQuartz *draw_impl;
|
2007-10-23 13:06:31 +00:00
|
|
|
GdkWindowImplQuartz *parent_impl;
|
2005-11-22 10:03:32 +00:00
|
|
|
|
2006-07-19 09:13:24 +00:00
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
private = (GdkWindowObject *)window;
|
2008-06-27 17:06:06 +00:00
|
|
|
|
2009-01-05 15:22:47 +00:00
|
|
|
impl = g_object_new (_gdk_window_impl_get_type (), NULL);
|
|
|
|
private->impl = (GdkDrawable *)impl;
|
|
|
|
draw_impl = GDK_DRAWABLE_IMPL_QUARTZ (impl);
|
2005-11-22 10:03:32 +00:00
|
|
|
draw_impl->wrapper = GDK_DRAWABLE (window);
|
|
|
|
|
2007-10-23 13:06:31 +00:00
|
|
|
parent_impl = GDK_WINDOW_IMPL_QUARTZ (private->parent->impl);
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
switch (private->window_type)
|
|
|
|
{
|
|
|
|
case GDK_WINDOW_TOPLEVEL:
|
|
|
|
case GDK_WINDOW_DIALOG:
|
|
|
|
case GDK_WINDOW_TEMP:
|
2009-01-05 15:22:47 +00:00
|
|
|
if (GDK_WINDOW_TYPE (private->parent) != GDK_WINDOW_ROOT)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2009-01-05 15:22:47 +00:00
|
|
|
/* The common code warns for this case */
|
|
|
|
parent_impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (_gdk_root)->impl);
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-05 15:22:47 +00:00
|
|
|
if (!private->input_only)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
if (attributes_mask & GDK_WA_COLORMAP)
|
|
|
|
{
|
|
|
|
draw_impl->colormap = attributes->colormap;
|
|
|
|
g_object_ref (attributes->colormap);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (visual == gdk_screen_get_system_visual (_gdk_screen))
|
|
|
|
{
|
|
|
|
draw_impl->colormap = gdk_screen_get_system_colormap (_gdk_screen);
|
|
|
|
g_object_ref (draw_impl->colormap);
|
|
|
|
}
|
|
|
|
else if (visual == gdk_screen_get_rgba_visual (_gdk_screen))
|
|
|
|
{
|
|
|
|
draw_impl->colormap = gdk_screen_get_rgba_colormap (_gdk_screen);
|
|
|
|
g_object_ref (draw_impl->colormap);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
draw_impl->colormap = gdk_colormap_new (visual, FALSE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
draw_impl->colormap = gdk_screen_get_system_colormap (_gdk_screen);
|
2006-01-02 16:34:21 +00:00
|
|
|
g_object_ref (draw_impl->colormap);
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2007-10-23 13:06:31 +00:00
|
|
|
/* Maintain the z-ordered list of children. */
|
2009-01-05 15:22:47 +00:00
|
|
|
if (private->parent != (GdkWindowObject *)_gdk_root)
|
2007-10-23 13:06:31 +00:00
|
|
|
parent_impl->sorted_children = g_list_prepend (parent_impl->sorted_children, window);
|
|
|
|
else
|
|
|
|
clear_toplevel_order ();
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
gdk_window_set_cursor (window, ((attributes_mask & GDK_WA_CURSOR) ?
|
|
|
|
(attributes->cursor) :
|
|
|
|
NULL));
|
|
|
|
|
|
|
|
switch (attributes->window_type)
|
|
|
|
{
|
|
|
|
case GDK_WINDOW_TOPLEVEL:
|
|
|
|
case GDK_WINDOW_DIALOG:
|
|
|
|
case GDK_WINDOW_TEMP:
|
|
|
|
{
|
2009-10-25 20:36:56 +00:00
|
|
|
NSScreen *screen;
|
|
|
|
NSRect screen_rect;
|
2007-07-10 19:18:59 +00:00
|
|
|
NSRect content_rect;
|
2009-12-27 16:01:25 +00:00
|
|
|
NSUInteger style_mask;
|
2009-10-25 20:36:56 +00:00
|
|
|
int nx, ny;
|
2007-07-10 19:18:59 +00:00
|
|
|
const char *title;
|
|
|
|
|
2009-10-25 20:36:56 +00:00
|
|
|
/* initWithContentRect will place on the mainScreen by default.
|
|
|
|
* We want to select the screen to place on ourselves. We need
|
|
|
|
* to find the screen the window will be on and correct the
|
|
|
|
* content_rect coordinates to be relative to that screen.
|
|
|
|
*/
|
|
|
|
_gdk_quartz_window_gdk_xy_to_xy (private->x, private->y, &nx, &ny);
|
|
|
|
|
2009-10-26 07:58:12 +00:00
|
|
|
screen = get_nsscreen_for_point (nx, ny);
|
2009-10-25 20:36:56 +00:00
|
|
|
screen_rect = [screen frame];
|
|
|
|
nx -= screen_rect.origin.x;
|
|
|
|
ny -= screen_rect.origin.y;
|
|
|
|
|
|
|
|
content_rect = NSMakeRect (nx, ny - private->height,
|
2009-01-07 20:25:12 +00:00
|
|
|
private->width,
|
|
|
|
private->height);
|
2006-01-02 16:34:21 +00:00
|
|
|
|
2008-10-09 11:27:31 +00:00
|
|
|
if (attributes->window_type == GDK_WINDOW_TEMP ||
|
|
|
|
attributes->type_hint == GDK_WINDOW_TYPE_HINT_SPLASHSCREEN)
|
2007-06-19 22:09:56 +00:00
|
|
|
{
|
|
|
|
style_mask = NSBorderlessWindowMask;
|
2008-10-09 11:27:31 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-06-19 22:09:56 +00:00
|
|
|
style_mask = (NSTitledWindowMask |
|
|
|
|
NSClosableWindowMask |
|
|
|
|
NSMiniaturizableWindowMask |
|
|
|
|
NSResizableWindowMask);
|
|
|
|
}
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
impl->toplevel = [[GdkQuartzWindow alloc] initWithContentRect:content_rect
|
2006-01-02 16:34:21 +00:00
|
|
|
styleMask:style_mask
|
2006-08-08 21:00:23 +00:00
|
|
|
backing:NSBackingStoreBuffered
|
2009-10-25 20:36:56 +00:00
|
|
|
defer:NO
|
|
|
|
screen:screen];
|
2006-08-08 21:00:23 +00:00
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
if (attributes_mask & GDK_WA_TITLE)
|
|
|
|
title = attributes->title;
|
|
|
|
else
|
|
|
|
title = get_default_title ();
|
|
|
|
|
|
|
|
gdk_window_set_title (window, title);
|
2007-06-19 22:09:56 +00:00
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
if (draw_impl->colormap == gdk_screen_get_rgba_colormap (_gdk_screen))
|
|
|
|
{
|
|
|
|
[impl->toplevel setOpaque:NO];
|
|
|
|
[impl->toplevel setBackgroundColor:[NSColor clearColor]];
|
|
|
|
}
|
|
|
|
|
2009-01-07 20:25:12 +00:00
|
|
|
content_rect.origin.x = 0;
|
|
|
|
content_rect.origin.y = 0;
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
impl->view = [[GdkQuartzView alloc] initWithFrame:content_rect];
|
|
|
|
[impl->view setGdkWindow:window];
|
|
|
|
[impl->toplevel setContentView:impl->view];
|
2009-12-30 13:14:21 +00:00
|
|
|
[impl->view release];
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
break;
|
2007-06-19 22:09:56 +00:00
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
case GDK_WINDOW_CHILD:
|
|
|
|
{
|
2009-01-05 15:22:47 +00:00
|
|
|
GdkWindowImplQuartz *parent_impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (private->parent)->impl);
|
2005-11-22 10:03:32 +00:00
|
|
|
|
2009-01-05 15:22:47 +00:00
|
|
|
if (!private->input_only)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2009-01-07 14:16:46 +00:00
|
|
|
NSRect frame_rect = NSMakeRect (private->x + private->parent->abs_x,
|
|
|
|
private->y + private->parent->abs_y,
|
|
|
|
private->width,
|
|
|
|
private->height);
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
impl->view = [[GdkQuartzView alloc] initWithFrame:frame_rect];
|
|
|
|
|
|
|
|
[impl->view setGdkWindow:window];
|
|
|
|
|
|
|
|
/* GdkWindows should be hidden by default */
|
|
|
|
[impl->view setHidden:YES];
|
|
|
|
[parent_impl->view addSubview:impl->view];
|
2009-12-30 13:14:21 +00:00
|
|
|
[impl->view release];
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2007-06-19 22:09:56 +00:00
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
default:
|
|
|
|
g_assert_not_reached ();
|
|
|
|
}
|
|
|
|
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
|
|
|
|
2007-04-25 23:44:54 +00:00
|
|
|
if (attributes_mask & GDK_WA_TYPE_HINT)
|
|
|
|
gdk_window_set_type_hint (window, attributes->type_hint);
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2009-10-26 07:53:20 +00:00
|
|
|
void
|
2009-10-26 08:20:28 +00:00
|
|
|
_gdk_quartz_window_update_position (GdkWindow *window)
|
2009-10-26 07:53:20 +00:00
|
|
|
{
|
2009-10-26 08:20:28 +00:00
|
|
|
NSRect frame_rect;
|
|
|
|
NSRect content_rect;
|
|
|
|
GdkWindowObject *private = (GdkWindowObject *)window;
|
|
|
|
GdkWindowImplQuartz *impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
|
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
|
|
|
|
|
|
|
frame_rect = [impl->toplevel frame];
|
|
|
|
content_rect = [impl->toplevel contentRectForFrameRect:frame_rect];
|
|
|
|
|
|
|
|
_gdk_quartz_window_xy_to_gdk_xy (content_rect.origin.x,
|
|
|
|
content_rect.origin.y + content_rect.size.height,
|
|
|
|
&private->x, &private->y);
|
|
|
|
|
|
|
|
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_gdk_windowing_update_window_sizes (GdkScreen *screen)
|
|
|
|
{
|
|
|
|
GList *windows, *list;
|
2009-10-26 07:53:20 +00:00
|
|
|
GdkWindowObject *private = (GdkWindowObject *)_gdk_root;
|
|
|
|
|
|
|
|
/* The size of the root window is so that it can contain all
|
|
|
|
* monitors attached to this machine. The monitors are laid out
|
|
|
|
* within this root window. We calculate the size of the root window
|
|
|
|
* and the positions of the different monitors in gdkscreen-quartz.c.
|
|
|
|
*
|
|
|
|
* This data is updated when the monitor configuration is changed.
|
|
|
|
*/
|
|
|
|
private->x = 0;
|
|
|
|
private->y = 0;
|
|
|
|
private->abs_x = 0;
|
|
|
|
private->abs_y = 0;
|
|
|
|
private->width = gdk_screen_get_width (screen);
|
|
|
|
private->height = gdk_screen_get_height (screen);
|
2009-10-26 08:20:28 +00:00
|
|
|
|
|
|
|
windows = gdk_screen_get_toplevel_windows (screen);
|
|
|
|
|
|
|
|
for (list = windows; list; list = list->next)
|
|
|
|
_gdk_quartz_window_update_position (list->data);
|
|
|
|
|
|
|
|
g_list_free (windows);
|
2009-10-26 07:53:20 +00:00
|
|
|
}
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
void
|
|
|
|
_gdk_windowing_window_init (void)
|
|
|
|
{
|
|
|
|
GdkWindowObject *private;
|
2007-05-28 20:22:26 +00:00
|
|
|
GdkWindowImplQuartz *impl;
|
2007-12-04 19:08:11 +00:00
|
|
|
GdkDrawableImplQuartz *drawable_impl;
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
g_assert (_gdk_root == NULL);
|
|
|
|
|
|
|
|
_gdk_root = g_object_new (GDK_TYPE_WINDOW, NULL);
|
2006-01-16 10:52:40 +00:00
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
private = (GdkWindowObject *)_gdk_root;
|
|
|
|
private->impl = g_object_new (_gdk_window_impl_get_type (), NULL);
|
2009-01-24 09:05:00 +00:00
|
|
|
private->impl_window = private;
|
2008-06-27 17:06:06 +00:00
|
|
|
|
2007-05-28 20:22:26 +00:00
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (_gdk_root)->impl);
|
2009-01-05 14:56:57 +00:00
|
|
|
|
2009-10-26 08:20:28 +00:00
|
|
|
_gdk_windowing_update_window_sizes (_gdk_screen);
|
2007-05-28 20:22:26 +00:00
|
|
|
|
2006-01-16 10:52:40 +00:00
|
|
|
private->state = 0; /* We don't want GDK_WINDOW_STATE_WITHDRAWN here */
|
2005-11-22 10:03:32 +00:00
|
|
|
private->window_type = GDK_WINDOW_ROOT;
|
|
|
|
private->depth = 24;
|
2009-07-18 18:29:50 +00:00
|
|
|
private->viewable = TRUE;
|
2007-12-04 19:08:11 +00:00
|
|
|
|
|
|
|
drawable_impl = GDK_DRAWABLE_IMPL_QUARTZ (private->impl);
|
|
|
|
|
|
|
|
drawable_impl->wrapper = GDK_DRAWABLE (private);
|
|
|
|
drawable_impl->colormap = gdk_screen_get_system_colormap (_gdk_screen);
|
|
|
|
g_object_ref (drawable_impl->colormap);
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2009-01-05 15:26:33 +00:00
|
|
|
static void
|
|
|
|
_gdk_quartz_window_destroy (GdkWindow *window,
|
|
|
|
gboolean recursing,
|
|
|
|
gboolean foreign_destroy)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2007-10-23 13:06:31 +00:00
|
|
|
GdkWindowObject *private;
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
GdkWindowObject *parent;
|
|
|
|
|
|
|
|
private = GDK_WINDOW_OBJECT (window);
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
|
2007-07-07 16:19:40 +00:00
|
|
|
main_window_stack = g_slist_remove (main_window_stack, window);
|
2006-08-08 20:53:09 +00:00
|
|
|
|
2007-10-23 13:06:31 +00:00
|
|
|
g_list_free (impl->sorted_children);
|
|
|
|
impl->sorted_children = NULL;
|
|
|
|
|
|
|
|
parent = private->parent;
|
|
|
|
if (parent)
|
|
|
|
{
|
|
|
|
GdkWindowImplQuartz *parent_impl = GDK_WINDOW_IMPL_QUARTZ (parent->impl);
|
|
|
|
|
|
|
|
parent_impl->sorted_children = g_list_remove (parent_impl->sorted_children, window);
|
|
|
|
}
|
|
|
|
|
2007-12-21 20:21:05 +00:00
|
|
|
_gdk_quartz_drawable_finish (GDK_DRAWABLE (impl));
|
2005-11-22 10:03:32 +00:00
|
|
|
|
2007-12-21 20:21:05 +00:00
|
|
|
if (!recursing && !foreign_destroy)
|
|
|
|
{
|
2007-02-18 11:04:06 +00:00
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
if (impl->toplevel)
|
|
|
|
[impl->toplevel close];
|
|
|
|
else if (impl->view)
|
2007-12-21 20:21:05 +00:00
|
|
|
[impl->view removeFromSuperview];
|
2007-02-18 11:04:06 +00:00
|
|
|
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_gdk_windowing_window_destroy_foreign (GdkWindow *window)
|
|
|
|
{
|
2006-07-17 08:07:55 +00:00
|
|
|
/* Foreign windows aren't supported in OSX. */
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2009-06-20 09:17:15 +00:00
|
|
|
/* FIXME: This might be possible to simplify with client-side windows. Also
|
|
|
|
* note that already_mapped is not used yet, see the x11 backend.
|
|
|
|
*/
|
2005-11-22 10:03:32 +00:00
|
|
|
static void
|
2009-06-20 09:17:15 +00:00
|
|
|
gdk_window_quartz_show (GdkWindow *window, gboolean already_mapped)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2009-01-05 17:05:22 +00:00
|
|
|
GdkWindowObject *private = (GdkWindowObject *)window;
|
|
|
|
GdkWindowImplQuartz *impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
2007-06-04 20:45:30 +00:00
|
|
|
gboolean focus_on_map;
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
|
|
|
|
2007-06-04 20:45:30 +00:00
|
|
|
if (!GDK_WINDOW_IS_MAPPED (window))
|
|
|
|
focus_on_map = private->focus_on_map;
|
|
|
|
else
|
|
|
|
focus_on_map = TRUE;
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
if (impl->toplevel)
|
|
|
|
{
|
2008-01-10 19:35:53 +00:00
|
|
|
gboolean make_key;
|
|
|
|
|
2009-01-05 17:05:22 +00:00
|
|
|
make_key = (private->accept_focus && focus_on_map &&
|
2008-01-10 19:35:53 +00:00
|
|
|
private->window_type != GDK_WINDOW_TEMP);
|
2007-07-10 19:18:59 +00:00
|
|
|
|
2008-01-10 19:35:53 +00:00
|
|
|
[(GdkQuartzWindow*)impl->toplevel showAndMakeKey:make_key];
|
2008-02-17 10:01:52 +00:00
|
|
|
clear_toplevel_order ();
|
2009-01-16 19:12:58 +00:00
|
|
|
|
2009-01-16 19:34:56 +00:00
|
|
|
_gdk_quartz_events_send_map_event (window);
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
[impl->view setHidden:NO];
|
|
|
|
}
|
|
|
|
|
2007-07-07 16:19:40 +00:00
|
|
|
[impl->view setNeedsDisplay:YES];
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
gdk_synthesize_window_state (window, GDK_WINDOW_STATE_WITHDRAWN, 0);
|
|
|
|
|
2006-08-10 09:16:38 +00:00
|
|
|
if (private->state & GDK_WINDOW_STATE_MAXIMIZED)
|
|
|
|
gdk_window_maximize (window);
|
|
|
|
|
|
|
|
if (private->state & GDK_WINDOW_STATE_ICONIFIED)
|
|
|
|
gdk_window_iconify (window);
|
|
|
|
|
2007-07-06 19:49:42 +00:00
|
|
|
if (impl->transient_for && !GDK_WINDOW_DESTROYED (impl->transient_for))
|
|
|
|
_gdk_quartz_window_attach_to_parent (window);
|
|
|
|
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Temporarily unsets the parent window, if the window is a
|
|
|
|
* transient.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
_gdk_quartz_window_detach_from_parent (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (window)->impl);
|
|
|
|
|
|
|
|
g_return_if_fail (impl->toplevel != NULL);
|
|
|
|
|
2007-06-04 20:02:58 +00:00
|
|
|
if (impl->transient_for && !GDK_WINDOW_DESTROYED (impl->transient_for))
|
|
|
|
{
|
|
|
|
GdkWindowImplQuartz *parent_impl;
|
|
|
|
|
|
|
|
parent_impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (impl->transient_for)->impl);
|
2007-07-06 19:49:42 +00:00
|
|
|
[parent_impl->toplevel removeChildWindow:impl->toplevel];
|
2008-02-17 10:01:52 +00:00
|
|
|
clear_toplevel_order ();
|
2007-06-04 20:02:58 +00:00
|
|
|
}
|
2007-07-06 19:49:42 +00:00
|
|
|
}
|
2007-06-04 20:02:58 +00:00
|
|
|
|
2007-07-06 19:49:42 +00:00
|
|
|
/* Re-sets the parent window, if the window is a transient. */
|
|
|
|
void
|
|
|
|
_gdk_quartz_window_attach_to_parent (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (window)->impl);
|
|
|
|
|
|
|
|
g_return_if_fail (impl->toplevel != NULL);
|
|
|
|
|
|
|
|
if (impl->transient_for && !GDK_WINDOW_DESTROYED (impl->transient_for))
|
|
|
|
{
|
|
|
|
GdkWindowImplQuartz *parent_impl;
|
|
|
|
|
|
|
|
parent_impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (impl->transient_for)->impl);
|
|
|
|
[parent_impl->toplevel addChildWindow:impl->toplevel ordered:NSWindowAbove];
|
2008-02-17 10:01:52 +00:00
|
|
|
clear_toplevel_order ();
|
2007-07-06 19:49:42 +00:00
|
|
|
}
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-06-27 17:06:06 +00:00
|
|
|
gdk_window_quartz_hide (GdkWindow *window)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
GdkWindowObject *private = (GdkWindowObject *)window;
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
2008-02-14 21:41:59 +00:00
|
|
|
/* Make sure we're not stuck in fullscreen mode. */
|
|
|
|
if (get_fullscreen_geometry (window))
|
2008-05-19 20:56:51 +00:00
|
|
|
SetSystemUIMode (kUIModeNormal, 0);
|
2008-02-14 21:41:59 +00:00
|
|
|
|
2009-02-02 18:14:07 +00:00
|
|
|
check_grab_unmap (window);
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
_gdk_window_clear_update_area (window);
|
|
|
|
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
|
|
|
|
if (impl->toplevel)
|
|
|
|
{
|
2007-07-10 19:18:59 +00:00
|
|
|
/* Update main window. */
|
2007-07-07 16:19:40 +00:00
|
|
|
main_window_stack = g_slist_remove (main_window_stack, window);
|
|
|
|
if ([NSApp mainWindow] == impl->toplevel)
|
|
|
|
_gdk_quartz_window_did_resign_main (window);
|
|
|
|
|
2007-06-04 20:02:58 +00:00
|
|
|
if (impl->transient_for)
|
2007-07-06 19:49:42 +00:00
|
|
|
_gdk_quartz_window_detach_from_parent (window);
|
2007-06-04 20:02:58 +00:00
|
|
|
|
2008-01-10 19:35:53 +00:00
|
|
|
[(GdkQuartzWindow*)impl->toplevel hide];
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
else if (impl->view)
|
|
|
|
{
|
|
|
|
[impl->view setHidden:YES];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-06-27 17:06:06 +00:00
|
|
|
gdk_window_quartz_withdraw (GdkWindow *window)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
gdk_window_hide (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
move_resize_window_internal (GdkWindow *window,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
GdkWindowObject *private = (GdkWindowObject *)window;
|
|
|
|
GdkWindowImplQuartz *impl;
|
2007-10-08 17:30:02 +00:00
|
|
|
GdkRectangle old_visible;
|
|
|
|
GdkRectangle new_visible;
|
|
|
|
GdkRectangle scroll_rect;
|
|
|
|
GdkRegion *old_region;
|
|
|
|
GdkRegion *expose_region;
|
|
|
|
NSSize delta;
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
2006-07-17 08:07:55 +00:00
|
|
|
return;
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
|
2007-12-10 19:49:52 +00:00
|
|
|
if ((x == -1 || (x == private->x)) &&
|
|
|
|
(y == -1 || (y == private->y)) &&
|
2009-01-05 14:56:57 +00:00
|
|
|
(width == -1 || (width == private->width)) &&
|
|
|
|
(height == -1 || (height == private->height)))
|
2007-10-08 17:37:44 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-10-08 17:30:02 +00:00
|
|
|
if (!impl->toplevel)
|
|
|
|
{
|
|
|
|
/* The previously visible area of this window in a coordinate
|
|
|
|
* system rooted at the origin of this window.
|
|
|
|
*/
|
|
|
|
old_visible.x = -private->x;
|
|
|
|
old_visible.y = -private->y;
|
|
|
|
|
|
|
|
gdk_window_get_size (GDK_DRAWABLE (private->parent),
|
|
|
|
&old_visible.width,
|
|
|
|
&old_visible.height);
|
|
|
|
}
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
if (x != -1)
|
2007-10-08 17:30:02 +00:00
|
|
|
{
|
|
|
|
delta.width = x - private->x;
|
|
|
|
private->x = x;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delta.width = 0;
|
|
|
|
}
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
if (y != -1)
|
2007-10-08 17:30:02 +00:00
|
|
|
{
|
|
|
|
delta.height = y - private->y;
|
|
|
|
private->y = y;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delta.height = 0;
|
|
|
|
}
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
if (width != -1)
|
2009-01-05 14:56:57 +00:00
|
|
|
private->width = width;
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
if (height != -1)
|
2009-01-05 14:56:57 +00:00
|
|
|
private->height = height;
|
2005-11-22 10:03:32 +00:00
|
|
|
|
2006-07-17 08:07:55 +00:00
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
if (impl->toplevel)
|
|
|
|
{
|
2007-11-03 09:45:25 +00:00
|
|
|
NSRect content_rect;
|
|
|
|
NSRect frame_rect;
|
2009-10-25 20:36:56 +00:00
|
|
|
gint gx, gy;
|
2007-11-03 09:45:25 +00:00
|
|
|
|
2009-10-25 20:36:56 +00:00
|
|
|
_gdk_quartz_window_gdk_xy_to_xy (private->x, private->y + private->height,
|
|
|
|
&gx, &gy);
|
|
|
|
|
|
|
|
content_rect = NSMakeRect (gx, gy, private->width, private->height);
|
2008-01-10 19:35:53 +00:00
|
|
|
|
2009-01-07 20:25:12 +00:00
|
|
|
frame_rect = [impl->toplevel frameRectForContentRect:content_rect];
|
|
|
|
[impl->toplevel setFrame:frame_rect display:YES];
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!private->input_only)
|
2007-10-08 17:30:02 +00:00
|
|
|
{
|
|
|
|
NSRect nsrect;
|
2006-07-17 08:07:55 +00:00
|
|
|
|
2009-01-05 14:56:57 +00:00
|
|
|
nsrect = NSMakeRect (private->x, private->y, private->width, private->height);
|
2007-10-08 17:30:02 +00:00
|
|
|
|
|
|
|
/* The newly visible area of this window in a coordinate
|
|
|
|
* system rooted at the origin of this window.
|
|
|
|
*/
|
|
|
|
new_visible.x = -private->x;
|
|
|
|
new_visible.y = -private->y;
|
|
|
|
new_visible.width = old_visible.width; /* parent has not changed size */
|
|
|
|
new_visible.height = old_visible.height; /* parent has not changed size */
|
|
|
|
|
|
|
|
expose_region = gdk_region_rectangle (&new_visible);
|
|
|
|
old_region = gdk_region_rectangle (&old_visible);
|
|
|
|
gdk_region_subtract (expose_region, old_region);
|
|
|
|
|
|
|
|
/* Determine what (if any) part of the previously visible
|
|
|
|
* part of the window can be copied without a redraw
|
|
|
|
*/
|
|
|
|
scroll_rect = old_visible;
|
|
|
|
scroll_rect.x -= delta.width;
|
|
|
|
scroll_rect.y -= delta.height;
|
|
|
|
gdk_rectangle_intersect (&scroll_rect, &old_visible, &scroll_rect);
|
|
|
|
|
|
|
|
if (!gdk_region_empty (expose_region))
|
|
|
|
{
|
|
|
|
GdkRectangle* rects;
|
|
|
|
gint n_rects;
|
|
|
|
gint n;
|
|
|
|
|
|
|
|
if (scroll_rect.width != 0 && scroll_rect.height != 0)
|
|
|
|
{
|
|
|
|
[impl->view scrollRect:NSMakeRect (scroll_rect.x,
|
|
|
|
scroll_rect.y,
|
|
|
|
scroll_rect.width,
|
|
|
|
scroll_rect.height)
|
|
|
|
by:delta];
|
|
|
|
}
|
|
|
|
|
|
|
|
[impl->view setFrame:nsrect];
|
|
|
|
|
|
|
|
gdk_region_get_rectangles (expose_region, &rects, &n_rects);
|
|
|
|
|
|
|
|
for (n = 0; n < n_rects; ++n)
|
2009-09-20 13:27:14 +00:00
|
|
|
_gdk_quartz_window_set_needs_display_in_rect (window, &rects[n]);
|
2007-10-08 17:30:02 +00:00
|
|
|
|
|
|
|
g_free (rects);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
[impl->view setFrame:nsrect];
|
|
|
|
[impl->view setNeedsDisplay:YES];
|
|
|
|
}
|
|
|
|
|
|
|
|
gdk_region_destroy (expose_region);
|
|
|
|
gdk_region_destroy (old_region);
|
|
|
|
}
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
2006-07-09 07:50:44 +00:00
|
|
|
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static inline void
|
|
|
|
window_quartz_move (GdkWindow *window,
|
|
|
|
gint x,
|
|
|
|
gint y)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2007-10-02 17:51:06 +00:00
|
|
|
if (((GdkWindowObject *)window)->state & GDK_WINDOW_STATE_FULLSCREEN)
|
|
|
|
return;
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
move_resize_window_internal (window, x, y, -1, -1);
|
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static inline void
|
|
|
|
window_quartz_resize (GdkWindow *window,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2007-10-02 17:51:06 +00:00
|
|
|
if (((GdkWindowObject *)window)->state & GDK_WINDOW_STATE_FULLSCREEN)
|
|
|
|
return;
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
if (width < 1)
|
|
|
|
width = 1;
|
|
|
|
if (height < 1)
|
|
|
|
height = 1;
|
|
|
|
|
|
|
|
move_resize_window_internal (window, -1, -1, width, height);
|
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static inline void
|
|
|
|
window_quartz_move_resize (GdkWindow *window,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
if (width < 1)
|
|
|
|
width = 1;
|
|
|
|
if (height < 1)
|
|
|
|
height = 1;
|
|
|
|
|
|
|
|
move_resize_window_internal (window, x, y, width, height);
|
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static void
|
|
|
|
gdk_window_quartz_move_resize (GdkWindow *window,
|
|
|
|
gboolean with_move,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
if (with_move && (width < 0 && height < 0))
|
|
|
|
window_quartz_move (window, x, y);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (with_move)
|
|
|
|
window_quartz_move_resize (window, x, y, width, height);
|
|
|
|
else
|
|
|
|
window_quartz_resize (window, width, height);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-05 18:32:52 +00:00
|
|
|
/* FIXME: This might need fixing (reparenting didn't work before client-side
|
|
|
|
* windows either).
|
|
|
|
*/
|
2008-06-27 17:06:06 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_window_quartz_reparent (GdkWindow *window,
|
|
|
|
GdkWindow *new_parent,
|
|
|
|
gint x,
|
|
|
|
gint y)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2008-03-11 10:14:47 +00:00
|
|
|
GdkWindowObject *private, *old_parent_private, *new_parent_private;
|
|
|
|
GdkWindowImplQuartz *impl, *old_parent_impl, *new_parent_impl;
|
|
|
|
NSView *view, *new_parent_view;
|
2005-11-22 10:03:32 +00:00
|
|
|
|
2009-01-05 18:32:52 +00:00
|
|
|
if (new_parent == _gdk_root)
|
2008-03-11 10:14:47 +00:00
|
|
|
{
|
|
|
|
/* Could be added, just needs implementing. */
|
|
|
|
g_warning ("Reparenting to root window is not supported yet in the Mac OS X backend");
|
2008-06-27 17:06:06 +00:00
|
|
|
return FALSE;
|
2008-03-11 10:14:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private = GDK_WINDOW_OBJECT (window);
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
view = impl->view;
|
|
|
|
|
|
|
|
new_parent_private = GDK_WINDOW_OBJECT (new_parent);
|
|
|
|
new_parent_impl = GDK_WINDOW_IMPL_QUARTZ (new_parent_private->impl);
|
|
|
|
new_parent_view = new_parent_impl->view;
|
|
|
|
|
|
|
|
old_parent_private = GDK_WINDOW_OBJECT (private->parent);
|
|
|
|
old_parent_impl = GDK_WINDOW_IMPL_QUARTZ (old_parent_private->impl);
|
|
|
|
|
|
|
|
[view retain];
|
|
|
|
|
|
|
|
[view removeFromSuperview];
|
|
|
|
[new_parent_view addSubview:view];
|
|
|
|
|
|
|
|
[view release];
|
|
|
|
|
2009-01-05 18:32:52 +00:00
|
|
|
private->parent = new_parent_private;
|
2008-03-11 10:14:47 +00:00
|
|
|
|
|
|
|
if (old_parent_private)
|
|
|
|
{
|
|
|
|
old_parent_impl->sorted_children = g_list_remove (old_parent_impl->sorted_children, window);
|
|
|
|
}
|
|
|
|
|
|
|
|
new_parent_impl->sorted_children = g_list_prepend (new_parent_impl->sorted_children, window);
|
2005-11-22 10:03:32 +00:00
|
|
|
|
2009-01-05 18:32:52 +00:00
|
|
|
return FALSE;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2007-10-23 13:06:31 +00:00
|
|
|
/* Get the toplevel ordering from NSApp and update our own list. We do
|
|
|
|
* this on demand since the NSApp's list is not up to date directly
|
|
|
|
* after we get windowDidBecomeMain.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
update_toplevel_order (void)
|
|
|
|
{
|
|
|
|
GdkWindowObject *root;
|
|
|
|
GdkWindowImplQuartz *root_impl;
|
|
|
|
NSEnumerator *enumerator;
|
|
|
|
id nswindow;
|
|
|
|
GList *toplevels = NULL;
|
|
|
|
|
|
|
|
root = GDK_WINDOW_OBJECT (_gdk_root);
|
|
|
|
root_impl = GDK_WINDOW_IMPL_QUARTZ (root->impl);
|
|
|
|
|
|
|
|
if (root_impl->sorted_children)
|
|
|
|
return;
|
|
|
|
|
2007-10-24 12:56:28 +00:00
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
|
|
|
|
2007-10-23 13:06:31 +00:00
|
|
|
enumerator = [[NSApp orderedWindows] objectEnumerator];
|
|
|
|
while ((nswindow = [enumerator nextObject]))
|
|
|
|
{
|
|
|
|
GdkWindow *window;
|
|
|
|
|
|
|
|
if (![[nswindow contentView] isKindOfClass:[GdkQuartzView class]])
|
|
|
|
continue;
|
|
|
|
|
|
|
|
window = [(GdkQuartzView *)[nswindow contentView] gdkWindow];
|
|
|
|
toplevels = g_list_prepend (toplevels, window);
|
|
|
|
}
|
|
|
|
|
2007-10-24 12:56:28 +00:00
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
|
|
|
|
2007-10-23 13:06:31 +00:00
|
|
|
root_impl->sorted_children = g_list_reverse (toplevels);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clear_toplevel_order (void)
|
|
|
|
{
|
|
|
|
GdkWindowObject *root;
|
|
|
|
GdkWindowImplQuartz *root_impl;
|
|
|
|
|
|
|
|
root = GDK_WINDOW_OBJECT (_gdk_root);
|
|
|
|
root_impl = GDK_WINDOW_IMPL_QUARTZ (root->impl);
|
|
|
|
|
|
|
|
g_list_free (root_impl->sorted_children);
|
|
|
|
root_impl->sorted_children = NULL;
|
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static void
|
|
|
|
gdk_window_quartz_raise (GdkWindow *window)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2007-06-04 20:08:31 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (WINDOW_IS_TOPLEVEL (window))
|
|
|
|
{
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (window)->impl);
|
|
|
|
[impl->toplevel orderFront:impl->toplevel];
|
2007-10-23 13:06:31 +00:00
|
|
|
|
|
|
|
clear_toplevel_order ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GdkWindowObject *parent = GDK_WINDOW_OBJECT (window)->parent;
|
|
|
|
|
|
|
|
if (parent)
|
|
|
|
{
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
|
|
|
impl = (GdkWindowImplQuartz *)parent->impl;
|
|
|
|
|
|
|
|
impl->sorted_children = g_list_remove (impl->sorted_children, window);
|
|
|
|
impl->sorted_children = g_list_prepend (impl->sorted_children, window);
|
|
|
|
}
|
2007-06-04 20:08:31 +00:00
|
|
|
}
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static void
|
|
|
|
gdk_window_quartz_lower (GdkWindow *window)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2007-06-04 20:08:31 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (WINDOW_IS_TOPLEVEL (window))
|
|
|
|
{
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (window)->impl);
|
|
|
|
[impl->toplevel orderBack:impl->toplevel];
|
2007-10-23 13:06:31 +00:00
|
|
|
|
|
|
|
clear_toplevel_order ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GdkWindowObject *parent = GDK_WINDOW_OBJECT (window)->parent;
|
|
|
|
|
|
|
|
if (parent)
|
|
|
|
{
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
|
|
|
impl = (GdkWindowImplQuartz *)parent->impl;
|
|
|
|
|
|
|
|
impl->sorted_children = g_list_remove (impl->sorted_children, window);
|
|
|
|
impl->sorted_children = g_list_append (impl->sorted_children, window);
|
|
|
|
}
|
2007-06-04 20:08:31 +00:00
|
|
|
}
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2009-09-02 21:38:55 +00:00
|
|
|
static void
|
|
|
|
gdk_window_quartz_restack_toplevel (GdkWindow *window,
|
|
|
|
GdkWindow *sibling,
|
|
|
|
gboolean above)
|
|
|
|
{
|
|
|
|
/* FIXME: Implement this */
|
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static void
|
|
|
|
gdk_window_quartz_set_background (GdkWindow *window,
|
|
|
|
const GdkColor *color)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2009-01-05 20:07:13 +00:00
|
|
|
/* FIXME: We could theoretically set the background color for toplevels
|
|
|
|
* here. (Currently we draw the background before emitting expose events)
|
|
|
|
*/
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static void
|
|
|
|
gdk_window_quartz_set_back_pixmap (GdkWindow *window,
|
2009-01-05 20:57:04 +00:00
|
|
|
GdkPixmap *pixmap)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2009-01-05 20:07:13 +00:00
|
|
|
/* FIXME: Could theoretically set some background image here. (Currently
|
|
|
|
* the back pixmap is drawn before emitting expose events.
|
|
|
|
*/
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static void
|
|
|
|
gdk_window_quartz_set_cursor (GdkWindow *window,
|
|
|
|
GdkCursor *cursor)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
GdkCursorPrivate *cursor_private;
|
|
|
|
NSCursor *nscursor;
|
|
|
|
|
|
|
|
cursor_private = (GdkCursorPrivate *)cursor;
|
|
|
|
|
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!cursor)
|
2009-02-02 18:45:41 +00:00
|
|
|
nscursor = [NSCursor arrowCursor];
|
2005-11-22 10:03:32 +00:00
|
|
|
else
|
2009-02-02 18:45:41 +00:00
|
|
|
nscursor = cursor_private->nscursor;
|
2007-07-13 19:09:10 +00:00
|
|
|
|
2009-02-02 18:45:41 +00:00
|
|
|
[nscursor set];
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static void
|
|
|
|
gdk_window_quartz_get_geometry (GdkWindow *window,
|
|
|
|
gint *x,
|
|
|
|
gint *y,
|
|
|
|
gint *width,
|
|
|
|
gint *height,
|
|
|
|
gint *depth)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2007-07-31 19:25:28 +00:00
|
|
|
GdkWindowImplQuartz *impl;
|
2009-01-05 15:22:47 +00:00
|
|
|
GdkWindowObject *private;
|
2007-07-31 19:25:28 +00:00
|
|
|
NSRect ns_rect;
|
2005-11-22 10:03:32 +00:00
|
|
|
|
2007-07-31 19:25:28 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return;
|
|
|
|
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (window)->impl);
|
2009-01-05 15:22:47 +00:00
|
|
|
private = GDK_WINDOW_OBJECT (window);
|
2007-07-31 19:25:28 +00:00
|
|
|
if (window == _gdk_root)
|
|
|
|
{
|
|
|
|
if (x)
|
|
|
|
*x = 0;
|
|
|
|
if (y)
|
|
|
|
*y = 0;
|
|
|
|
|
|
|
|
if (width)
|
2009-01-05 14:56:57 +00:00
|
|
|
*width = private->width;
|
2007-07-31 19:25:28 +00:00
|
|
|
if (height)
|
2009-01-05 14:56:57 +00:00
|
|
|
*height = private->height;
|
2007-07-31 19:25:28 +00:00
|
|
|
}
|
|
|
|
else if (WINDOW_IS_TOPLEVEL (window))
|
|
|
|
{
|
|
|
|
ns_rect = [impl->toplevel contentRectForFrameRect:[impl->toplevel frame]];
|
|
|
|
|
|
|
|
/* This doesn't work exactly as in X. There doesn't seem to be a
|
|
|
|
* way to get the coords relative to the parent window (usually
|
|
|
|
* the window frame), but that seems useless except for
|
|
|
|
* borderless windows where it's relative to the root window. So
|
|
|
|
* we return (0, 0) (should be something like (0, 22)) for
|
|
|
|
* windows with borders and the root relative coordinates
|
|
|
|
* otherwise.
|
|
|
|
*/
|
|
|
|
if ([impl->toplevel styleMask] == NSBorderlessWindowMask)
|
|
|
|
{
|
2009-10-25 20:36:56 +00:00
|
|
|
_gdk_quartz_window_xy_to_gdk_xy (ns_rect.origin.x,
|
|
|
|
ns_rect.origin.y + ns_rect.size.height,
|
|
|
|
x, y);
|
2007-07-31 19:25:28 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (x)
|
|
|
|
*x = 0;
|
|
|
|
if (y)
|
|
|
|
*y = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (width)
|
|
|
|
*width = ns_rect.size.width;
|
|
|
|
if (height)
|
|
|
|
*height = ns_rect.size.height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ns_rect = [impl->view frame];
|
|
|
|
|
|
|
|
if (x)
|
|
|
|
*x = ns_rect.origin.x;
|
|
|
|
if (y)
|
|
|
|
*y = ns_rect.origin.y;
|
|
|
|
if (width)
|
|
|
|
*width = ns_rect.size.width;
|
|
|
|
if (height)
|
|
|
|
*height = ns_rect.size.height;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (depth)
|
|
|
|
*depth = gdk_drawable_get_depth (window);
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static gint
|
2009-06-20 09:17:15 +00:00
|
|
|
gdk_window_quartz_get_root_coords (GdkWindow *window,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint *root_x,
|
|
|
|
gint *root_y)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2006-01-02 16:34:21 +00:00
|
|
|
GdkWindowObject *private;
|
|
|
|
int tmp_x = 0, tmp_y = 0;
|
|
|
|
GdkWindow *toplevel;
|
|
|
|
NSRect content_rect;
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
{
|
2009-06-20 09:17:15 +00:00
|
|
|
if (root_x)
|
|
|
|
*root_x = 0;
|
|
|
|
if (root_y)
|
|
|
|
*root_y = 0;
|
2006-01-02 16:34:21 +00:00
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
return 0;
|
2006-01-02 16:34:21 +00:00
|
|
|
}
|
2007-06-30 09:12:56 +00:00
|
|
|
|
|
|
|
if (window == _gdk_root)
|
|
|
|
{
|
2009-06-20 09:17:15 +00:00
|
|
|
if (root_x)
|
|
|
|
*root_x = x;
|
|
|
|
if (root_y)
|
|
|
|
*root_y = y;
|
2009-02-15 08:25:56 +00:00
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
return 1;
|
2007-06-30 09:12:56 +00:00
|
|
|
}
|
2006-01-02 16:34:21 +00:00
|
|
|
|
|
|
|
private = GDK_WINDOW_OBJECT (window);
|
|
|
|
|
|
|
|
toplevel = gdk_window_get_toplevel (window);
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (toplevel)->impl);
|
|
|
|
|
|
|
|
content_rect = [impl->toplevel contentRectForFrameRect:[impl->toplevel frame]];
|
|
|
|
|
2009-10-25 20:36:56 +00:00
|
|
|
_gdk_quartz_window_xy_to_gdk_xy (content_rect.origin.x,
|
|
|
|
content_rect.origin.y + content_rect.size.height,
|
|
|
|
&tmp_x, &tmp_y);
|
|
|
|
|
|
|
|
tmp_x += x;
|
|
|
|
tmp_y += y;
|
2006-01-02 16:34:21 +00:00
|
|
|
|
|
|
|
while (private != GDK_WINDOW_OBJECT (toplevel))
|
|
|
|
{
|
2009-02-15 08:25:56 +00:00
|
|
|
if (_gdk_window_has_impl ((GdkWindow *)private))
|
|
|
|
{
|
|
|
|
tmp_x += private->x;
|
|
|
|
tmp_y += private->y;
|
|
|
|
}
|
2006-01-02 16:34:21 +00:00
|
|
|
|
|
|
|
private = private->parent;
|
|
|
|
}
|
|
|
|
|
2009-06-20 09:17:15 +00:00
|
|
|
if (root_x)
|
|
|
|
*root_x = tmp_x;
|
|
|
|
if (root_y)
|
|
|
|
*root_y = tmp_y;
|
2006-01-02 16:34:21 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2009-01-05 20:57:04 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_window_quartz_get_deskrelative_origin (GdkWindow *window,
|
|
|
|
gint *x,
|
|
|
|
gint *y)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2006-07-17 08:07:55 +00:00
|
|
|
return gdk_window_get_origin (window, x, y);
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_get_root_origin (GdkWindow *window,
|
|
|
|
gint *x,
|
|
|
|
gint *y)
|
|
|
|
{
|
2006-07-17 08:07:55 +00:00
|
|
|
GdkRectangle rect;
|
|
|
|
|
|
|
|
rect.x = 0;
|
|
|
|
rect.y = 0;
|
|
|
|
|
|
|
|
gdk_window_get_frame_extents (window, &rect);
|
|
|
|
|
|
|
|
if (x)
|
|
|
|
*x = rect.x;
|
|
|
|
|
|
|
|
if (y)
|
|
|
|
*y = rect.y;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2007-05-28 20:20:46 +00:00
|
|
|
/* Returns coordinates relative to the passed in window. */
|
2009-06-20 09:17:15 +00:00
|
|
|
static GdkWindow *
|
|
|
|
gdk_window_quartz_get_pointer_helper (GdkWindow *window,
|
|
|
|
gint *x,
|
|
|
|
gint *y,
|
|
|
|
GdkModifierType *mask)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2007-05-28 20:42:51 +00:00
|
|
|
GdkWindowObject *toplevel;
|
2006-07-20 08:06:54 +00:00
|
|
|
GdkWindowObject *private;
|
2006-07-19 07:28:42 +00:00
|
|
|
NSPoint point;
|
2006-07-20 08:06:54 +00:00
|
|
|
gint x_tmp, y_tmp;
|
2007-05-28 20:42:51 +00:00
|
|
|
GdkWindow *found_window;
|
2006-07-20 08:06:54 +00:00
|
|
|
|
2009-01-07 14:16:46 +00:00
|
|
|
g_return_val_if_fail (window == NULL || GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
2006-07-20 08:06:54 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
{
|
|
|
|
*x = 0;
|
|
|
|
*y = 0;
|
|
|
|
*mask = 0;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-05-28 20:42:51 +00:00
|
|
|
toplevel = GDK_WINDOW_OBJECT (gdk_window_get_toplevel (window));
|
|
|
|
|
|
|
|
*mask = _gdk_quartz_events_get_current_event_mask ();
|
2006-04-16 20:13:13 +00:00
|
|
|
|
2007-05-28 20:42:51 +00:00
|
|
|
/* Get the y coordinate, needs to be flipped. */
|
2006-07-19 07:28:42 +00:00
|
|
|
if (window == _gdk_root)
|
|
|
|
{
|
|
|
|
point = [NSEvent mouseLocation];
|
2009-10-25 20:36:56 +00:00
|
|
|
_gdk_quartz_window_nspoint_to_gdk_xy (point, &x_tmp, &y_tmp);
|
2006-07-19 07:28:42 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-05-28 20:42:51 +00:00
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
NSWindow *nswindow;
|
|
|
|
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (toplevel->impl);
|
2009-01-05 20:57:04 +00:00
|
|
|
private = GDK_WINDOW_OBJECT (toplevel);
|
2007-05-28 20:42:51 +00:00
|
|
|
nswindow = impl->toplevel;
|
|
|
|
|
2006-07-19 07:28:42 +00:00
|
|
|
point = [nswindow mouseLocationOutsideOfEventStream];
|
2009-01-31 20:16:27 +00:00
|
|
|
|
2007-05-28 20:42:51 +00:00
|
|
|
x_tmp = point.x;
|
2009-01-05 14:56:57 +00:00
|
|
|
y_tmp = private->height - point.y;
|
2006-07-20 08:06:54 +00:00
|
|
|
|
2009-02-02 13:11:46 +00:00
|
|
|
window = (GdkWindow *)toplevel;
|
2006-07-19 07:28:42 +00:00
|
|
|
}
|
2005-11-22 10:03:32 +00:00
|
|
|
|
2007-05-28 20:42:51 +00:00
|
|
|
found_window = _gdk_quartz_window_find_child (window, x_tmp, y_tmp);
|
|
|
|
|
|
|
|
/* We never return the root window. */
|
|
|
|
if (found_window == _gdk_root)
|
|
|
|
found_window = NULL;
|
|
|
|
|
2006-07-19 07:28:42 +00:00
|
|
|
*x = x_tmp;
|
|
|
|
*y = y_tmp;
|
2005-11-22 10:03:32 +00:00
|
|
|
|
2007-05-28 20:42:51 +00:00
|
|
|
return found_window;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2009-06-20 09:17:15 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_window_quartz_get_pointer (GdkWindow *window,
|
|
|
|
gint *x,
|
|
|
|
gint *y,
|
|
|
|
GdkModifierType *mask)
|
|
|
|
{
|
|
|
|
return gdk_window_quartz_get_pointer_helper (window, x, y, mask) != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Returns coordinates relative to the root. */
|
|
|
|
void
|
|
|
|
_gdk_windowing_get_pointer (GdkDisplay *display,
|
|
|
|
GdkScreen **screen,
|
|
|
|
gint *x,
|
|
|
|
gint *y,
|
|
|
|
GdkModifierType *mask)
|
|
|
|
{
|
|
|
|
g_return_if_fail (display == _gdk_display);
|
|
|
|
|
|
|
|
*screen = _gdk_screen;
|
|
|
|
gdk_window_quartz_get_pointer_helper (_gdk_root, x, y, mask);
|
|
|
|
}
|
|
|
|
|
2006-02-20 11:57:12 +00:00
|
|
|
void
|
|
|
|
gdk_display_warp_pointer (GdkDisplay *display,
|
|
|
|
GdkScreen *screen,
|
|
|
|
gint x,
|
|
|
|
gint y)
|
|
|
|
{
|
|
|
|
CGDisplayMoveCursorToPoint (CGMainDisplayID (), CGPointMake (x, y));
|
|
|
|
}
|
|
|
|
|
2007-05-28 20:20:46 +00:00
|
|
|
/* Returns coordinates relative to the found window. */
|
2005-11-22 10:03:32 +00:00
|
|
|
GdkWindow *
|
2009-01-05 20:27:16 +00:00
|
|
|
_gdk_windowing_window_at_pointer (GdkDisplay *display,
|
|
|
|
gint *win_x,
|
|
|
|
gint *win_y,
|
2009-09-28 13:21:54 +00:00
|
|
|
GdkModifierType *mask,
|
|
|
|
gboolean get_toplevel)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2007-05-28 20:42:51 +00:00
|
|
|
GdkWindow *found_window;
|
|
|
|
gint x, y;
|
2009-01-07 14:44:52 +00:00
|
|
|
GdkModifierType tmp_mask = 0;
|
2007-05-28 20:42:51 +00:00
|
|
|
|
2009-06-20 09:17:15 +00:00
|
|
|
found_window = gdk_window_quartz_get_pointer_helper (_gdk_root,
|
|
|
|
&x, &y,
|
|
|
|
&tmp_mask);
|
2007-05-28 20:42:51 +00:00
|
|
|
if (found_window)
|
|
|
|
{
|
|
|
|
GdkWindowObject *private;
|
|
|
|
|
|
|
|
/* The coordinates returned above are relative the root, we want
|
|
|
|
* coordinates relative the window here.
|
|
|
|
*/
|
|
|
|
private = GDK_WINDOW_OBJECT (found_window);
|
|
|
|
while (private != GDK_WINDOW_OBJECT (_gdk_root))
|
|
|
|
{
|
|
|
|
x -= private->x;
|
|
|
|
y -= private->y;
|
|
|
|
|
|
|
|
private = private->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
*win_x = x;
|
|
|
|
*win_y = y;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Mimic the X backend here, -1,-1 for unknown windows. */
|
|
|
|
*win_x = -1;
|
|
|
|
*win_y = -1;
|
|
|
|
}
|
2006-07-20 08:06:54 +00:00
|
|
|
|
2009-01-07 14:44:52 +00:00
|
|
|
if (mask)
|
|
|
|
*mask = tmp_mask;
|
|
|
|
|
2009-09-28 13:21:54 +00:00
|
|
|
if (get_toplevel)
|
|
|
|
{
|
|
|
|
GdkWindowObject *w = (GdkWindowObject *)found_window;
|
|
|
|
/* Requested toplevel, find it. */
|
|
|
|
/* TODO: This can be implemented more efficient by never
|
|
|
|
recursing into children in the first place */
|
|
|
|
if (w)
|
|
|
|
{
|
|
|
|
/* Convert to toplevel */
|
|
|
|
while (w->parent != NULL &&
|
|
|
|
w->parent->window_type != GDK_WINDOW_ROOT)
|
|
|
|
{
|
|
|
|
*win_x += w->x;
|
|
|
|
*win_y += w->y;
|
|
|
|
w = w->parent;
|
|
|
|
}
|
|
|
|
found_window = (GdkWindow *)w;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-28 20:42:51 +00:00
|
|
|
return found_window;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static GdkEventMask
|
|
|
|
gdk_window_quartz_get_events (GdkWindow *window)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
return GDK_WINDOW_OBJECT (window)->event_mask;
|
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static void
|
|
|
|
gdk_window_quartz_set_events (GdkWindow *window,
|
|
|
|
GdkEventMask event_mask)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2009-01-05 20:27:16 +00:00
|
|
|
/* The mask is set in the common code. */
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_set_urgency_hint (GdkWindow *window,
|
|
|
|
gboolean urgent)
|
|
|
|
{
|
2009-01-05 18:41:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
|
|
|
return;
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2008-01-15 15:32:37 +00:00
|
|
|
gdk_window_set_geometry_hints (GdkWindow *window,
|
|
|
|
const GdkGeometry *geometry,
|
|
|
|
GdkWindowHints geom_mask)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2006-08-08 22:55:27 +00:00
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
|
|
|
g_return_if_fail (geometry != NULL);
|
|
|
|
|
2009-01-05 18:41:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
2006-08-08 22:55:27 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (((GdkWindowObject *) window)->impl);
|
|
|
|
if (!impl->toplevel)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (geom_mask & GDK_HINT_POS)
|
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (geom_mask & GDK_HINT_USER_POS)
|
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (geom_mask & GDK_HINT_USER_SIZE)
|
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (geom_mask & GDK_HINT_MIN_SIZE)
|
|
|
|
{
|
|
|
|
NSSize size;
|
|
|
|
|
|
|
|
size.width = geometry->min_width;
|
|
|
|
size.height = geometry->min_height;
|
|
|
|
|
|
|
|
[impl->toplevel setContentMinSize:size];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (geom_mask & GDK_HINT_MAX_SIZE)
|
|
|
|
{
|
|
|
|
NSSize size;
|
|
|
|
|
|
|
|
size.width = geometry->max_width;
|
|
|
|
size.height = geometry->max_height;
|
|
|
|
|
|
|
|
[impl->toplevel setContentMaxSize:size];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (geom_mask & GDK_HINT_BASE_SIZE)
|
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (geom_mask & GDK_HINT_RESIZE_INC)
|
|
|
|
{
|
|
|
|
NSSize size;
|
|
|
|
|
|
|
|
size.width = geometry->width_inc;
|
|
|
|
size.height = geometry->height_inc;
|
|
|
|
|
|
|
|
[impl->toplevel setContentResizeIncrements:size];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (geom_mask & GDK_HINT_ASPECT)
|
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (geom_mask & GDK_HINT_WIN_GRAVITY)
|
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_set_title (GdkWindow *window,
|
|
|
|
const gchar *title)
|
|
|
|
{
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
|
|
|
g_return_if_fail (title != NULL);
|
|
|
|
|
2009-01-05 19:35:25 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
2009-08-07 04:10:43 +00:00
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
2005-11-22 10:03:32 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (((GdkWindowObject *)window)->impl);
|
|
|
|
|
|
|
|
if (impl->toplevel)
|
|
|
|
{
|
2006-07-17 08:07:55 +00:00
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
2005-11-22 10:03:32 +00:00
|
|
|
[impl->toplevel setTitle:[NSString stringWithUTF8String:title]];
|
2006-07-17 08:07:55 +00:00
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_set_role (GdkWindow *window,
|
|
|
|
const gchar *role)
|
|
|
|
{
|
2009-01-05 19:35:25 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
WINDOW_IS_TOPLEVEL (window))
|
|
|
|
return;
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
2006-08-08 22:55:27 +00:00
|
|
|
void
|
2005-11-22 10:03:32 +00:00
|
|
|
gdk_window_set_transient_for (GdkWindow *window,
|
|
|
|
GdkWindow *parent)
|
|
|
|
{
|
2007-06-04 20:02:58 +00:00
|
|
|
GdkWindowImplQuartz *window_impl;
|
|
|
|
GdkWindowImplQuartz *parent_impl;
|
|
|
|
|
2009-08-07 04:10:43 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) || GDK_WINDOW_DESTROYED (parent) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
2009-01-05 20:57:04 +00:00
|
|
|
return;
|
2007-06-04 20:02:58 +00:00
|
|
|
|
|
|
|
window_impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (window)->impl);
|
|
|
|
if (!window_impl->toplevel)
|
|
|
|
return;
|
|
|
|
|
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
|
|
|
|
|
|
|
if (window_impl->transient_for)
|
|
|
|
{
|
2007-07-06 19:49:42 +00:00
|
|
|
_gdk_quartz_window_detach_from_parent (window);
|
2007-06-04 20:02:58 +00:00
|
|
|
|
|
|
|
g_object_unref (window_impl->transient_for);
|
|
|
|
window_impl->transient_for = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
parent_impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (parent)->impl);
|
|
|
|
if (parent_impl->toplevel)
|
|
|
|
{
|
|
|
|
/* We save the parent because it needs to be unset/reset when
|
|
|
|
* hiding and showing the window.
|
|
|
|
*/
|
2007-06-16 15:38:33 +00:00
|
|
|
|
|
|
|
/* We don't set transients for tooltips, they are already
|
|
|
|
* handled by the window level being the top one. If we do, then
|
|
|
|
* the parent window will be brought to the top just because the
|
|
|
|
* tooltip is, which is not what we want.
|
|
|
|
*/
|
|
|
|
if (gdk_window_get_type_hint (window) != GDK_WINDOW_TYPE_HINT_TOOLTIP)
|
|
|
|
{
|
|
|
|
window_impl->transient_for = g_object_ref (parent);
|
2007-06-16 21:21:52 +00:00
|
|
|
|
|
|
|
/* We only add the window if it is shown, otherwise it will
|
|
|
|
* be shown unconditionally here. If it is not shown, the
|
|
|
|
* window will be added in show() instead.
|
|
|
|
*/
|
|
|
|
if (!(GDK_WINDOW_OBJECT (window)->state & GDK_WINDOW_STATE_WITHDRAWN))
|
2007-07-06 19:49:42 +00:00
|
|
|
_gdk_quartz_window_attach_to_parent (window);
|
2007-06-16 15:38:33 +00:00
|
|
|
}
|
2007-06-04 20:02:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static void
|
|
|
|
gdk_window_quartz_shape_combine_region (GdkWindow *window,
|
|
|
|
const GdkRegion *shape,
|
|
|
|
gint x,
|
|
|
|
gint y)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static void
|
2009-01-05 20:27:16 +00:00
|
|
|
gdk_window_quartz_input_shape_combine_region (GdkWindow *window,
|
|
|
|
const GdkRegion *shape_region,
|
|
|
|
gint offset_x,
|
|
|
|
gint offset_y)
|
2006-02-20 11:57:12 +00:00
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
2006-03-27 10:47:29 +00:00
|
|
|
void
|
|
|
|
gdk_window_set_override_redirect (GdkWindow *window,
|
|
|
|
gboolean override_redirect)
|
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
void
|
|
|
|
gdk_window_set_accept_focus (GdkWindow *window,
|
|
|
|
gboolean accept_focus)
|
|
|
|
{
|
2007-06-04 20:45:30 +00:00
|
|
|
GdkWindowObject *private;
|
|
|
|
|
|
|
|
private = (GdkWindowObject *)window;
|
|
|
|
|
|
|
|
private->accept_focus = accept_focus != FALSE;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_window_quartz_set_static_gravities (GdkWindow *window,
|
|
|
|
gboolean use_static)
|
2006-03-27 10:47:29 +00:00
|
|
|
{
|
2009-01-05 20:57:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
|
|
|
return FALSE;
|
|
|
|
|
2006-03-27 10:47:29 +00:00
|
|
|
/* FIXME: Implement */
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
void
|
|
|
|
gdk_window_set_focus_on_map (GdkWindow *window,
|
|
|
|
gboolean focus_on_map)
|
|
|
|
{
|
2007-06-04 20:45:30 +00:00
|
|
|
GdkWindowObject *private;
|
|
|
|
|
|
|
|
private = (GdkWindowObject *)window;
|
|
|
|
|
|
|
|
private->focus_on_map = focus_on_map != FALSE;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_set_icon (GdkWindow *window,
|
|
|
|
GdkWindow *icon_window,
|
|
|
|
GdkPixmap *pixmap,
|
|
|
|
GdkBitmap *mask)
|
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_set_icon_name (GdkWindow *window,
|
|
|
|
const gchar *name)
|
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_focus (GdkWindow *window,
|
|
|
|
guint32 timestamp)
|
|
|
|
{
|
2007-10-08 17:50:26 +00:00
|
|
|
GdkWindowObject *private;
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
|
|
|
private = (GdkWindowObject*) window;
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
|
2009-01-05 18:36:24 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (private->accept_focus && private->window_type != GDK_WINDOW_TEMP)
|
2007-10-08 17:50:26 +00:00
|
|
|
{
|
2009-01-05 18:36:24 +00:00
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
|
|
|
[impl->toplevel makeKeyAndOrderFront:impl->toplevel];
|
|
|
|
clear_toplevel_order ();
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
2007-10-08 17:50:26 +00:00
|
|
|
}
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2006-03-27 10:47:29 +00:00
|
|
|
void
|
|
|
|
gdk_window_set_hints (GdkWindow *window,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint min_width,
|
|
|
|
gint min_height,
|
|
|
|
gint max_width,
|
|
|
|
gint max_height,
|
|
|
|
gint flags)
|
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
2007-08-30 08:21:32 +00:00
|
|
|
static
|
|
|
|
gint window_type_hint_to_level (GdkWindowTypeHint hint)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2007-08-30 08:21:32 +00:00
|
|
|
switch (hint)
|
|
|
|
{
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DOCK:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_UTILITY:
|
|
|
|
return NSFloatingWindowLevel;
|
2006-07-19 09:13:24 +00:00
|
|
|
|
2007-08-30 08:21:32 +00:00
|
|
|
case GDK_WINDOW_TYPE_HINT_MENU: /* Torn-off menu */
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DROPDOWN_MENU: /* Menu from menubar */
|
|
|
|
return NSTornOffMenuWindowLevel;
|
2006-07-24 10:46:21 +00:00
|
|
|
|
2007-08-30 08:21:32 +00:00
|
|
|
case GDK_WINDOW_TYPE_HINT_NOTIFICATION:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_TOOLTIP:
|
|
|
|
return NSStatusWindowLevel;
|
2006-07-24 10:46:21 +00:00
|
|
|
|
2007-08-30 08:21:32 +00:00
|
|
|
case GDK_WINDOW_TYPE_HINT_SPLASHSCREEN:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_POPUP_MENU:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_COMBO:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DND:
|
|
|
|
return NSPopUpMenuWindowLevel;
|
2006-07-24 10:46:21 +00:00
|
|
|
|
|
|
|
case GDK_WINDOW_TYPE_HINT_NORMAL: /* Normal toplevel window */
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DIALOG: /* Dialog window */
|
|
|
|
case GDK_WINDOW_TYPE_HINT_TOOLBAR: /* Window used to implement toolbars */
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DESKTOP: /* N/A */
|
|
|
|
break;
|
|
|
|
|
2007-08-30 08:21:32 +00:00
|
|
|
default:
|
2006-07-24 10:46:21 +00:00
|
|
|
break;
|
2007-08-30 08:21:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NSNormalWindowLevel;
|
|
|
|
}
|
2006-07-24 10:46:21 +00:00
|
|
|
|
2007-08-30 08:21:32 +00:00
|
|
|
static gboolean
|
|
|
|
window_type_hint_to_shadow (GdkWindowTypeHint hint)
|
|
|
|
{
|
|
|
|
switch (hint)
|
|
|
|
{
|
|
|
|
case GDK_WINDOW_TYPE_HINT_NORMAL: /* Normal toplevel window */
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DIALOG: /* Dialog window */
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DOCK:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_UTILITY:
|
2006-07-24 10:46:21 +00:00
|
|
|
case GDK_WINDOW_TYPE_HINT_MENU: /* Torn-off menu */
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DROPDOWN_MENU: /* Menu from menubar */
|
|
|
|
case GDK_WINDOW_TYPE_HINT_SPLASHSCREEN:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_POPUP_MENU:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_COMBO:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_NOTIFICATION:
|
|
|
|
case GDK_WINDOW_TYPE_HINT_TOOLTIP:
|
2007-08-30 08:21:32 +00:00
|
|
|
return TRUE;
|
2006-07-24 10:46:21 +00:00
|
|
|
|
2007-08-30 08:21:32 +00:00
|
|
|
case GDK_WINDOW_TYPE_HINT_TOOLBAR: /* Window used to implement toolbars */
|
|
|
|
case GDK_WINDOW_TYPE_HINT_DESKTOP: /* N/A */
|
2006-07-24 10:46:21 +00:00
|
|
|
case GDK_WINDOW_TYPE_HINT_DND:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-08-30 08:21:32 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_set_type_hint (GdkWindow *window,
|
|
|
|
GdkWindowTypeHint hint)
|
|
|
|
{
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
2009-01-05 18:37:47 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
2007-08-30 08:21:32 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (((GdkWindowObject *) window)->impl);
|
|
|
|
|
|
|
|
impl->type_hint = hint;
|
|
|
|
|
|
|
|
/* Match the documentation, only do something if we're not mapped yet. */
|
|
|
|
if (GDK_WINDOW_IS_MAPPED (window))
|
|
|
|
return;
|
|
|
|
|
|
|
|
[impl->toplevel setHasShadow: window_type_hint_to_shadow (hint)];
|
|
|
|
[impl->toplevel setLevel: window_type_hint_to_level (hint)];
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2006-07-09 18:09:09 +00:00
|
|
|
GdkWindowTypeHint
|
|
|
|
gdk_window_get_type_hint (GdkWindow *window)
|
|
|
|
{
|
2009-01-05 18:37:47 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
2006-07-19 09:13:24 +00:00
|
|
|
return GDK_WINDOW_TYPE_HINT_NORMAL;
|
|
|
|
|
|
|
|
return GDK_WINDOW_IMPL_QUARTZ (((GdkWindowObject *) window)->impl)->type_hint;
|
2006-07-09 18:09:09 +00:00
|
|
|
}
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
void
|
|
|
|
gdk_window_set_modal_hint (GdkWindow *window,
|
|
|
|
gboolean modal)
|
|
|
|
{
|
2009-01-05 18:41:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
|
|
|
return;
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_set_skip_taskbar_hint (GdkWindow *window,
|
|
|
|
gboolean skips_taskbar)
|
|
|
|
{
|
2009-01-05 18:41:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
|
|
|
return;
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_set_skip_pager_hint (GdkWindow *window,
|
|
|
|
gboolean skips_pager)
|
|
|
|
{
|
2009-01-05 18:41:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
|
|
|
return;
|
2005-11-22 10:03:32 +00:00
|
|
|
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_begin_resize_drag (GdkWindow *window,
|
|
|
|
GdkWindowEdge edge,
|
|
|
|
gint button,
|
|
|
|
gint root_x,
|
|
|
|
gint root_y,
|
|
|
|
guint32 timestamp)
|
|
|
|
{
|
2007-10-31 11:01:56 +00:00
|
|
|
GdkWindowObject *private;
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2007-10-31 11:01:56 +00:00
|
|
|
if (edge != GDK_WINDOW_EDGE_SOUTH_EAST)
|
|
|
|
{
|
|
|
|
g_warning ("Resizing is only implemented for GDK_WINDOW_EDGE_SOUTH_EAST on Mac OS");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return;
|
|
|
|
|
|
|
|
private = GDK_WINDOW_OBJECT (window);
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
|
|
|
|
if (!impl->toplevel)
|
|
|
|
{
|
|
|
|
g_warning ("Can't call gdk_window_begin_resize_drag on non-toplevel window");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
[(GdkQuartzWindow *)impl->toplevel beginManualResize];
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_begin_move_drag (GdkWindow *window,
|
|
|
|
gint button,
|
|
|
|
gint root_x,
|
|
|
|
gint root_y,
|
|
|
|
guint32 timestamp)
|
|
|
|
{
|
2007-10-31 11:01:56 +00:00
|
|
|
GdkWindowObject *private;
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
2009-01-05 20:57:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
2007-10-31 11:01:56 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
private = GDK_WINDOW_OBJECT (window);
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
|
|
|
|
if (!impl->toplevel)
|
|
|
|
{
|
|
|
|
g_warning ("Can't call gdk_window_begin_move_drag on non-toplevel window");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
[(GdkQuartzWindow *)impl->toplevel beginManualMove];
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_set_icon_list (GdkWindow *window,
|
|
|
|
GList *pixbufs)
|
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_get_frame_extents (GdkWindow *window,
|
|
|
|
GdkRectangle *rect)
|
|
|
|
{
|
2006-07-17 08:07:55 +00:00
|
|
|
GdkWindowObject *private;
|
|
|
|
GdkWindow *toplevel;
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
NSRect ns_rect;
|
|
|
|
|
|
|
|
g_return_if_fail (rect != NULL);
|
|
|
|
|
|
|
|
private = GDK_WINDOW_OBJECT (window);
|
|
|
|
|
|
|
|
rect->x = 0;
|
|
|
|
rect->y = 0;
|
|
|
|
rect->width = 1;
|
|
|
|
rect->height = 1;
|
|
|
|
|
|
|
|
toplevel = gdk_window_get_toplevel (window);
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (toplevel)->impl);
|
|
|
|
|
|
|
|
ns_rect = [impl->toplevel frame];
|
|
|
|
|
2009-10-25 20:36:56 +00:00
|
|
|
_gdk_quartz_window_xy_to_gdk_xy (ns_rect.origin.x,
|
|
|
|
ns_rect.origin.y + ns_rect.size.height,
|
|
|
|
&rect->x, &rect->y);
|
|
|
|
|
2006-07-17 08:07:55 +00:00
|
|
|
rect->width = ns_rect.size.width;
|
|
|
|
rect->height = ns_rect.size.height;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-08-30 09:01:12 +00:00
|
|
|
gdk_window_set_decorations (GdkWindow *window,
|
|
|
|
GdkWMDecoration decorations)
|
2005-11-22 10:03:32 +00:00
|
|
|
{
|
2007-08-30 09:01:12 +00:00
|
|
|
GdkWindowImplQuartz *impl;
|
2009-12-27 16:01:25 +00:00
|
|
|
NSUInteger old_mask, new_mask;
|
2007-08-30 09:01:12 +00:00
|
|
|
NSView *old_view;
|
|
|
|
|
2009-01-05 20:57:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
2007-08-30 09:01:12 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (window)->impl);
|
|
|
|
|
2008-10-09 11:27:31 +00:00
|
|
|
if (decorations == 0 || GDK_WINDOW_TYPE (window) == GDK_WINDOW_TEMP ||
|
|
|
|
impl->type_hint == GDK_WINDOW_TYPE_HINT_SPLASHSCREEN )
|
2007-08-30 09:01:12 +00:00
|
|
|
{
|
2007-10-02 17:51:06 +00:00
|
|
|
new_mask = NSBorderlessWindowMask;
|
2007-08-30 09:01:12 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-10-02 17:51:06 +00:00
|
|
|
/* FIXME: Honor other GDK_DECOR_* flags. */
|
|
|
|
new_mask = (NSTitledWindowMask | NSClosableWindowMask |
|
2007-08-30 09:01:12 +00:00
|
|
|
NSMiniaturizableWindowMask | NSResizableWindowMask);
|
|
|
|
}
|
|
|
|
|
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
|
|
|
|
2007-10-02 17:51:06 +00:00
|
|
|
old_mask = [impl->toplevel styleMask];
|
|
|
|
|
2007-08-30 09:01:12 +00:00
|
|
|
/* Note, there doesn't seem to be a way to change this without
|
|
|
|
* recreating the toplevel. There might be bad side-effects of doing
|
|
|
|
* that, but it seems alright.
|
|
|
|
*/
|
2007-10-02 17:51:06 +00:00
|
|
|
if (old_mask != new_mask)
|
2007-08-30 09:01:12 +00:00
|
|
|
{
|
2007-10-02 17:51:06 +00:00
|
|
|
NSRect rect;
|
|
|
|
|
2007-08-30 09:01:12 +00:00
|
|
|
old_view = [impl->toplevel contentView];
|
|
|
|
|
2007-10-02 17:51:06 +00:00
|
|
|
rect = [impl->toplevel frame];
|
|
|
|
|
|
|
|
/* Properly update the size of the window when the titlebar is
|
|
|
|
* added or removed.
|
|
|
|
*/
|
|
|
|
if (old_mask == NSBorderlessWindowMask &&
|
|
|
|
new_mask != NSBorderlessWindowMask)
|
|
|
|
{
|
|
|
|
rect = [NSWindow frameRectForContentRect:rect styleMask:new_mask];
|
2008-02-16 00:27:29 +00:00
|
|
|
|
2007-10-02 17:51:06 +00:00
|
|
|
}
|
|
|
|
else if (old_mask != NSBorderlessWindowMask &&
|
|
|
|
new_mask == NSBorderlessWindowMask)
|
|
|
|
{
|
|
|
|
rect = [NSWindow contentRectForFrameRect:rect styleMask:old_mask];
|
|
|
|
}
|
|
|
|
|
|
|
|
impl->toplevel = [impl->toplevel initWithContentRect:rect
|
|
|
|
styleMask:new_mask
|
2007-08-30 09:01:12 +00:00
|
|
|
backing:NSBackingStoreBuffered
|
|
|
|
defer:NO];
|
|
|
|
|
2008-02-20 20:10:30 +00:00
|
|
|
[impl->toplevel setHasShadow: window_type_hint_to_shadow (impl->type_hint)];
|
|
|
|
[impl->toplevel setLevel: window_type_hint_to_level (impl->type_hint)];
|
|
|
|
|
2007-08-30 09:01:12 +00:00
|
|
|
[impl->toplevel setContentView:old_view];
|
2007-10-02 17:51:06 +00:00
|
|
|
[impl->toplevel setFrame:rect display:YES];
|
2008-02-27 10:49:22 +00:00
|
|
|
|
|
|
|
/* Invalidate the window shadow for non-opaque views that have shadow
|
|
|
|
* enabled, to get the shadow shape updated.
|
|
|
|
*/
|
|
|
|
if (![old_view isOpaque] && [impl->toplevel hasShadow])
|
|
|
|
[(GdkQuartzView*)old_view setNeedsInvalidateShadow:YES];
|
2007-08-30 09:01:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2006-03-27 10:47:29 +00:00
|
|
|
gboolean
|
2006-07-17 08:07:55 +00:00
|
|
|
gdk_window_get_decorations (GdkWindow *window,
|
|
|
|
GdkWMDecoration *decorations)
|
2006-03-27 10:47:29 +00:00
|
|
|
{
|
2007-08-30 09:01:12 +00:00
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
2009-01-05 20:57:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
2007-08-30 09:01:12 +00:00
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (window)->impl);
|
|
|
|
|
|
|
|
if (decorations)
|
|
|
|
{
|
2007-10-02 17:51:06 +00:00
|
|
|
/* Borderless is 0, so we can't check it as a bit being set. */
|
|
|
|
if ([impl->toplevel styleMask] == NSBorderlessWindowMask)
|
2007-08-30 09:01:12 +00:00
|
|
|
{
|
|
|
|
*decorations = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-10-02 17:51:06 +00:00
|
|
|
/* FIXME: Honor the other GDK_DECOR_* flags. */
|
2007-08-30 09:01:12 +00:00
|
|
|
*decorations = GDK_DECOR_ALL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
2006-03-27 10:47:29 +00:00
|
|
|
}
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
void
|
|
|
|
gdk_window_set_functions (GdkWindow *window,
|
|
|
|
GdkWMFunction functions)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
_gdk_windowing_window_queue_antiexpose (GdkWindow *window,
|
|
|
|
GdkRegion *area)
|
|
|
|
{
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_stick (GdkWindow *window)
|
|
|
|
{
|
2009-01-05 20:57:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
|
|
|
return;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_unstick (GdkWindow *window)
|
|
|
|
{
|
2009-01-05 20:57:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
|
|
|
return;
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_maximize (GdkWindow *window)
|
|
|
|
{
|
2006-08-08 21:00:23 +00:00
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
2009-01-05 20:57:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
2006-08-08 21:00:23 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (window)->impl);
|
|
|
|
|
2006-08-10 09:16:38 +00:00
|
|
|
if (GDK_WINDOW_IS_MAPPED (window))
|
|
|
|
{
|
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
|
|
|
|
|
|
|
if (impl->toplevel && ![impl->toplevel isZoomed])
|
|
|
|
[impl->toplevel zoom:nil];
|
|
|
|
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gdk_synthesize_window_state (window,
|
|
|
|
0,
|
|
|
|
GDK_WINDOW_STATE_MAXIMIZED);
|
|
|
|
}
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_unmaximize (GdkWindow *window)
|
|
|
|
{
|
2006-08-08 21:00:23 +00:00
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
2009-01-05 20:57:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
2006-08-08 21:00:23 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (window)->impl);
|
|
|
|
|
2006-08-10 09:16:38 +00:00
|
|
|
if (GDK_WINDOW_IS_MAPPED (window))
|
|
|
|
{
|
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
|
|
|
|
|
|
|
if (impl->toplevel && [impl->toplevel isZoomed])
|
|
|
|
[impl->toplevel zoom:nil];
|
|
|
|
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gdk_synthesize_window_state (window,
|
|
|
|
GDK_WINDOW_STATE_MAXIMIZED,
|
|
|
|
0);
|
|
|
|
}
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_iconify (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
2009-01-05 20:57:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
2005-11-22 10:03:32 +00:00
|
|
|
return;
|
2009-01-05 20:57:04 +00:00
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (window)->impl);
|
2006-08-08 21:00:23 +00:00
|
|
|
|
2006-08-10 09:16:38 +00:00
|
|
|
if (GDK_WINDOW_IS_MAPPED (window))
|
|
|
|
{
|
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
|
|
|
|
|
|
|
if (impl->toplevel)
|
|
|
|
[impl->toplevel miniaturize:nil];
|
|
|
|
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gdk_synthesize_window_state (window,
|
|
|
|
0,
|
|
|
|
GDK_WINDOW_STATE_ICONIFIED);
|
|
|
|
}
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_deiconify (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GdkWindowImplQuartz *impl;
|
|
|
|
|
2009-01-05 20:57:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
2005-11-22 10:03:32 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
impl = GDK_WINDOW_IMPL_QUARTZ (GDK_WINDOW_OBJECT (window)->impl);
|
|
|
|
|
2006-08-10 09:16:38 +00:00
|
|
|
if (GDK_WINDOW_IS_MAPPED (window))
|
|
|
|
{
|
|
|
|
GDK_QUARTZ_ALLOC_POOL;
|
|
|
|
|
|
|
|
if (impl->toplevel)
|
|
|
|
[impl->toplevel deminiaturize:nil];
|
|
|
|
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gdk_synthesize_window_state (window,
|
|
|
|
GDK_WINDOW_STATE_ICONIFIED,
|
|
|
|
0);
|
|
|
|
}
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2008-02-14 21:41:59 +00:00
|
|
|
static FullscreenSavedGeometry *
|
|
|
|
get_fullscreen_geometry (GdkWindow *window)
|
2007-10-02 17:51:06 +00:00
|
|
|
{
|
2008-02-14 21:41:59 +00:00
|
|
|
return g_object_get_data (G_OBJECT (window), FULLSCREEN_DATA);
|
|
|
|
}
|
2007-10-02 17:51:06 +00:00
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
void
|
|
|
|
gdk_window_fullscreen (GdkWindow *window)
|
|
|
|
{
|
2007-10-02 17:51:06 +00:00
|
|
|
FullscreenSavedGeometry *geometry;
|
|
|
|
GdkWindowObject *private = (GdkWindowObject *) window;
|
|
|
|
NSRect frame;
|
|
|
|
|
2009-01-05 20:57:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
|
|
|
return;
|
2005-11-22 10:03:32 +00:00
|
|
|
|
2008-02-14 21:41:59 +00:00
|
|
|
geometry = get_fullscreen_geometry (window);
|
|
|
|
if (!geometry)
|
|
|
|
{
|
|
|
|
geometry = g_new (FullscreenSavedGeometry, 1);
|
|
|
|
|
|
|
|
geometry->x = private->x;
|
|
|
|
geometry->y = private->y;
|
2009-01-05 14:56:57 +00:00
|
|
|
geometry->width = private->width;
|
|
|
|
geometry->height = private->height;
|
2007-10-02 17:51:06 +00:00
|
|
|
|
2008-02-14 21:41:59 +00:00
|
|
|
if (!gdk_window_get_decorations (window, &geometry->decor))
|
|
|
|
geometry->decor = GDK_DECOR_ALL;
|
2007-10-02 17:51:06 +00:00
|
|
|
|
2008-02-14 21:41:59 +00:00
|
|
|
g_object_set_data_full (G_OBJECT (window),
|
|
|
|
FULLSCREEN_DATA, geometry,
|
|
|
|
g_free);
|
2007-10-02 17:51:06 +00:00
|
|
|
|
2008-02-14 21:41:59 +00:00
|
|
|
gdk_window_set_decorations (window, 0);
|
2007-10-02 17:51:06 +00:00
|
|
|
|
2008-02-14 21:41:59 +00:00
|
|
|
frame = [[NSScreen mainScreen] frame];
|
|
|
|
move_resize_window_internal (window,
|
|
|
|
0, 0,
|
|
|
|
frame.size.width, frame.size.height);
|
|
|
|
}
|
2007-10-02 17:51:06 +00:00
|
|
|
|
2008-05-19 20:56:51 +00:00
|
|
|
SetSystemUIMode (kUIModeAllHidden, kUIOptionAutoShowMenuBar);
|
2007-10-02 17:51:06 +00:00
|
|
|
|
|
|
|
gdk_synthesize_window_state (window, 0, GDK_WINDOW_STATE_FULLSCREEN);
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_unfullscreen (GdkWindow *window)
|
|
|
|
{
|
2007-10-02 17:51:06 +00:00
|
|
|
FullscreenSavedGeometry *geometry;
|
|
|
|
|
2009-01-05 20:57:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
|
|
|
return;
|
2005-11-22 10:03:32 +00:00
|
|
|
|
2008-02-14 21:41:59 +00:00
|
|
|
geometry = get_fullscreen_geometry (window);
|
2007-10-02 17:51:06 +00:00
|
|
|
if (geometry)
|
|
|
|
{
|
2008-05-19 20:56:51 +00:00
|
|
|
SetSystemUIMode (kUIModeNormal, 0);
|
2007-10-02 17:51:06 +00:00
|
|
|
|
|
|
|
move_resize_window_internal (window,
|
|
|
|
geometry->x,
|
|
|
|
geometry->y,
|
|
|
|
geometry->width,
|
|
|
|
geometry->height);
|
|
|
|
|
|
|
|
gdk_window_set_decorations (window, geometry->decor);
|
|
|
|
|
|
|
|
g_object_set_data (G_OBJECT (window), FULLSCREEN_DATA, NULL);
|
|
|
|
|
|
|
|
gdk_synthesize_window_state (window, GDK_WINDOW_STATE_FULLSCREEN, 0);
|
|
|
|
}
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_set_keep_above (GdkWindow *window, gboolean setting)
|
|
|
|
{
|
2007-08-30 08:21:32 +00:00
|
|
|
GdkWindowObject *private = (GdkWindowObject *) window;
|
|
|
|
GdkWindowImplQuartz *impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
gint level;
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2009-01-05 20:57:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
2007-08-30 08:21:32 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
level = window_type_hint_to_level (gdk_window_get_type_hint (window));
|
|
|
|
|
|
|
|
/* Adjust normal window level by one if necessary. */
|
|
|
|
[impl->toplevel setLevel: level + (setting ? 1 : 0)];
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_set_keep_below (GdkWindow *window, gboolean setting)
|
|
|
|
{
|
2007-08-30 08:21:32 +00:00
|
|
|
GdkWindowObject *private = (GdkWindowObject *) window;
|
|
|
|
GdkWindowImplQuartz *impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
gint level;
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2009-01-05 20:57:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
2007-08-30 08:21:32 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
level = window_type_hint_to_level (gdk_window_get_type_hint (window));
|
|
|
|
|
|
|
|
/* Adjust normal window level by one if necessary. */
|
|
|
|
[impl->toplevel setLevel: level - (setting ? 1 : 0)];
|
2005-11-22 10:03:32 +00:00
|
|
|
}
|
|
|
|
|
2006-03-27 10:47:29 +00:00
|
|
|
GdkWindow *
|
|
|
|
gdk_window_get_group (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_WINDOW_TYPE (window) != GDK_WINDOW_CHILD, NULL);
|
|
|
|
|
2009-01-05 20:57:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
|
|
|
return NULL;
|
|
|
|
|
2006-03-27 10:47:29 +00:00
|
|
|
/* FIXME: Implement */
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_set_group (GdkWindow *window,
|
|
|
|
GdkWindow *leader)
|
|
|
|
{
|
|
|
|
/* FIXME: Implement */
|
|
|
|
}
|
|
|
|
|
2005-11-22 10:03:32 +00:00
|
|
|
GdkWindow*
|
|
|
|
gdk_window_foreign_new_for_display (GdkDisplay *display,
|
|
|
|
GdkNativeWindow anid)
|
|
|
|
{
|
|
|
|
/* Foreign windows aren't supported in Mac OS X */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
GdkWindow*
|
|
|
|
gdk_window_lookup (GdkNativeWindow anid)
|
|
|
|
{
|
|
|
|
/* Foreign windows aren't supported in Mac OS X */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
GdkWindow *
|
|
|
|
gdk_window_lookup_for_display (GdkDisplay *display, GdkNativeWindow anid)
|
|
|
|
{
|
|
|
|
/* Foreign windows aren't supported in Mac OS X */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_enable_synchronized_configure (GdkWindow *window)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_configure_finished (GdkWindow *window)
|
|
|
|
{
|
|
|
|
}
|
2006-07-09 18:09:09 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_destroy_notify (GdkWindow *window)
|
|
|
|
{
|
2009-02-02 18:14:07 +00:00
|
|
|
check_grab_destroy (window);
|
2006-07-09 18:09:09 +00:00
|
|
|
}
|
2006-08-30 03:30:43 +00:00
|
|
|
|
|
|
|
void
|
2009-06-20 08:31:53 +00:00
|
|
|
_gdk_windowing_window_beep (GdkWindow *window)
|
2006-08-30 03:30:43 +00:00
|
|
|
{
|
2009-01-05 20:57:04 +00:00
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2006-08-30 18:18:09 +00:00
|
|
|
gdk_display_beep (_gdk_display);
|
2006-08-30 03:30:43 +00:00
|
|
|
}
|
2007-04-30 17:42:49 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
gdk_window_set_opacity (GdkWindow *window,
|
|
|
|
gdouble opacity)
|
|
|
|
{
|
|
|
|
GdkWindowObject *private = (GdkWindowObject *) window;
|
|
|
|
GdkWindowImplQuartz *impl = GDK_WINDOW_IMPL_QUARTZ (private->impl);
|
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
g_return_if_fail (WINDOW_IS_TOPLEVEL (window));
|
|
|
|
|
2009-01-05 20:57:04 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
!WINDOW_IS_TOPLEVEL (window))
|
2007-04-30 17:42:49 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (opacity < 0)
|
|
|
|
opacity = 0;
|
|
|
|
else if (opacity > 1)
|
|
|
|
opacity = 1;
|
|
|
|
|
|
|
|
[impl->toplevel setAlphaValue: opacity];
|
|
|
|
}
|
2007-06-01 12:16:12 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
_gdk_windowing_window_set_composited (GdkWindow *window, gboolean composited)
|
|
|
|
{
|
|
|
|
}
|
2008-06-27 17:06:06 +00:00
|
|
|
|
2009-07-31 19:22:54 +00:00
|
|
|
GdkRegion *
|
|
|
|
_gdk_windowing_get_shape_for_mask (GdkBitmap *mask)
|
|
|
|
{
|
|
|
|
/* FIXME: implement */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
GdkRegion *
|
|
|
|
_gdk_windowing_window_get_shape (GdkWindow *window)
|
|
|
|
{
|
|
|
|
/* FIXME: implement */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
GdkRegion *
|
|
|
|
_gdk_windowing_window_get_input_shape (GdkWindow *window)
|
|
|
|
{
|
|
|
|
/* FIXME: implement */
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-06-27 17:06:06 +00:00
|
|
|
static void
|
|
|
|
gdk_window_impl_iface_init (GdkWindowImplIface *iface)
|
|
|
|
{
|
|
|
|
iface->show = gdk_window_quartz_show;
|
|
|
|
iface->hide = gdk_window_quartz_hide;
|
|
|
|
iface->withdraw = gdk_window_quartz_withdraw;
|
|
|
|
iface->set_events = gdk_window_quartz_set_events;
|
|
|
|
iface->get_events = gdk_window_quartz_get_events;
|
|
|
|
iface->raise = gdk_window_quartz_raise;
|
|
|
|
iface->lower = gdk_window_quartz_lower;
|
2009-09-02 21:38:55 +00:00
|
|
|
iface->restack_toplevel = gdk_window_quartz_restack_toplevel;
|
2008-06-27 17:06:06 +00:00
|
|
|
iface->move_resize = gdk_window_quartz_move_resize;
|
|
|
|
iface->set_background = gdk_window_quartz_set_background;
|
|
|
|
iface->set_back_pixmap = gdk_window_quartz_set_back_pixmap;
|
|
|
|
iface->reparent = gdk_window_quartz_reparent;
|
|
|
|
iface->set_cursor = gdk_window_quartz_set_cursor;
|
|
|
|
iface->get_geometry = gdk_window_quartz_get_geometry;
|
2009-06-20 09:17:15 +00:00
|
|
|
iface->get_root_coords = gdk_window_quartz_get_root_coords;
|
|
|
|
iface->get_pointer = gdk_window_quartz_get_pointer;
|
2009-01-05 20:57:04 +00:00
|
|
|
iface->get_deskrelative_origin = gdk_window_quartz_get_deskrelative_origin;
|
2008-06-27 17:06:06 +00:00
|
|
|
iface->shape_combine_region = gdk_window_quartz_shape_combine_region;
|
2009-01-05 20:57:04 +00:00
|
|
|
iface->input_shape_combine_region = gdk_window_quartz_input_shape_combine_region;
|
2008-06-27 17:06:06 +00:00
|
|
|
iface->set_static_gravities = gdk_window_quartz_set_static_gravities;
|
2009-01-07 13:09:10 +00:00
|
|
|
iface->queue_antiexpose = _gdk_quartz_window_queue_antiexpose;
|
|
|
|
iface->queue_translation = _gdk_quartz_window_queue_translation;
|
2009-01-05 15:26:33 +00:00
|
|
|
iface->destroy = _gdk_quartz_window_destroy;
|
2009-10-23 11:53:57 +00:00
|
|
|
iface->input_window_destroy = _gdk_input_window_destroy;
|
|
|
|
iface->input_window_crossing = _gdk_input_window_crossing;
|
2008-06-27 17:06:06 +00:00
|
|
|
}
|