2002-04-25 22:29:14 +00:00
|
|
|
/*
|
|
|
|
* gdkscreen.c
|
|
|
|
*
|
|
|
|
* Copyright 2001 Sun Microsystems Inc.
|
|
|
|
*
|
|
|
|
* Erwann Chenede <erwann.chenede@sun.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library 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"
|
2010-10-15 02:05:51 +00:00
|
|
|
|
2010-12-11 05:14:53 +00:00
|
|
|
#include "gdkscreenprivate.h"
|
2010-10-15 02:05:51 +00:00
|
|
|
#include "gdkrectangle.h"
|
|
|
|
#include "gdkwindow.h"
|
2005-08-26 18:49:52 +00:00
|
|
|
#include "gdkintl.h"
|
2010-07-09 00:34:45 +00:00
|
|
|
|
2002-04-25 22:29:14 +00:00
|
|
|
|
2010-11-15 02:51:30 +00:00
|
|
|
/**
|
|
|
|
* SECTION:gdkscreen
|
|
|
|
* @Short_description: Object representing a physical screen
|
|
|
|
* @Title: GdkScreen
|
|
|
|
*
|
|
|
|
* #GdkScreen objects are the GDK representation of a physical screen. It is used
|
|
|
|
* throughout GDK and GTK+ to specify which screen the top level windows
|
|
|
|
* are to be displayed on.
|
|
|
|
* It is also used to query the screen specification and default settings such as
|
|
|
|
* the screen width (gdk_screen_get_width()), etc.
|
|
|
|
*
|
|
|
|
* Note that a screen may consist of multiple monitors which are merged to
|
|
|
|
* form a large screen area.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2005-08-26 18:49:52 +00:00
|
|
|
static void gdk_screen_finalize (GObject *object);
|
|
|
|
static void gdk_screen_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gdk_screen_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_FONT_OPTIONS,
|
|
|
|
PROP_RESOLUTION
|
|
|
|
};
|
2002-10-04 15:58:19 +00:00
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
SIZE_CHANGED,
|
2006-04-25 14:27:32 +00:00
|
|
|
COMPOSITED_CHANGED,
|
2007-12-13 18:27:05 +00:00
|
|
|
MONITORS_CHANGED,
|
2002-10-04 15:58:19 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
static guint signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
2006-05-14 03:58:06 +00:00
|
|
|
G_DEFINE_TYPE (GdkScreen, gdk_screen, G_TYPE_OBJECT)
|
2002-04-25 22:29:14 +00:00
|
|
|
|
2002-10-04 16:08:19 +00:00
|
|
|
static void
|
|
|
|
gdk_screen_class_init (GdkScreenClass *klass)
|
2002-10-04 15:58:19 +00:00
|
|
|
{
|
2004-02-18 00:59:14 +00:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
2005-08-24 03:29:06 +00:00
|
|
|
object_class->finalize = gdk_screen_finalize;
|
2005-08-26 18:49:52 +00:00
|
|
|
object_class->set_property = gdk_screen_set_property;
|
|
|
|
object_class->get_property = gdk_screen_get_property;
|
2004-02-18 00:59:14 +00:00
|
|
|
|
2005-08-26 18:49:52 +00:00
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_FONT_OPTIONS,
|
|
|
|
g_param_spec_pointer ("font-options",
|
|
|
|
P_("Font options"),
|
|
|
|
P_("The default font options for the screen"),
|
2005-09-01 05:11:46 +00:00
|
|
|
G_PARAM_READWRITE|G_PARAM_STATIC_NAME|
|
|
|
|
G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB));
|
2005-08-26 18:49:52 +00:00
|
|
|
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_RESOLUTION,
|
|
|
|
g_param_spec_double ("resolution",
|
|
|
|
P_("Font resolution"),
|
|
|
|
P_("The resolution for fonts on the screen"),
|
|
|
|
-G_MAXDOUBLE,
|
|
|
|
G_MAXDOUBLE,
|
|
|
|
-1.0,
|
2005-09-01 05:11:46 +00:00
|
|
|
G_PARAM_READWRITE|G_PARAM_STATIC_NAME|
|
|
|
|
G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB));
|
2005-08-26 18:49:52 +00:00
|
|
|
|
2003-09-30 00:36:29 +00:00
|
|
|
/**
|
|
|
|
* GdkScreen::size-changed:
|
|
|
|
* @screen: the object on which the signal is emitted
|
|
|
|
*
|
2008-08-11 09:15:37 +00:00
|
|
|
* The ::size-changed signal is emitted when the pixel width or
|
2003-09-30 00:36:29 +00:00
|
|
|
* height of a screen changes.
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
*/
|
2002-10-04 15:58:19 +00:00
|
|
|
signals[SIZE_CHANGED] =
|
2008-08-11 09:15:37 +00:00
|
|
|
g_signal_new (g_intern_static_string ("size-changed"),
|
2002-10-04 15:58:19 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GdkScreenClass, size_changed),
|
|
|
|
NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE,
|
|
|
|
0);
|
2006-04-25 14:27:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GdkScreen::composited-changed:
|
|
|
|
* @screen: the object on which the signal is emitted
|
|
|
|
*
|
2008-08-11 09:15:37 +00:00
|
|
|
* The ::composited-changed signal is emitted when the composited
|
2006-04-25 14:27:32 +00:00
|
|
|
* status of the screen changes
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
|
|
|
signals[COMPOSITED_CHANGED] =
|
2008-08-11 09:15:37 +00:00
|
|
|
g_signal_new (g_intern_static_string ("composited-changed"),
|
2006-04-25 14:27:32 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GdkScreenClass, composited_changed),
|
|
|
|
NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE,
|
|
|
|
0);
|
2007-12-13 18:27:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GdkScreen::monitors-changed:
|
|
|
|
* @screen: the object on which the signal is emitted
|
|
|
|
*
|
2008-08-11 09:15:37 +00:00
|
|
|
* The ::monitors-changed signal is emitted when the number, size
|
2007-12-13 18:27:05 +00:00
|
|
|
* or position of the monitors attached to the screen change.
|
|
|
|
*
|
2009-10-24 10:26:46 +00:00
|
|
|
* Only for X11 and OS X for now. A future implementation for Win32
|
|
|
|
* may be a possibility.
|
2007-12-13 18:27:05 +00:00
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
*/
|
|
|
|
signals[MONITORS_CHANGED] =
|
2008-08-11 09:15:37 +00:00
|
|
|
g_signal_new (g_intern_static_string ("monitors-changed"),
|
2007-12-13 18:27:05 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (klass),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (GdkScreenClass, monitors_changed),
|
|
|
|
NULL, NULL,
|
|
|
|
g_cclosure_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE,
|
|
|
|
0);
|
2002-10-04 15:58:19 +00:00
|
|
|
}
|
|
|
|
|
2005-08-24 03:29:06 +00:00
|
|
|
static void
|
|
|
|
gdk_screen_init (GdkScreen *screen)
|
|
|
|
{
|
2008-10-21 21:42:39 +00:00
|
|
|
screen->resolution = -1.;
|
2005-08-24 03:29:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_screen_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GdkScreen *screen = GDK_SCREEN (object);
|
|
|
|
|
|
|
|
if (screen->font_options)
|
|
|
|
cairo_font_options_destroy (screen->font_options);
|
|
|
|
|
2006-04-04 14:02:03 +00:00
|
|
|
G_OBJECT_CLASS (gdk_screen_parent_class)->finalize (object);
|
2005-08-24 03:29:06 +00:00
|
|
|
}
|
|
|
|
|
2002-04-25 22:29:14 +00:00
|
|
|
void
|
Start implementing display/screen closing scheme; keep a flag for whether
Thu Aug 1 11:26:03 2002 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdisplay.[ch] gdk/gdkscreen.[ch] gdkinternals.h:
Start implementing display/screen closing scheme; keep a
flag for whether displays and screens are closed,
call g_object_run_dispose(). Remove public gdk_screen_close().
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkscreen-x11.c: Add
dispose() methods; move appropriate parts of the finalize
there.
* gdk/x11/gdkcolor-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkmain-x11.c gdk/x11/gdkpango-x11.c
gdk/x11/gdkpixmap-x11.c gdk/x11/gdkproperty-x11.c
gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.c:
Start of making everything correctly ignore operations
when a display has been closed.
* gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
Handle decorations == NULL.
* gdk/x11/gdkcolor-x11.c (gdk_colormap_remove):
Remove unnecessary hash table creation.
* gdk/x11/gdkinput.c gdk/x11/gdkinput-x11.c gdk/win32/gdkinput.c
Fix up gdk_device_get_history - handle events, n_events == NULL,
etc.
* gdk/x11/gdkproperty-x11.c (gdk_property_get):
Handle failure better.
* gdk/x11/gdkselection-x11.c (gdk_selection_property_get):
Handle failure better, handle data == NULL, move docs
here, remove an excess round trip by asking for
all selection data at once.
* gdk/gdkselection.c gdk/win32/{x11,win32}/gdkselection-{x11,win32}.c
gdk/{x11,win32}/gdkmain-{x11,win32}.c gdk/gdkdisplay.c: Move
gdk_text_property_to_text_list(), gdk_string_to_compound_text(),
gdk_display_set_sm_client_id() to display-independent part of GDK.
* gdk/Makefile.am (gdk_c_sources): Sort gdkdisplay/screen.[ch]
into the right place.
2002-08-01 15:28:40 +00:00
|
|
|
_gdk_screen_close (GdkScreen *screen)
|
2002-04-25 22:29:14 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_SCREEN (screen));
|
Start implementing display/screen closing scheme; keep a flag for whether
Thu Aug 1 11:26:03 2002 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdisplay.[ch] gdk/gdkscreen.[ch] gdkinternals.h:
Start implementing display/screen closing scheme; keep a
flag for whether displays and screens are closed,
call g_object_run_dispose(). Remove public gdk_screen_close().
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkscreen-x11.c: Add
dispose() methods; move appropriate parts of the finalize
there.
* gdk/x11/gdkcolor-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkmain-x11.c gdk/x11/gdkpango-x11.c
gdk/x11/gdkpixmap-x11.c gdk/x11/gdkproperty-x11.c
gdk/x11/gdkselection-x11.c gdk/x11/gdkwindow-x11.c:
Start of making everything correctly ignore operations
when a display has been closed.
* gdk/x11/gdkwindow-x11.c (gdk_window_get_decorations):
Handle decorations == NULL.
* gdk/x11/gdkcolor-x11.c (gdk_colormap_remove):
Remove unnecessary hash table creation.
* gdk/x11/gdkinput.c gdk/x11/gdkinput-x11.c gdk/win32/gdkinput.c
Fix up gdk_device_get_history - handle events, n_events == NULL,
etc.
* gdk/x11/gdkproperty-x11.c (gdk_property_get):
Handle failure better.
* gdk/x11/gdkselection-x11.c (gdk_selection_property_get):
Handle failure better, handle data == NULL, move docs
here, remove an excess round trip by asking for
all selection data at once.
* gdk/gdkselection.c gdk/win32/{x11,win32}/gdkselection-{x11,win32}.c
gdk/{x11,win32}/gdkmain-{x11,win32}.c gdk/gdkdisplay.c: Move
gdk_text_property_to_text_list(), gdk_string_to_compound_text(),
gdk_display_set_sm_client_id() to display-independent part of GDK.
* gdk/Makefile.am (gdk_c_sources): Sort gdkdisplay/screen.[ch]
into the right place.
2002-08-01 15:28:40 +00:00
|
|
|
|
|
|
|
if (!screen->closed)
|
|
|
|
{
|
|
|
|
screen->closed = TRUE;
|
|
|
|
g_object_run_dispose (G_OBJECT (screen));
|
|
|
|
}
|
2002-04-25 22:29:14 +00:00
|
|
|
}
|
|
|
|
|
2002-12-14 05:27:23 +00:00
|
|
|
/* Fallback used when the monitor "at" a point or window
|
|
|
|
* doesn't exist.
|
|
|
|
*/
|
|
|
|
static gint
|
|
|
|
get_nearest_monitor (GdkScreen *screen,
|
|
|
|
gint x,
|
|
|
|
gint y)
|
|
|
|
{
|
|
|
|
gint num_monitors, i;
|
|
|
|
gint nearest_dist = G_MAXINT;
|
|
|
|
gint nearest_monitor = 0;
|
2009-03-24 05:57:53 +00:00
|
|
|
|
2002-12-14 05:27:23 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), -1);
|
|
|
|
|
|
|
|
num_monitors = gdk_screen_get_n_monitors (screen);
|
|
|
|
|
|
|
|
for (i = 0; i < num_monitors; i++)
|
|
|
|
{
|
|
|
|
GdkRectangle monitor;
|
2009-03-24 05:57:53 +00:00
|
|
|
gint dist_x, dist_y, dist;
|
2002-12-14 05:27:23 +00:00
|
|
|
|
|
|
|
gdk_screen_get_monitor_geometry (screen, i, &monitor);
|
|
|
|
|
|
|
|
if (x < monitor.x)
|
|
|
|
dist_x = monitor.x - x;
|
|
|
|
else if (x >= monitor.x + monitor.width)
|
|
|
|
dist_x = x - (monitor.x + monitor.width) + 1;
|
|
|
|
else
|
|
|
|
dist_x = 0;
|
|
|
|
|
|
|
|
if (y < monitor.y)
|
|
|
|
dist_y = monitor.y - y;
|
|
|
|
else if (y >= monitor.y + monitor.height)
|
|
|
|
dist_y = y - (monitor.y + monitor.height) + 1;
|
|
|
|
else
|
|
|
|
dist_y = 0;
|
|
|
|
|
2009-03-24 05:57:53 +00:00
|
|
|
dist = dist_x + dist_y;
|
|
|
|
if (dist < nearest_dist)
|
2002-12-14 05:27:23 +00:00
|
|
|
{
|
2009-03-24 05:57:53 +00:00
|
|
|
nearest_dist = dist;
|
2002-12-14 05:27:23 +00:00
|
|
|
nearest_monitor = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nearest_monitor;
|
|
|
|
}
|
|
|
|
|
2002-04-25 22:29:14 +00:00
|
|
|
/**
|
|
|
|
* gdk_screen_get_monitor_at_point:
|
2002-11-28 00:33:17 +00:00
|
|
|
* @screen: a #GdkScreen.
|
|
|
|
* @x: the x coordinate in the virtual screen.
|
|
|
|
* @y: the y coordinate in the virtual screen.
|
2002-04-25 22:29:14 +00:00
|
|
|
*
|
|
|
|
* Returns the monitor number in which the point (@x,@y) is located.
|
|
|
|
*
|
2002-12-14 05:27:23 +00:00
|
|
|
* Returns: the monitor number in which the point (@x,@y) lies, or
|
|
|
|
* a monitor close to (@x,@y) if the point is not in any monitor.
|
2002-11-28 00:33:17 +00:00
|
|
|
*
|
|
|
|
* Since: 2.2
|
2002-04-25 22:29:14 +00:00
|
|
|
**/
|
|
|
|
gint
|
|
|
|
gdk_screen_get_monitor_at_point (GdkScreen *screen,
|
|
|
|
gint x,
|
|
|
|
gint y)
|
|
|
|
{
|
2002-05-02 16:18:24 +00:00
|
|
|
gint num_monitors, i;
|
|
|
|
|
2002-04-25 22:29:14 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), -1);
|
2002-05-02 16:18:24 +00:00
|
|
|
|
|
|
|
num_monitors = gdk_screen_get_n_monitors (screen);
|
2002-04-25 22:29:14 +00:00
|
|
|
|
2002-05-02 16:18:24 +00:00
|
|
|
for (i=0;i<num_monitors;i++)
|
|
|
|
{
|
|
|
|
GdkRectangle monitor;
|
|
|
|
|
|
|
|
gdk_screen_get_monitor_geometry (screen, i, &monitor);
|
|
|
|
|
|
|
|
if (x >= monitor.x &&
|
|
|
|
x < monitor.x + monitor.width &&
|
|
|
|
y >= monitor.y &&
|
|
|
|
y < (monitor.y + monitor.height))
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2002-12-14 05:27:23 +00:00
|
|
|
return get_nearest_monitor (screen, x, y);
|
2002-04-25 22:29:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2002-05-02 22:28:50 +00:00
|
|
|
* gdk_screen_get_monitor_at_window:
|
|
|
|
* @screen: a #GdkScreen.
|
|
|
|
* @window: a #GdkWindow
|
2002-12-14 05:27:23 +00:00
|
|
|
* @returns: the monitor number in which most of @window is located,
|
|
|
|
* or if @window does not intersect any monitors, a monitor,
|
|
|
|
* close to @window.
|
2002-04-25 22:29:14 +00:00
|
|
|
*
|
2002-11-28 00:33:17 +00:00
|
|
|
* Returns the number of the monitor in which the largest area of the
|
2002-12-14 05:27:23 +00:00
|
|
|
* bounding rectangle of @window resides.
|
2002-11-28 00:33:17 +00:00
|
|
|
*
|
|
|
|
* Since: 2.2
|
2002-04-25 22:29:14 +00:00
|
|
|
**/
|
|
|
|
gint
|
|
|
|
gdk_screen_get_monitor_at_window (GdkScreen *screen,
|
2002-05-01 17:22:54 +00:00
|
|
|
GdkWindow *window)
|
2002-04-25 22:29:14 +00:00
|
|
|
{
|
2002-12-14 05:27:23 +00:00
|
|
|
gint num_monitors, i, area = 0, screen_num = -1;
|
2002-05-01 17:22:54 +00:00
|
|
|
GdkRectangle win_rect;
|
2008-10-21 21:42:39 +00:00
|
|
|
|
2002-04-25 22:29:14 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), -1);
|
2008-10-21 21:42:39 +00:00
|
|
|
|
2002-05-01 17:22:54 +00:00
|
|
|
gdk_window_get_geometry (window, &win_rect.x, &win_rect.y, &win_rect.width,
|
2010-12-05 13:36:59 +00:00
|
|
|
&win_rect.height);
|
2002-05-01 17:22:54 +00:00
|
|
|
gdk_window_get_origin (window, &win_rect.x, &win_rect.y);
|
|
|
|
num_monitors = gdk_screen_get_n_monitors (screen);
|
|
|
|
|
|
|
|
for (i=0;i<num_monitors;i++)
|
|
|
|
{
|
|
|
|
GdkRectangle tmp_monitor, intersect;
|
|
|
|
|
|
|
|
gdk_screen_get_monitor_geometry (screen, i, &tmp_monitor);
|
|
|
|
gdk_rectangle_intersect (&win_rect, &tmp_monitor, &intersect);
|
|
|
|
|
2002-12-14 05:27:23 +00:00
|
|
|
if (intersect.width * intersect.height > area)
|
2002-05-01 17:22:54 +00:00
|
|
|
{
|
2002-12-14 05:27:23 +00:00
|
|
|
area = intersect.width * intersect.height;
|
2002-05-01 17:22:54 +00:00
|
|
|
screen_num = i;
|
|
|
|
}
|
|
|
|
}
|
2002-12-14 05:27:23 +00:00
|
|
|
if (screen_num >= 0)
|
|
|
|
return screen_num;
|
|
|
|
else
|
|
|
|
return get_nearest_monitor (screen,
|
|
|
|
win_rect.x + win_rect.width / 2,
|
|
|
|
win_rect.y + win_rect.height / 2);
|
2002-04-25 22:29:14 +00:00
|
|
|
}
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_width:
|
|
|
|
*
|
|
|
|
* Returns the width of the default screen in pixels.
|
|
|
|
*
|
2002-11-28 00:33:17 +00:00
|
|
|
* Return value: the width of the default screen in pixels.
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
**/
|
|
|
|
gint
|
|
|
|
gdk_screen_width (void)
|
|
|
|
{
|
2008-10-21 21:42:39 +00:00
|
|
|
return gdk_screen_get_width (gdk_screen_get_default ());
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_height:
|
|
|
|
*
|
|
|
|
* Returns the height of the default screen in pixels.
|
|
|
|
*
|
|
|
|
* Return value: the height of the default screen in pixels.
|
|
|
|
**/
|
|
|
|
gint
|
|
|
|
gdk_screen_height (void)
|
|
|
|
{
|
2008-10-21 21:42:39 +00:00
|
|
|
return gdk_screen_get_height (gdk_screen_get_default ());
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_width_mm:
|
|
|
|
*
|
|
|
|
* Returns the width of the default screen in millimeters.
|
|
|
|
* Note that on many X servers this value will not be correct.
|
|
|
|
*
|
|
|
|
* Return value: the width of the default screen in millimeters,
|
|
|
|
* though it is not always correct.
|
|
|
|
**/
|
|
|
|
gint
|
|
|
|
gdk_screen_width_mm (void)
|
|
|
|
{
|
2008-10-21 21:42:39 +00:00
|
|
|
return gdk_screen_get_width_mm (gdk_screen_get_default ());
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_height_mm:
|
|
|
|
*
|
|
|
|
* Returns the height of the default screen in millimeters.
|
|
|
|
* Note that on many X servers this value will not be correct.
|
|
|
|
*
|
|
|
|
* Return value: the height of the default screen in millimeters,
|
|
|
|
* though it is not always correct.
|
|
|
|
**/
|
|
|
|
gint
|
|
|
|
gdk_screen_height_mm (void)
|
|
|
|
{
|
2002-06-20 23:59:27 +00:00
|
|
|
return gdk_screen_get_height_mm (gdk_screen_get_default ());
|
Changes multihead reorganizing code for win32 support, mostly from a patch
Wed Jun 5 18:34:47 2002 Owen Taylor <otaylor@redhat.com>
Changes multihead reorganizing code for win32 support,
mostly from a patch by Hans Breuer.
* gdk/gdkcolor.c gdk/x11/gdkcolor-x11.c gdk/gdkcursor.c
gdk/x11/gdkcursor-x11.c gdk/gdkevents.c gdk/x11/gdkevents-x11.c
gdk/gdkfont.c gdk/x11/gdkfont-x11.c gdk/gdkkeys.c
gdk/x11/gdkkeys-x11.c gdk/gdkimage.c gdk/x11/gdkimage-x11.c
gdk/gdkscreen.c gdk/x11/gdkmain-x11.c
gdk/gdkdisplay.c gdk/gdkevents-x11.c gdk/gdkpango.c
gdk/x11/gdkpango-x11.c gdk/gdkselection.c
gdk/x11/gdkselection-x11.c gdk/gdkwindow.c
gdk/x11/gdkwindow-x11.c gdk/gdkvisual.c gdk/x11/gdkvisual-x11.c:
Move port-independent singlehead wrapper functions into
port-independent part of GDK. (#80009)
* gdk/win32/gdkcolor-win32.c gdk/win32/gdkcursor-win32.c
gdk/win32/gdkevents-win32.c gdk/win32/gdkfont-win32.c
gdk/win32/gdkimage-win32.c gdk/win32/gdkkeys-win32.c
gdk/win32/gdkmain-win32.c gdk/win32/gdkproperty-win32.c
gdk/win32/gdkselection-win32.c gdk/win32/gkwindow-win32.c:
Turn singlehead functions into "multihead" functions that ignore
their GdkDisplay or GdkScreen arguments.
* gdk/win32/gdkdrawable-win32.c gdk/win32/gdkevents-win32.c
gdk/win32/gdkinput-win32.c gdk/win32/gdkprivate-win32.h:
Misc multihead-compatibility changes.
* gtk/gtk.def gdk/gdk.def: Update for multihead functions.
* gdk/gdkcolormap.h gdk/gdkvisual.h gdk/x11/gdkcolormap-x11.c
gdk/x11/gdkvisual-x11.c: Remove the screen fields
from the public parts of the colormap/visual structures, add accessors
instead.
* gdk/gdkpixbuf-render.c gdk/gdkpixmap.c gdk/gdkrgb.c
gdk/x11/gdkcolormap-x11.c gdk/x11/gdkimage-x11.c
gdk/x11/gdkimage-x11.c gdk/x11/gdkprivate-x11.h gtk/gtkgc.c
gtk/gtkstyle.c gtk/gtkwidget.c: Use accessors to get the screen
for colormaps, visuals; move the fields into the private
structures for the x11 backend.
* gdk/gdkdisplay.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/gdkscreen.[ch] gdk/x11/gdkscreen-x11.c:
Remove virtualization of screen and display functions.
(#79990, patch from Erwann Chenede)
* gdk/win32/gdkdisplay-x11.c gdk/win32/gdkscreen-win32.c
gdk/win32/{Makefile.am, makefile.msc, makefile.mingw}:
New files containing stub implementations of Display,
Screen functions.
* gdk/x11/gdkscreen-x11.[ch] gdk/x11/gdkdisplay-x11.[ch]
gdk/x11/gdkx.h: Clean up function exports and what
headers they are in. (#79954)
* gdk/x11/gdkx.h: Fix macro that was referring to a non-existant
screen->screen_num. (In the patch for #79972, Erwann Chenede)
* gdk/gdkscreen.c gdk/gdkwindow.c gdk/x11/gdkinternals.h
gdk/x11/gdkscreen-x11.c: Fix gdk_screen_get_window_at_pointer()
to use window hooks. (#79972, patch partly from Erwann Chenede)
* gdk/x11/gdkdisplay-x11.c gdk/x11/gdkevents-x11.c: Fix
some warnings.
2002-06-06 00:26:42 +00:00
|
|
|
}
|
2005-03-16 03:17:27 +00:00
|
|
|
|
2005-08-24 03:29:06 +00:00
|
|
|
/**
|
2005-08-26 18:49:52 +00:00
|
|
|
* gdk_screen_set_font_options:
|
2005-08-24 03:29:06 +00:00
|
|
|
* @screen: a #GdkScreen
|
2010-02-19 16:53:17 +00:00
|
|
|
* @options: (allow-none): a #cairo_font_options_t, or %NULL to unset any
|
2005-08-24 03:29:06 +00:00
|
|
|
* previously set default font options.
|
|
|
|
*
|
|
|
|
* Sets the default font options for the screen. These
|
|
|
|
* options will be set on any #PangoContext's newly created
|
|
|
|
* with gdk_pango_context_get_for_screen(). Changing the
|
|
|
|
* default set of font options does not affect contexts that
|
|
|
|
* have already been created.
|
2005-08-26 18:49:52 +00:00
|
|
|
*
|
|
|
|
* Since: 2.10
|
2005-08-24 03:29:06 +00:00
|
|
|
**/
|
|
|
|
void
|
2005-08-26 18:49:52 +00:00
|
|
|
gdk_screen_set_font_options (GdkScreen *screen,
|
|
|
|
const cairo_font_options_t *options)
|
2005-08-24 03:29:06 +00:00
|
|
|
{
|
2008-10-21 21:42:39 +00:00
|
|
|
g_return_if_fail (GDK_IS_SCREEN (screen));
|
2005-08-24 03:29:06 +00:00
|
|
|
|
2008-10-21 21:42:39 +00:00
|
|
|
if (screen->font_options != options)
|
|
|
|
{
|
|
|
|
if (screen->font_options)
|
|
|
|
cairo_font_options_destroy (screen->font_options);
|
|
|
|
|
|
|
|
if (options)
|
|
|
|
screen->font_options = cairo_font_options_copy (options);
|
|
|
|
else
|
|
|
|
screen->font_options = NULL;
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (screen), "font-options");
|
|
|
|
}
|
2005-08-24 03:29:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-08-26 18:49:52 +00:00
|
|
|
* gdk_screen_get_font_options:
|
2005-08-24 03:29:06 +00:00
|
|
|
* @screen: a #GdkScreen
|
|
|
|
*
|
2005-08-26 18:49:52 +00:00
|
|
|
* Gets any options previously set with gdk_screen_set_font_options().
|
2005-08-24 03:29:06 +00:00
|
|
|
*
|
|
|
|
* Return value: the current font options, or %NULL if no default
|
|
|
|
* font options have been set.
|
2005-08-26 18:49:52 +00:00
|
|
|
*
|
|
|
|
* Since: 2.10
|
2005-08-24 03:29:06 +00:00
|
|
|
**/
|
|
|
|
const cairo_font_options_t *
|
2005-08-26 18:49:52 +00:00
|
|
|
gdk_screen_get_font_options (GdkScreen *screen)
|
2005-08-24 03:29:06 +00:00
|
|
|
{
|
2008-10-21 21:42:39 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
|
2005-08-24 03:29:06 +00:00
|
|
|
|
2008-10-21 21:42:39 +00:00
|
|
|
return screen->font_options;
|
2005-08-24 03:29:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-08-26 18:49:52 +00:00
|
|
|
* gdk_screen_set_resolution:
|
2005-08-24 03:29:06 +00:00
|
|
|
* @screen: a #GdkScreen
|
|
|
|
* @dpi: the resolution in "dots per inch". (Physical inches aren't actually
|
|
|
|
* involved; the terminology is conventional.)
|
|
|
|
|
|
|
|
* Sets the resolution for font handling on the screen. This is a
|
|
|
|
* scale factor between points specified in a #PangoFontDescription
|
|
|
|
* and cairo units. The default value is 96, meaning that a 10 point
|
|
|
|
* font will be 13 units high. (10 * 96. / 72. = 13.3).
|
|
|
|
*
|
2005-08-26 18:49:52 +00:00
|
|
|
* Since: 2.10
|
2005-08-24 03:29:06 +00:00
|
|
|
**/
|
|
|
|
void
|
2005-08-26 18:49:52 +00:00
|
|
|
gdk_screen_set_resolution (GdkScreen *screen,
|
|
|
|
gdouble dpi)
|
2005-08-24 03:29:06 +00:00
|
|
|
{
|
2008-10-21 21:42:39 +00:00
|
|
|
g_return_if_fail (GDK_IS_SCREEN (screen));
|
2005-08-24 03:29:06 +00:00
|
|
|
|
2008-10-21 21:42:39 +00:00
|
|
|
if (dpi < 0)
|
|
|
|
dpi = -1.0;
|
2005-08-26 18:49:52 +00:00
|
|
|
|
2008-10-21 21:42:39 +00:00
|
|
|
if (screen->resolution != dpi)
|
|
|
|
{
|
|
|
|
screen->resolution = dpi;
|
2005-08-26 18:49:52 +00:00
|
|
|
|
2008-10-21 21:42:39 +00:00
|
|
|
g_object_notify (G_OBJECT (screen), "resolution");
|
|
|
|
}
|
2005-08-24 03:29:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2005-08-26 18:49:52 +00:00
|
|
|
* gdk_screen_get_resolution:
|
2005-08-24 03:29:06 +00:00
|
|
|
* @screen: a #GdkScreen
|
|
|
|
*
|
|
|
|
* Gets the resolution for font handling on the screen; see
|
2005-08-26 18:49:52 +00:00
|
|
|
* gdk_screen_set_resolution() for full details.
|
2005-08-24 03:29:06 +00:00
|
|
|
*
|
|
|
|
* Return value: the current resolution, or -1 if no resolution
|
|
|
|
* has been set.
|
2005-08-26 18:49:52 +00:00
|
|
|
*
|
|
|
|
* Since: 2.10
|
2005-08-24 03:29:06 +00:00
|
|
|
**/
|
|
|
|
gdouble
|
2005-08-26 18:49:52 +00:00
|
|
|
gdk_screen_get_resolution (GdkScreen *screen)
|
2005-08-24 03:29:06 +00:00
|
|
|
{
|
2008-10-21 21:42:39 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), -1.0);
|
2005-08-24 03:29:06 +00:00
|
|
|
|
2008-10-21 21:42:39 +00:00
|
|
|
return screen->resolution;
|
2005-08-24 03:29:06 +00:00
|
|
|
}
|
|
|
|
|
2005-08-26 18:49:52 +00:00
|
|
|
static void
|
|
|
|
gdk_screen_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GdkScreen *screen = GDK_SCREEN (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_FONT_OPTIONS:
|
2008-01-14 15:00:57 +00:00
|
|
|
g_value_set_pointer (value, (gpointer) gdk_screen_get_font_options (screen));
|
2005-08-26 18:49:52 +00:00
|
|
|
break;
|
|
|
|
case PROP_RESOLUTION:
|
|
|
|
g_value_set_double (value, gdk_screen_get_resolution (screen));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_screen_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GdkScreen *screen = GDK_SCREEN (object);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_FONT_OPTIONS:
|
|
|
|
gdk_screen_set_font_options (screen, g_value_get_pointer (value));
|
|
|
|
break;
|
|
|
|
case PROP_RESOLUTION:
|
|
|
|
gdk_screen_set_resolution (screen, g_value_get_double (value));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2010-12-06 21:05:13 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_display:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
*
|
|
|
|
* Gets the display to which the @screen belongs.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none): the display to which @screen belongs
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
**/
|
|
|
|
GdkDisplay *
|
|
|
|
gdk_screen_get_display (GdkScreen *screen)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_display (screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_width:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
*
|
|
|
|
* Gets the width of @screen in pixels
|
|
|
|
*
|
|
|
|
* Returns: the width of @screen in pixels.
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
**/
|
|
|
|
gint
|
|
|
|
gdk_screen_get_width (GdkScreen *screen)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_width (screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_height:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
*
|
|
|
|
* Gets the height of @screen in pixels
|
|
|
|
*
|
|
|
|
* Returns: the height of @screen in pixels.
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
**/
|
|
|
|
gint
|
|
|
|
gdk_screen_get_height (GdkScreen *screen)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_height (screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_width_mm:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
*
|
|
|
|
* Gets the width of @screen in millimeters.
|
|
|
|
* Note that on some X servers this value will not be correct.
|
|
|
|
*
|
|
|
|
* Returns: the width of @screen in millimeters.
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
**/
|
|
|
|
gint
|
|
|
|
gdk_screen_get_width_mm (GdkScreen *screen)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_width_mm (screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_height_mm:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
*
|
|
|
|
* Returns the height of @screen in millimeters.
|
|
|
|
* Note that on some X servers this value will not be correct.
|
|
|
|
*
|
|
|
|
* Returns: the heigth of @screen in millimeters.
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
**/
|
|
|
|
gint
|
|
|
|
gdk_screen_get_height_mm (GdkScreen *screen)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_height_mm (screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_number:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
*
|
|
|
|
* Gets the index of @screen among the screens in the display
|
|
|
|
* to which it belongs. (See gdk_screen_get_display())
|
|
|
|
*
|
|
|
|
* Returns: the index
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
**/
|
|
|
|
gint
|
|
|
|
gdk_screen_get_number (GdkScreen *screen)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_number (screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_root_window:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
*
|
|
|
|
* Gets the root window of @screen.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none): the root window
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
**/
|
|
|
|
GdkWindow *
|
|
|
|
gdk_screen_get_root_window (GdkScreen *screen)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_root_window (screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_n_monitors:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
*
|
|
|
|
* Returns the number of monitors which @screen consists of.
|
|
|
|
*
|
|
|
|
* Returns: number of monitors which @screen consists of
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
*/
|
|
|
|
gint
|
|
|
|
gdk_screen_get_n_monitors (GdkScreen *screen)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_n_monitors (screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_primary_monitor:
|
|
|
|
* @screen: a #GdkScreen.
|
|
|
|
*
|
|
|
|
* Gets the primary monitor for @screen. The primary monitor
|
|
|
|
* is considered the monitor where the 'main desktop' lives.
|
|
|
|
* While normal application windows typically allow the window
|
|
|
|
* manager to place the windows, specialized desktop applications
|
|
|
|
* such as panels should place themselves on the primary monitor.
|
|
|
|
*
|
|
|
|
* If no primary monitor is configured by the user, the return value
|
|
|
|
* will be 0, defaulting to the first monitor.
|
|
|
|
*
|
|
|
|
* Returns: An integer index for the primary monitor, or 0 if none is configured.
|
|
|
|
*
|
|
|
|
* Since: 2.20
|
|
|
|
*/
|
|
|
|
gint
|
|
|
|
gdk_screen_get_primary_monitor (GdkScreen *screen)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_primary_monitor (screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_monitor_width_mm:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
* @monitor_num: number of the monitor, between 0 and gdk_screen_get_n_monitors (screen)
|
|
|
|
*
|
|
|
|
* Gets the width in millimeters of the specified monitor, if available.
|
|
|
|
*
|
|
|
|
* Returns: the width of the monitor, or -1 if not available
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
*/
|
|
|
|
gint
|
|
|
|
gdk_screen_get_monitor_width_mm (GdkScreen *screen,
|
|
|
|
gint monitor_num)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_monitor_width_mm (screen, monitor_num);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_monitor_height_mm:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
* @monitor_num: number of the monitor, between 0 and gdk_screen_get_n_monitors (screen)
|
|
|
|
*
|
|
|
|
* Gets the height in millimeters of the specified monitor.
|
|
|
|
*
|
|
|
|
* Returns: the height of the monitor, or -1 if not available
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
*/
|
|
|
|
gint
|
|
|
|
gdk_screen_get_monitor_height_mm (GdkScreen *screen,
|
|
|
|
gint monitor_num)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_monitor_height_mm (screen, monitor_num);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_monitor_plug_name:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
* @monitor_num: number of the monitor, between 0 and gdk_screen_get_n_monitors (screen)
|
|
|
|
*
|
|
|
|
* Returns the output name of the specified monitor.
|
|
|
|
* Usually something like VGA, DVI, or TV, not the actual
|
|
|
|
* product name of the display device.
|
|
|
|
*
|
|
|
|
* Returns: a newly-allocated string containing the name of the monitor,
|
|
|
|
* or %NULL if the name cannot be determined
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
*/
|
|
|
|
gchar *
|
|
|
|
gdk_screen_get_monitor_plug_name (GdkScreen *screen,
|
|
|
|
gint monitor_num)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_monitor_plug_name (screen, monitor_num);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_monitor_geometry:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
* @monitor_num: the monitor number, between 0 and gdk_screen_get_n_monitors (screen)
|
|
|
|
* @dest: (out) (allow-none): a #GdkRectangle to be filled with the monitor geometry
|
|
|
|
*
|
|
|
|
* Retrieves the #GdkRectangle representing the size and position of
|
|
|
|
* the individual monitor within the entire screen area.
|
|
|
|
*
|
|
|
|
* Note that the size of the entire screen area can be retrieved via
|
|
|
|
* gdk_screen_get_width() and gdk_screen_get_height().
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_screen_get_monitor_geometry (GdkScreen *screen,
|
|
|
|
gint monitor_num,
|
|
|
|
GdkRectangle *dest)
|
|
|
|
{
|
|
|
|
GDK_SCREEN_GET_CLASS(screen)->get_monitor_geometry (screen, monitor_num, dest);
|
|
|
|
}
|
|
|
|
|
2010-12-06 22:19:58 +00:00
|
|
|
/**
|
|
|
|
* gdk_screen_list_visuals:
|
|
|
|
* @screen: the relevant #GdkScreen.
|
|
|
|
*
|
|
|
|
* Lists the available visuals for the specified @screen.
|
|
|
|
* A visual describes a hardware image data format.
|
|
|
|
* For example, a visual might support 24-bit color, or 8-bit color,
|
|
|
|
* and might expect pixels to be in a certain format.
|
|
|
|
*
|
|
|
|
* Call g_list_free() on the return value when you're finished with it.
|
|
|
|
*
|
|
|
|
* Return value: (transfer container) (element-type GdkVisual):
|
|
|
|
* a list of visuals; the list must be freed, but not its contents
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
**/
|
|
|
|
GList *
|
|
|
|
gdk_screen_list_visuals (GdkScreen *screen)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->list_visuals (screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_system_visual:
|
|
|
|
* @screen: a #GdkScreen.
|
|
|
|
*
|
|
|
|
* Get the system's default visual for @screen.
|
|
|
|
* This is the visual for the root window of the display.
|
|
|
|
* The return value should not be freed.
|
|
|
|
*
|
|
|
|
* Return value: (transfer none): the system visual
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
**/
|
|
|
|
GdkVisual *
|
|
|
|
gdk_screen_get_system_visual (GdkScreen * screen)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_system_visual (screen);
|
|
|
|
}
|
|
|
|
|
2010-12-06 21:05:13 +00:00
|
|
|
/**
|
|
|
|
* gdk_screen_get_rgba_visual:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
*
|
|
|
|
* Gets a visual to use for creating windows with an alpha channel.
|
|
|
|
* The windowing system on which GTK+ is running
|
|
|
|
* may not support this capability, in which case %NULL will
|
|
|
|
* be returned. Even if a non-%NULL value is returned, its
|
|
|
|
* possible that the window's alpha channel won't be honored
|
|
|
|
* when displaying the window on the screen: in particular, for
|
|
|
|
* X an appropriate windowing manager and compositing manager
|
|
|
|
* must be running to provide appropriate display.
|
|
|
|
*
|
|
|
|
* This functionality is not implemented in the Windows backend.
|
|
|
|
*
|
|
|
|
* For setting an overall opacity for a top-level window, see
|
|
|
|
* gdk_window_set_opacity().
|
|
|
|
*
|
|
|
|
* Return value: (transfer none): a visual to use for windows with an
|
|
|
|
* alpha channel or %NULL if the capability is not available.
|
|
|
|
*
|
|
|
|
* Since: 2.8
|
|
|
|
**/
|
|
|
|
GdkVisual *
|
|
|
|
gdk_screen_get_rgba_visual (GdkScreen *screen)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_rgba_visual (screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_is_composited:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
*
|
|
|
|
* Returns whether windows with an RGBA visual can reasonably
|
|
|
|
* be expected to have their alpha channel drawn correctly on
|
|
|
|
* the screen.
|
|
|
|
*
|
|
|
|
* On X11 this function returns whether a compositing manager is
|
|
|
|
* compositing @screen.
|
|
|
|
*
|
|
|
|
* Return value: Whether windows with RGBA visuals can reasonably be
|
|
|
|
* expected to have their alpha channels drawn correctly on the screen.
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gdk_screen_is_composited (GdkScreen *screen)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->is_composited (screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_make_display_name:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
*
|
|
|
|
* Determines the name to pass to gdk_display_open() to get
|
|
|
|
* a #GdkDisplay with this screen as the default screen.
|
|
|
|
*
|
|
|
|
* Return value: a newly allocated string, free with g_free()
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
**/
|
|
|
|
gchar *
|
|
|
|
gdk_screen_make_display_name (GdkScreen *screen)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->make_display_name (screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_active_window:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
*
|
|
|
|
* Returns the screen's currently active window.
|
|
|
|
*
|
|
|
|
* On X11, this is done by inspecting the _NET_ACTIVE_WINDOW property
|
|
|
|
* on the root window, as described in the <ulink
|
|
|
|
* url="http://www.freedesktop.org/Standards/wm-spec">Extended Window
|
|
|
|
* Manager Hints</ulink>. If there is no currently currently active
|
|
|
|
* window, or the window manager does not support the
|
|
|
|
* _NET_ACTIVE_WINDOW hint, this function returns %NULL.
|
|
|
|
*
|
|
|
|
* On other platforms, this function may return %NULL, depending on whether
|
|
|
|
* it is implementable on that platform.
|
|
|
|
*
|
|
|
|
* The returned window should be unrefed using g_object_unref() when
|
|
|
|
* no longer needed.
|
|
|
|
*
|
|
|
|
* Return value: (transfer full): the currently active window, or %NULL.
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
**/
|
|
|
|
GdkWindow *
|
|
|
|
gdk_screen_get_active_window (GdkScreen *screen)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_active_window (screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_window_stack:
|
|
|
|
* @screen: a #GdkScreen
|
|
|
|
*
|
|
|
|
* Returns a #GList of #GdkWindow<!-- -->s representing the current
|
|
|
|
* window stack.
|
|
|
|
*
|
|
|
|
* On X11, this is done by inspecting the _NET_CLIENT_LIST_STACKING
|
|
|
|
* property on the root window, as described in the <ulink
|
|
|
|
* url="http://www.freedesktop.org/Standards/wm-spec">Extended Window
|
|
|
|
* Manager Hints</ulink>. If the window manager does not support the
|
|
|
|
* _NET_CLIENT_LIST_STACKING hint, this function returns %NULL.
|
|
|
|
*
|
|
|
|
* On other platforms, this function may return %NULL, depending on whether
|
|
|
|
* it is implementable on that platform.
|
|
|
|
*
|
|
|
|
* The returned list is newly allocated and owns references to the
|
|
|
|
* windows it contains, so it should be freed using g_list_free() and
|
|
|
|
* its windows unrefed using g_object_unref() when no longer needed.
|
|
|
|
*
|
|
|
|
* Return value: (transfer full) (element-type GdkWindow):
|
|
|
|
* a list of #GdkWindow<!-- -->s for the current window stack,
|
|
|
|
* or %NULL.
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
**/
|
|
|
|
GList *
|
|
|
|
gdk_screen_get_window_stack (GdkScreen *screen)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_window_stack (screen);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_broadcast_client_message:
|
|
|
|
* @screen: the #GdkScreen where the event will be broadcasted.
|
|
|
|
* @event: the #GdkEvent.
|
|
|
|
*
|
|
|
|
* On X11, sends an X ClientMessage event to all toplevel windows on
|
|
|
|
* @screen.
|
|
|
|
*
|
|
|
|
* Toplevel windows are determined by checking for the WM_STATE property,
|
|
|
|
* as described in the Inter-Client Communication Conventions Manual (ICCCM).
|
|
|
|
* If no windows are found with the WM_STATE property set, the message is
|
|
|
|
* sent to all children of the root window.
|
|
|
|
*
|
|
|
|
* On Windows, broadcasts a message registered with the name
|
|
|
|
* GDK_WIN32_CLIENT_MESSAGE to all top-level windows. The amount of
|
|
|
|
* data is limited to one long, i.e. four bytes.
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_screen_broadcast_client_message (GdkScreen *screen,
|
|
|
|
GdkEvent *event)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->broadcast_client_message (screen, event);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_screen_get_setting:
|
|
|
|
* @screen: the #GdkScreen where the setting is located
|
|
|
|
* @name: the name of the setting
|
|
|
|
* @value: location to store the value of the setting
|
|
|
|
*
|
|
|
|
* Retrieves a desktop-wide setting such as double-click time
|
|
|
|
* for the #GdkScreen @screen.
|
|
|
|
*
|
|
|
|
* FIXME needs a list of valid settings here, or a link to
|
|
|
|
* more information.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the setting existed and a value was stored
|
|
|
|
* in @value, %FALSE otherwise.
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gdk_screen_get_setting (GdkScreen *screen,
|
|
|
|
const gchar *name,
|
|
|
|
GValue *value)
|
|
|
|
{
|
|
|
|
return GDK_SCREEN_GET_CLASS(screen)->get_setting (screen, name, value);
|
|
|
|
}
|