forked from AuroraMiddleware/gtk
b9d1a03440
Tue Apr 25 10:25:28 2006 Søren Sandmann <sandmann@redhat.com> * tests/testgtk.c (create_alpha_window): Create 'composited' label. * tests/testgtk.c (on_composited_changed): New function, change the label to say whether the screen is composited or not. * gtk/gtkwindow.c (gtk_window_on_composited_changed): When composited status change, invalidate the window and propagate the signal;. * gtk/gtkwindow.c (gtk_window_map): Set the appropriate type hint if reset_type_hint is TRUE. * gtk/gtkwindow.c (gtk_window_set_type_hint): If hint is one of the old hints, store a shadow copy in the public window->type_hint bitfield, otherwise set this field to normal. Set the private field to the type hint. * gtk/gtkwindow.c (gtk_window_init): Initialize priv->type_hint. * gtk/gtkwindow.c (struct _GtkWindowPrivate): New field "reset_type_hint" indicating whether the type hint needs to be reset. New field type_hint containing a GdkWindowTypeHint. * gtk/gtkwidget.c (propagate_composited_changed): New function to propagate changes in composited status. (gtk_widget_class_init): Add composited_changed signal. * gtk/gtkwidget.h (struct _GtkWidgetClass): New signal composited-changed. * gtk/gtkwidget.c (gtk_widget_is_composited): New function. * gtk/gtktooltips.c (gtk_tooltips_draw_tips): Set transient for. * gtk/gtktooltips.c (gtk_tooltips_force_window): Set the type hint * gtk/gtkmenuitem.c (gtk_menu_item_position_menu): Compute whether the item belongs to a menubar. Set the type_hint appropriately depending on the outcome. * gtk/gtkmenu.c (gtk_menu_position): Set the default type hint here. * gtk/gtkmenu.c (gtk_menu_attach_to_widget): connect to hierarchy changed on the attach widget. * gtk/gtkmenu.c (attach_widget_hierarchy_changed): New function to set the transient_for property for menus. * gtk/gtkdnd.c (set_icon_stock_pixbuf): Set the appropriate type hint. * gtk/gtkcombo.c (gtk_combo_popup_list): Make the popup window transient for the toplevel. * gtk/gtkcombobox.c (gtk_combo_box_set_popup_widget): Set transient-for, for the popup window. * gdk/x11/gdkwindow-x11.c (gdk_window_get_type_hint): Support for new window types. * gdk/x11/gdkwindow-x11.c (gdk_window_set_type_hint): Add support for new window types. * gdk/x11/gdkscreen-x11.c (_gdk_x11_screen_process_owner_change): New function called whenever the compositing manager comes and goes. * gdk/x11/gdkscreen-x11.c (gdk_screen_is_composited): New function. * gdk/x11/gdkscreen-x11.c (_gdk_x11_screen_request_cm_notification, make_cm_atom, check_is_composited): New functions * gdk/x11/gdkevents-x11.c (gdk_event_translate): Call _gdk_x11_screen_process_owner_change when an XFixesSelectionNotifyEvent is received. * gdk/x11/gdkdisplay-x11.c (gdk_display_open): Call _gdk_x11_screen_request_cm_notification() on all screens. * gdk/quartz/gdkscreen-quartz.c (gdk_screen_is_composited): Dummy implementation. * gdk/gdkscreen.c (gdk_screen_class_init): New signal, 'composited-changed'. * gdk/gdkwindow.h: Add new EWMH window types. * gdk/win32/gdkscreen-win32.c (gdk_screen_is_composited)
266 lines
5.4 KiB
C
266 lines
5.4 KiB
C
/* gdkscreen-quartz.c
|
|
*
|
|
* Copyright (C) 2005 Imendio AB
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include "gdk.h"
|
|
#include "gdkprivate-quartz.h"
|
|
|
|
static GdkColormap *default_colormap = NULL;
|
|
|
|
GdkDisplay *
|
|
gdk_screen_get_display (GdkScreen *screen)
|
|
{
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
|
|
|
|
return _gdk_display;
|
|
}
|
|
|
|
|
|
GdkWindow *
|
|
gdk_screen_get_root_window (GdkScreen *screen)
|
|
{
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
|
|
|
|
return _gdk_root;
|
|
}
|
|
|
|
gint
|
|
gdk_screen_get_number (GdkScreen *screen)
|
|
{
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
|
|
|
|
return 0;
|
|
}
|
|
|
|
gchar *
|
|
_gdk_windowing_substitute_screen_number (const gchar *display_name,
|
|
int screen_number)
|
|
{
|
|
if (screen_number != 0)
|
|
return NULL;
|
|
|
|
return g_strdup (display_name);
|
|
}
|
|
|
|
GdkColormap*
|
|
gdk_screen_get_default_colormap (GdkScreen *screen)
|
|
{
|
|
return default_colormap;
|
|
}
|
|
|
|
void
|
|
gdk_screen_set_default_colormap (GdkScreen *screen,
|
|
GdkColormap *colormap)
|
|
{
|
|
GdkColormap *old_colormap;
|
|
|
|
g_return_if_fail (GDK_IS_SCREEN (screen));
|
|
g_return_if_fail (GDK_IS_COLORMAP (colormap));
|
|
|
|
old_colormap = default_colormap;
|
|
|
|
default_colormap = g_object_ref (colormap);
|
|
|
|
if (old_colormap)
|
|
g_object_unref (old_colormap);
|
|
}
|
|
|
|
gint
|
|
gdk_screen_get_width (GdkScreen *screen)
|
|
{
|
|
int i;
|
|
int width;
|
|
NSArray *array;
|
|
NSAutoreleasePool *pool;
|
|
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
|
|
|
|
pool = [[NSAutoreleasePool alloc] init];
|
|
array = [NSScreen screens];
|
|
|
|
width = 0;
|
|
for (i = 0; i < [array count]; i++)
|
|
{
|
|
NSRect rect = [[array objectAtIndex:i] frame];
|
|
width += rect.size.width;
|
|
}
|
|
|
|
[pool release];
|
|
|
|
return width;
|
|
}
|
|
|
|
gint
|
|
gdk_screen_get_height (GdkScreen *screen)
|
|
{
|
|
int i;
|
|
int height;
|
|
NSArray *array;
|
|
NSAutoreleasePool *pool;
|
|
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
|
|
|
|
pool = [[NSAutoreleasePool alloc] init];
|
|
array = [NSScreen screens];
|
|
|
|
height = 0;
|
|
for (i = 0; i < [array count]; i++)
|
|
{
|
|
NSRect rect = [[array objectAtIndex:i] frame];
|
|
height = MAX (height, rect.size.height);
|
|
}
|
|
|
|
[pool release];
|
|
|
|
return height;
|
|
}
|
|
|
|
static gint
|
|
get_mm_from_pixels (NSScreen *screen, int pixels)
|
|
{
|
|
/* userSpaceScaleFactor is in "pixels per point",
|
|
* 72 is the number of points per inch,
|
|
* and 25.4 is the number of millimeters per inch.
|
|
*/
|
|
return ((pixels / [screen userSpaceScaleFactor]) / 72) * 25.4;
|
|
}
|
|
|
|
gint
|
|
gdk_screen_get_width_mm (GdkScreen *screen)
|
|
{
|
|
int i;
|
|
gint width;
|
|
NSArray *array;
|
|
NSAutoreleasePool *pool;
|
|
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
|
|
|
|
pool = [[NSAutoreleasePool alloc] init];
|
|
array = [NSScreen screens];
|
|
|
|
width = 0;
|
|
for (i = 0; i < [array count]; i++)
|
|
{
|
|
NSScreen *screen = [array objectAtIndex:i];
|
|
NSRect rect = [screen frame];
|
|
width += get_mm_from_pixels (screen, rect.size.width);
|
|
}
|
|
|
|
[pool release];
|
|
|
|
return width;
|
|
}
|
|
|
|
gint
|
|
gdk_screen_get_height_mm (GdkScreen *screen)
|
|
{
|
|
int i;
|
|
gint height;
|
|
NSArray *array;
|
|
NSAutoreleasePool *pool;
|
|
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), 0);
|
|
|
|
pool = [[NSAutoreleasePool alloc] init];
|
|
array = [NSScreen screens];
|
|
|
|
height = 0;
|
|
for (i = 0; i < [array count]; i++)
|
|
{
|
|
NSScreen *screen = [array objectAtIndex:i];
|
|
NSRect rect = [screen frame];
|
|
gint h = get_mm_from_pixels (screen, rect.size.height);
|
|
height = MAX (height, h);
|
|
}
|
|
|
|
[pool release];
|
|
|
|
return height;
|
|
}
|
|
|
|
int
|
|
gdk_screen_get_n_monitors (GdkScreen *screen)
|
|
{
|
|
int n;
|
|
GDK_QUARTZ_ALLOC_POOL;
|
|
NSArray *array = [NSScreen screens];
|
|
|
|
n = [array count];
|
|
|
|
GDK_QUARTZ_RELEASE_POOL;
|
|
|
|
return n;
|
|
}
|
|
|
|
void
|
|
gdk_screen_get_monitor_geometry (GdkScreen *screen,
|
|
gint monitor_num,
|
|
GdkRectangle *dest)
|
|
{
|
|
NSArray *array;
|
|
NSRect rect;
|
|
NSAutoreleasePool *pool;
|
|
|
|
g_return_if_fail (GDK_IS_SCREEN (screen));
|
|
g_return_if_fail (monitor_num < gdk_screen_get_n_monitors (screen));
|
|
g_return_if_fail (monitor_num >= 0);
|
|
|
|
pool = [[NSAutoreleasePool alloc] init];
|
|
array = [NSScreen screens];
|
|
rect = [[array objectAtIndex:monitor_num] frame];
|
|
|
|
dest->x = rect.origin.x;
|
|
dest->y = rect.origin.y;
|
|
dest->width = rect.size.width;
|
|
dest->height = rect.size.height;
|
|
|
|
[pool release];
|
|
}
|
|
|
|
gchar *
|
|
gdk_screen_make_display_name (GdkScreen *screen)
|
|
{
|
|
return g_strdup (gdk_display_get_name (_gdk_display));
|
|
}
|
|
|
|
GdkWindow *
|
|
gdk_screen_get_active_window (GdkScreen *screen)
|
|
{
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
GList *
|
|
gdk_screen_get_window_stack (GdkScreen *screen)
|
|
{
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
|
|
|
|
return NULL;
|
|
}
|
|
|
|
gboolean
|
|
gdk_screen_is_composited (GdkScreen *screen)
|
|
{
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), FALSE);
|
|
|
|
return TRUE;
|
|
}
|