2008-07-01 22:57:50 +00:00
|
|
|
/* GDK - The GIMP Drawing Kit
|
2007-07-19 23:50:39 +00:00
|
|
|
* Copyright (C) 1995-2007 Peter Mattis, Spencer Kimball,
|
|
|
|
* Josh MacDonald, Ryan Lortie
|
1997-11-24 22:37:52 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1997-11-24 22:37:52 +00:00
|
|
|
* 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
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
1997-11-24 22:37:52 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1998-04-13 02:02:47 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
1998-03-17 07:54:57 +00:00
|
|
|
|
1999-02-24 07:37:18 +00:00
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:37:18 +00:00
|
|
|
* file for a list of people on the GTK+ Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
2009-06-01 10:04:36 +00:00
|
|
|
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
|
1999-02-24 07:37:18 +00:00
|
|
|
*/
|
|
|
|
|
2010-05-14 15:23:33 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2010-10-14 11:25:23 +00:00
|
|
|
#include <cairo-gobject.h>
|
|
|
|
|
2010-05-14 15:23:33 +00:00
|
|
|
#include "gdkwindow.h"
|
|
|
|
|
2010-10-15 02:05:51 +00:00
|
|
|
#include "gdkrectangle.h"
|
2010-05-14 15:23:33 +00:00
|
|
|
#include "gdkinternals.h"
|
|
|
|
#include "gdkintl.h"
|
2010-12-16 03:09:35 +00:00
|
|
|
#include "gdkscreenprivate.h"
|
|
|
|
#include "gdkdisplayprivate.h"
|
2010-05-25 22:38:44 +00:00
|
|
|
#include "gdkdeviceprivate.h"
|
2010-12-11 05:14:53 +00:00
|
|
|
#include "gdkvisualprivate.h"
|
2010-05-14 15:23:33 +00:00
|
|
|
#include "gdkmarshalers.h"
|
|
|
|
#include "gdkwindowimpl.h"
|
|
|
|
|
2010-10-15 02:05:51 +00:00
|
|
|
#include <math.h>
|
|
|
|
|
2010-05-14 15:23:33 +00:00
|
|
|
#undef DEBUG_WINDOW_PRINTING
|
|
|
|
|
|
|
|
|
2010-05-13 02:51:37 +00:00
|
|
|
/**
|
|
|
|
* SECTION:windows
|
|
|
|
* @Short_description: Onscreen display areas in the target window system
|
|
|
|
* @Title: Windows
|
|
|
|
*
|
|
|
|
* A #GdkWindow is a rectangular region on the screen. It's a low-level object,
|
|
|
|
* used to implement high-level objects such as #GtkWidget and #GtkWindow on the
|
|
|
|
* GTK+ level. A #GtkWindow is a toplevel window, the thing a user might think
|
|
|
|
* of as a "window" with a titlebar and so on; a #GtkWindow may contain many
|
|
|
|
* #GdkWindow<!-- -->s. For example, each #GtkButton has a #GdkWindow associated
|
|
|
|
* with it.
|
|
|
|
*
|
|
|
|
* <refsect2 id="COMPOSITED-WINDOWS">
|
|
|
|
* <title>Composited Windows</title>
|
|
|
|
* <para>
|
|
|
|
* Normally, the windowing system takes care of rendering the contents of a
|
|
|
|
* child window onto its parent window. This mechanism can be intercepted by
|
|
|
|
* calling gdk_window_set_composited() on the child window. For a
|
|
|
|
* <firstterm>composited</firstterm> window it is the responsibility of the
|
|
|
|
* application to render the window contents at the right spot.
|
|
|
|
* </para>
|
|
|
|
* <example id="composited-window-example">
|
|
|
|
* <title>Composited windows</title>
|
|
|
|
* <programlisting>
|
|
|
|
* <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" parse="text" href="../../../../examples/gdk/composited-window-example.c"><xi:fallback>FIXME: MISSING XINCLUDE CONTENT</xi:fallback></xi:include>
|
|
|
|
* </programlisting></example>
|
|
|
|
* <para>
|
|
|
|
* In the example <xref linkend="composited-window-example"/>, a button is
|
|
|
|
* placed inside of an event box inside of a window. The event box is set as
|
|
|
|
* composited and therefore is no longer automatically drawn to the screen.
|
|
|
|
*
|
|
|
|
* When the contents of the event box change, an expose event is generated on
|
|
|
|
* it's parent window (which, in this case, belongs to the toplevel #GtkWindow).
|
|
|
|
* The expose handler for this widget is responsible for merging the changes
|
|
|
|
* back on the screen in the way that it wishes.
|
|
|
|
*
|
|
|
|
* In our case, we merge the contents with a 50% transparency. We also set the
|
|
|
|
* background colour of the window to red. The effect is that the background
|
|
|
|
* shows through the button.
|
|
|
|
* </para>
|
|
|
|
* </refsect2>
|
|
|
|
* <refsect2 id="OFFSCREEN-WINDOWS">
|
|
|
|
* <title>Offscreen Windows</title>
|
|
|
|
* <para>
|
|
|
|
* Offscreen windows are more general than composited windows, since they allow
|
|
|
|
* not only to modify the rendering of the child window onto its parent, but
|
|
|
|
* also to apply coordinate transformations.
|
|
|
|
*
|
|
|
|
* To integrate an offscreen window into a window hierarchy, one has to call
|
|
|
|
* gdk_offscreen_window_set_embedder() and handle a number of signals. The
|
|
|
|
* #GdkWindow::pick-embedded-child signal on the embedder window is used to
|
|
|
|
* select an offscreen child at given coordinates, and the
|
|
|
|
* #GdkWindow::to-embedder and #GdkWindow::from-embedder signals on the
|
|
|
|
* offscreen window are used to translate coordinates between the embedder and
|
|
|
|
* the offscreen window.
|
|
|
|
*
|
|
|
|
* For rendering an offscreen window onto its embedder, the contents of the
|
2010-08-27 13:21:58 +00:00
|
|
|
* offscreen window are available as a surface, via
|
|
|
|
* gdk_offscreen_window_get_surface().
|
2010-05-13 02:51:37 +00:00
|
|
|
* </para>
|
|
|
|
* </refsect2>
|
|
|
|
*/
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-06-01 11:38:04 +00:00
|
|
|
/* Historically a GdkWindow always matches a platform native window,
|
|
|
|
* be it a toplevel window or a child window. In this setup the
|
|
|
|
* GdkWindow (and other GdkDrawables) were platform independent classes,
|
|
|
|
* and the actual platform specific implementation was in a delegate
|
|
|
|
* object availible as "impl" in the window object.
|
2008-07-18 13:03:42 +00:00
|
|
|
*
|
2009-06-01 11:38:04 +00:00
|
|
|
* With the addition of client side windows and offscreen windows this
|
|
|
|
* changes a bit. The application-visible GdkWindow object behaves as
|
|
|
|
* it did before, but not all such windows now have a corresponding native
|
|
|
|
* window. Instead windows that are "client side" are emulated by the gdk
|
|
|
|
* code such that clipping, drawing, moving, events etc work as expected.
|
|
|
|
*
|
|
|
|
* For GdkWindows that have a native window the "impl" object is the
|
|
|
|
* same as before. However, for all client side windows the impl object
|
|
|
|
* is shared with its parent (i.e. all client windows descendants of one
|
|
|
|
* native window has the same impl.
|
|
|
|
*
|
|
|
|
* Additionally there is a new type of platform independent impl object,
|
|
|
|
* GdkOffscreenWindow. All windows of type GDK_WINDOW_OFFSCREEN get an impl
|
|
|
|
* of this type (while their children are generally GDK_WINDOW_CHILD virtual
|
2010-08-27 13:21:58 +00:00
|
|
|
* windows). Such windows work by allocating a #cairo_surface_t as the backing
|
|
|
|
* store for drawing operations, which is resized with the window.
|
2009-06-01 11:38:04 +00:00
|
|
|
*
|
|
|
|
* GdkWindows have a pointer to the "impl window" they are in, i.e.
|
|
|
|
* the topmost GdkWindow which have the same "impl" value. This is stored
|
|
|
|
* in impl_window, which is different from the window itself only for client
|
|
|
|
* side windows.
|
|
|
|
* All GdkWindows (native or not) track the position of the window in the parent
|
|
|
|
* (x, y), the size of the window (width, height), the position of the window
|
|
|
|
* with respect to the impl window (abs_x, abs_y). We also track the clip
|
|
|
|
* region of the window wrt parent windows and siblings, in window-relative
|
|
|
|
* coordinates with and without child windows included (clip_region,
|
|
|
|
* clip_region_with_children).
|
|
|
|
*
|
|
|
|
* All toplevel windows are native windows, but also child windows can be
|
|
|
|
* native (although not children of offscreens). We always listen to
|
|
|
|
* a basic set of events (see get_native_event_mask) for these windows
|
|
|
|
* so that we can emulate events for any client side children.
|
|
|
|
*
|
|
|
|
* For native windows we apply the calculated clip region as a window shape
|
|
|
|
* so that eg. client side siblings that overlap the native child properly
|
|
|
|
* draws over the native child window.
|
|
|
|
*
|
|
|
|
* In order to minimize flicker and for performance we use a couple of cacheing
|
|
|
|
* tricks. First of all, every time we do a window to window copy area, for instance
|
|
|
|
* when moving a client side window or when scrolling/moving a region in a window
|
|
|
|
* we store this in outstanding_moves instead of applying immediately. We then
|
|
|
|
* delay this move until we really need it (because something depends on being
|
|
|
|
* able to read it), or until we're handing a redraw from an expose/invalidation
|
2010-08-27 13:21:58 +00:00
|
|
|
* (actually we delay it past redraw, but before blitting the double buffer
|
2009-06-01 11:38:04 +00:00
|
|
|
* to the window). This gives us two advantages. First of all it minimizes the time
|
|
|
|
* from the window is moved to the exposes related to that move, secondly it allows
|
|
|
|
* us to be smart about how to do the copy. We combine multiple moves into one (when
|
|
|
|
* possible) and we don't actually do copies to anything that is or will be
|
|
|
|
* invalidated and exposed anyway.
|
|
|
|
*
|
|
|
|
* Secondly, we use something called a "implicit paint" during repaint handling.
|
|
|
|
* An implicit paint is similar to a regular paint for the paint stack, but it is
|
|
|
|
* not put on the stack. Instead, it is set on the impl window, and later when
|
|
|
|
* regular gdk_window_begin_paint_region() happen on a window of this impl window
|
2010-08-27 13:21:58 +00:00
|
|
|
* we reuse the surface from the implicit paint. During repaint we create and at the
|
2009-06-01 11:38:04 +00:00
|
|
|
* end flush an implicit paint, which means we can collect all the paints on
|
2010-08-27 13:21:58 +00:00
|
|
|
* multiple client side windows in the same backing store.
|
2009-06-01 10:04:36 +00:00
|
|
|
*/
|
Large changes to the Win32 backend, partially made necessary by the
2000-05-02 Tor Lillqvist <tml@iki.fi>
Large changes to the Win32 backend, partially made necessary by
the changes to the backend-independent internal
structures. Attempts to implement similar backing store stuff as
on X11. The current (CVS) version of the Win32 backend is *not* as
stable as it was before the no-flicker branch was merged. A
zipfile with that version is available from
http://www.gimp.org/win32/. That should be use by "production"
code until this CVS version is usable. (But note, the Win32
backend has never been claimed to be "production quality".)
* README.win32: Add the above comment about versions.
* gdk/gdkwindow.c: Don't use backing store for now on Win32.
* gdk/gdk.def: Update.
* gdk/gdkfont.h: Declare temporary Win32-only functions. Will
presumably be replaced by some more better mechanism as 1.4 gets
closer to release shape.
* gdk/makefile.{cygwin,msc}: Update.
* gdk/win32/*.c: Correct inclusions of the backend-specific and
internal headers. Change code according to changes in these. Use
gdk_drawable_*, not gdk_window_* where necessary.
* gdk/win32/gdkdnd-win32.c: Use MISC selector for GDK_NOTE, not
our old DND.
* gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text): Don't try
to interpret single characters as UTF-8. Thanks to Hans Breuer.
Use correct function name in warning messages.
* gdk/win32/gdkevents-win32.c: Use correct parameter lists for the
GSourceFuncs gdk_event_prepare and gdk_event_check.
(gdk_event_get_graphics_expose): Do implement, use
PeekMessage. Thanks to Hans Breuer.
(event_mask_string): Debugging function to print an GdkEventMask.
(gdk_pointer_grab): Use it.
* gdk/win32/gdkfont-win32.c: The Unicode subrange that the
(old) book I used claimed was Hangul actually is CJK Unified
Ideographs Extension A. Also, Hangul Syllables were missing.
Improve logging.
* gdk/win32/gdkgc-win32.c: Largish changes.
* gdk/win32/gdkim-win32.c (gdk_set_locale): Use
g_win32_getlocale() from GLib, and not setlocale() to get current
locale name.
* gdk/win32/gdkprivate-win32.h
* gdk/win32/gdkwin32.h: Move stuff from gdkprivate-win32.h to
gdkwin32.h, similarily as in the X11 backend.
* gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Bugfix,
assignment was used instead of equals in if test. Thanks to Hans
Breuer.
* gdk/win32/makefile.{cygwin,msc}
* gtk/makefile.{cygwin,msc}: Updates. Better kludge to get the
path to the Win32 headers that works also with the mingw compiler.
* gtk/gtkstyle.c: Include <string.h>.
2000-05-01 22:06:49 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
#define USE_BACKING_STORE /* Appears to work on Win32, too, now. */
|
2000-03-28 01:24:44 +00:00
|
|
|
|
2009-05-26 18:53:48 +00:00
|
|
|
/* This adds a local value to the GdkVisibilityState enum */
|
|
|
|
#define GDK_VISIBILITY_NOT_VIEWABLE 3
|
|
|
|
|
2009-06-04 18:15:29 +00:00
|
|
|
enum {
|
2009-07-01 12:36:36 +00:00
|
|
|
PICK_EMBEDDED_CHILD, /* only called if children are embedded */
|
|
|
|
TO_EMBEDDER,
|
|
|
|
FROM_EMBEDDER,
|
2010-10-14 11:25:23 +00:00
|
|
|
CREATE_SURFACE,
|
2009-06-04 18:15:29 +00:00
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
2009-07-16 06:16:01 +00:00
|
|
|
enum {
|
|
|
|
PROP_0,
|
|
|
|
PROP_CURSOR
|
|
|
|
};
|
|
|
|
|
2009-11-04 13:03:04 +00:00
|
|
|
typedef enum {
|
|
|
|
CLEAR_BG_NONE,
|
|
|
|
CLEAR_BG_WINCLEARED, /* Clear backgrounds except those that the window system clears */
|
|
|
|
CLEAR_BG_ALL
|
|
|
|
} ClearBg;
|
|
|
|
|
2000-03-28 01:24:44 +00:00
|
|
|
struct _GdkWindowPaint
|
|
|
|
{
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region;
|
2005-03-17 01:54:40 +00:00
|
|
|
cairo_surface_t *surface;
|
2008-07-18 13:03:42 +00:00
|
|
|
guint uses_implicit : 1;
|
2009-09-04 11:14:25 +00:00
|
|
|
guint flushed : 1;
|
2008-12-04 19:18:02 +00:00
|
|
|
guint32 region_tag;
|
2000-03-28 01:24:44 +00:00
|
|
|
};
|
2001-07-05 13:41:34 +00:00
|
|
|
|
2008-12-09 19:13:02 +00:00
|
|
|
typedef struct {
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *dest_region; /* The destination region */
|
2009-02-08 12:13:56 +00:00
|
|
|
int dx, dy; /* The amount that the source was moved to reach dest_region */
|
2008-12-09 19:13:02 +00:00
|
|
|
} GdkWindowRegionMove;
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Global info */
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
static void gdk_window_drop_cairo_surface (GdkWindow *private);
|
2005-02-03 23:29:02 +00:00
|
|
|
|
2000-05-15 16:09:53 +00:00
|
|
|
static void gdk_window_free_paint_stack (GdkWindow *window);
|
2000-03-28 01:24:44 +00:00
|
|
|
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
static void gdk_window_finalize (GObject *object);
|
2009-07-16 06:16:01 +00:00
|
|
|
|
|
|
|
static void gdk_window_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gdk_window_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
2009-02-05 13:53:07 +00:00
|
|
|
static void gdk_window_clear_backing_region (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region);
|
1998-05-03 22:41:32 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
static void recompute_visible_regions (GdkWindow *private,
|
2009-01-20 22:03:16 +00:00
|
|
|
gboolean recalculate_siblings,
|
|
|
|
gboolean recalculate_children);
|
2009-01-22 19:50:06 +00:00
|
|
|
static void gdk_window_flush_outstanding_moves (GdkWindow *window);
|
2010-11-22 23:55:39 +00:00
|
|
|
static void gdk_window_flush_recursive (GdkWindow *window);
|
|
|
|
static void do_move_region_bits_on_impl (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region, /* In impl window coords */
|
2008-12-09 19:13:02 +00:00
|
|
|
int dx, int dy);
|
2010-11-22 23:55:39 +00:00
|
|
|
static void gdk_window_invalidate_in_parent (GdkWindow *private);
|
|
|
|
static void move_native_children (GdkWindow *private);
|
2010-05-25 22:38:44 +00:00
|
|
|
static void update_cursor (GdkDisplay *display,
|
|
|
|
GdkDevice *device);
|
2010-11-22 23:55:39 +00:00
|
|
|
static void impl_window_add_update_area (GdkWindow *impl_window,
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region);
|
2009-08-13 14:48:07 +00:00
|
|
|
static void gdk_window_region_move_free (GdkWindowRegionMove *move);
|
2009-11-04 13:03:04 +00:00
|
|
|
static void gdk_window_invalidate_region_full (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
const cairo_region_t *region,
|
2009-11-04 13:03:04 +00:00
|
|
|
gboolean invalidate_children,
|
|
|
|
ClearBg clear_bg);
|
|
|
|
static void gdk_window_invalidate_rect_full (GdkWindow *window,
|
|
|
|
const GdkRectangle *rect,
|
|
|
|
gboolean invalidate_children,
|
|
|
|
ClearBg clear_bg);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-06-04 18:15:29 +00:00
|
|
|
static guint signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
2006-05-31 03:34:04 +00:00
|
|
|
static gpointer parent_class = NULL;
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
static const cairo_user_data_key_t gdk_window_cairo_key;
|
|
|
|
|
2008-12-04 19:18:02 +00:00
|
|
|
static guint32
|
|
|
|
new_region_tag (void)
|
|
|
|
{
|
|
|
|
static guint32 tag = 0;
|
|
|
|
|
|
|
|
return ++tag;
|
|
|
|
}
|
|
|
|
|
2010-12-21 02:54:15 +00:00
|
|
|
G_DEFINE_ABSTRACT_TYPE (GdkWindow, gdk_window, G_TYPE_OBJECT)
|
1999-10-03 22:12:41 +00:00
|
|
|
|
2006-04-10 19:43:08 +00:00
|
|
|
GType
|
|
|
|
_gdk_paintable_get_type (void)
|
|
|
|
{
|
|
|
|
static GType paintable_type = 0;
|
|
|
|
|
|
|
|
if (!paintable_type)
|
|
|
|
{
|
2006-10-03 15:54:52 +00:00
|
|
|
const GTypeInfo paintable_info =
|
2006-04-10 19:43:08 +00:00
|
|
|
{
|
|
|
|
sizeof (GdkPaintableIface), /* class_size */
|
|
|
|
NULL, /* base_init */
|
|
|
|
NULL, /* base_finalize */
|
|
|
|
};
|
|
|
|
|
|
|
|
paintable_type = g_type_register_static (G_TYPE_INTERFACE,
|
|
|
|
g_intern_static_string ("GdkPaintable"),
|
|
|
|
&paintable_info, 0);
|
|
|
|
|
|
|
|
g_type_interface_add_prerequisite (paintable_type, G_TYPE_OBJECT);
|
|
|
|
}
|
|
|
|
|
|
|
|
return paintable_type;
|
|
|
|
}
|
|
|
|
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_init (GdkWindow *window)
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
{
|
|
|
|
/* 0-initialization is good for all other fields. */
|
1998-03-07 18:38:18 +00:00
|
|
|
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
window->window_type = GDK_WINDOW_CHILD;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
2001-02-27 20:40:15 +00:00
|
|
|
window->state = GDK_WINDOW_STATE_WITHDRAWN;
|
2008-07-18 13:03:42 +00:00
|
|
|
window->width = 1;
|
|
|
|
window->height = 1;
|
|
|
|
window->toplevel_window_type = -1;
|
2009-05-26 18:53:48 +00:00
|
|
|
/* starts hidden */
|
|
|
|
window->effective_visibility = GDK_VISIBILITY_NOT_VIEWABLE;
|
|
|
|
window->visibility = GDK_VISIBILITY_FULLY_OBSCURED;
|
|
|
|
/* Default to unobscured since some backends don't send visibility events */
|
|
|
|
window->native_visibility = GDK_VISIBILITY_UNOBSCURED;
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
}
|
1999-01-17 22:58:59 +00:00
|
|
|
|
2009-06-08 13:57:59 +00:00
|
|
|
/* Stop and return on the first non-NULL parent */
|
2009-06-04 18:15:29 +00:00
|
|
|
static gboolean
|
2009-06-24 18:25:40 +00:00
|
|
|
accumulate_get_window (GSignalInvocationHint *ihint,
|
|
|
|
GValue *return_accu,
|
|
|
|
const GValue *handler_return,
|
|
|
|
gpointer data)
|
2009-06-04 18:15:29 +00:00
|
|
|
{
|
|
|
|
g_value_copy (handler_return, return_accu);
|
|
|
|
/* Continue while returning NULL */
|
2009-06-08 13:57:59 +00:00
|
|
|
return g_value_get_object (handler_return) == NULL;
|
2009-06-04 18:15:29 +00:00
|
|
|
}
|
|
|
|
|
2010-10-14 11:25:23 +00:00
|
|
|
static gboolean
|
|
|
|
create_surface_accumulator (GSignalInvocationHint *ihint,
|
|
|
|
GValue *return_accu,
|
|
|
|
const GValue *handler_return,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
g_value_copy (handler_return, return_accu);
|
|
|
|
|
|
|
|
/* Stop on the first non-NULL return value */
|
|
|
|
return g_value_get_boxed (handler_return) == NULL;
|
|
|
|
}
|
|
|
|
|
2009-02-28 05:24:07 +00:00
|
|
|
static GQuark quark_pointer_window = 0;
|
|
|
|
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
static void
|
2010-12-03 15:14:31 +00:00
|
|
|
gdk_window_class_init (GdkWindowClass *klass)
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2006-05-31 03:34:04 +00:00
|
|
|
parent_class = g_type_class_peek_parent (klass);
|
|
|
|
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
object_class->finalize = gdk_window_finalize;
|
2009-07-16 06:16:01 +00:00
|
|
|
object_class->set_property = gdk_window_set_property;
|
|
|
|
object_class->get_property = gdk_window_get_property;
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
|
2010-10-14 11:25:23 +00:00
|
|
|
klass->create_surface = _gdk_offscreen_window_create_surface;
|
|
|
|
|
2009-02-28 05:24:07 +00:00
|
|
|
quark_pointer_window = g_quark_from_static_string ("gtk-pointer-window");
|
2009-06-04 18:15:29 +00:00
|
|
|
|
|
|
|
|
2009-07-16 06:16:01 +00:00
|
|
|
/* Properties */
|
2009-12-20 20:39:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GdkWindow:cursor:
|
|
|
|
*
|
|
|
|
* The mouse pointer for a #GdkWindow. See gdk_window_set_cursor() and
|
|
|
|
* gdk_window_get_cursor() for details.
|
|
|
|
*
|
|
|
|
* Since: 2.18
|
|
|
|
*/
|
2009-07-16 06:16:01 +00:00
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_CURSOR,
|
2010-12-20 02:09:31 +00:00
|
|
|
g_param_spec_object ("cursor",
|
|
|
|
P_("Cursor"),
|
|
|
|
P_("Cursor"),
|
|
|
|
GDK_TYPE_CURSOR,
|
|
|
|
G_PARAM_READWRITE));
|
2009-07-16 06:16:01 +00:00
|
|
|
|
2009-07-03 20:37:14 +00:00
|
|
|
/**
|
|
|
|
* GdkWindow::pick-embedded-child:
|
|
|
|
* @window: the window on which the signal is emitted
|
|
|
|
* @x: x coordinate in the window
|
|
|
|
* @y: y coordinate in the window
|
|
|
|
*
|
|
|
|
* The ::pick-embedded-child signal is emitted to find an embedded
|
|
|
|
* child at the given position.
|
|
|
|
*
|
2009-08-31 04:55:32 +00:00
|
|
|
* Returns: the #GdkWindow of the embedded child at @x, @y, or %NULL
|
2009-07-03 20:37:14 +00:00
|
|
|
*
|
|
|
|
* Since: 2.18
|
|
|
|
*/
|
2009-07-01 12:36:36 +00:00
|
|
|
signals[PICK_EMBEDDED_CHILD] =
|
|
|
|
g_signal_new (g_intern_static_string ("pick-embedded-child"),
|
2009-06-04 18:15:29 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
2010-12-03 15:14:31 +00:00
|
|
|
G_STRUCT_OFFSET (GdkWindowClass, pick_embedded_child),
|
2009-06-24 18:25:40 +00:00
|
|
|
accumulate_get_window, NULL,
|
2009-07-07 03:06:46 +00:00
|
|
|
_gdk_marshal_OBJECT__DOUBLE_DOUBLE,
|
2009-06-04 18:15:29 +00:00
|
|
|
GDK_TYPE_WINDOW,
|
|
|
|
2,
|
|
|
|
G_TYPE_DOUBLE,
|
|
|
|
G_TYPE_DOUBLE);
|
2009-07-03 20:37:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GdkWindow::to-embedder:
|
|
|
|
* @window: the offscreen window on which the signal is emitted
|
|
|
|
* @offscreen-x: x coordinate in the offscreen window
|
|
|
|
* @offscreen-y: y coordinate in the offscreen window
|
|
|
|
* @embedder-x: return location for the x coordinate in the embedder window
|
|
|
|
* @embedder-y: return location for the y coordinate in the embedder window
|
|
|
|
*
|
|
|
|
* The ::to-embedder signal is emitted to translate coordinates
|
|
|
|
* in an offscreen window to its embedder.
|
|
|
|
*
|
2009-08-31 04:55:32 +00:00
|
|
|
* See also #GtkWindow::from-embedder.
|
|
|
|
*
|
2009-07-03 20:37:14 +00:00
|
|
|
* Since: 2.18
|
|
|
|
*/
|
2009-07-01 12:36:36 +00:00
|
|
|
signals[TO_EMBEDDER] =
|
|
|
|
g_signal_new (g_intern_static_string ("to-embedder"),
|
2009-06-04 18:15:29 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
2010-12-03 15:14:31 +00:00
|
|
|
G_STRUCT_OFFSET (GdkWindowClass, to_embedder),
|
2009-06-04 18:15:29 +00:00
|
|
|
NULL, NULL,
|
2009-07-07 03:06:46 +00:00
|
|
|
_gdk_marshal_VOID__DOUBLE_DOUBLE_POINTER_POINTER,
|
2009-06-04 18:15:29 +00:00
|
|
|
G_TYPE_NONE,
|
|
|
|
4,
|
|
|
|
G_TYPE_DOUBLE,
|
|
|
|
G_TYPE_DOUBLE,
|
|
|
|
G_TYPE_POINTER,
|
|
|
|
G_TYPE_POINTER);
|
2009-07-03 20:37:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GdkWindow::from-embedder:
|
|
|
|
* @window: the offscreen window on which the signal is emitted
|
|
|
|
* @embedder-x: x coordinate in the embedder window
|
|
|
|
* @embedder-y: y coordinate in the embedder window
|
|
|
|
* @offscreen-x: return location for the x coordinate in the offscreen window
|
|
|
|
* @offscreen-y: return location for the y coordinate in the offscreen window
|
|
|
|
*
|
|
|
|
* The ::from-embedder signal is emitted to translate coordinates
|
|
|
|
* in the embedder of an offscreen window to the offscreen window.
|
|
|
|
*
|
2009-08-31 04:55:32 +00:00
|
|
|
* See also #GtkWindow::to-embedder.
|
|
|
|
*
|
2009-07-03 20:37:14 +00:00
|
|
|
* Since: 2.18
|
|
|
|
*/
|
2009-07-01 12:36:36 +00:00
|
|
|
signals[FROM_EMBEDDER] =
|
|
|
|
g_signal_new (g_intern_static_string ("from-embedder"),
|
2009-06-04 18:15:29 +00:00
|
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
2010-12-03 15:14:31 +00:00
|
|
|
G_STRUCT_OFFSET (GdkWindowClass, from_embedder),
|
2009-06-04 18:15:29 +00:00
|
|
|
NULL, NULL,
|
2009-07-07 03:06:46 +00:00
|
|
|
_gdk_marshal_VOID__DOUBLE_DOUBLE_POINTER_POINTER,
|
2009-06-04 18:15:29 +00:00
|
|
|
G_TYPE_NONE,
|
|
|
|
4,
|
|
|
|
G_TYPE_DOUBLE,
|
|
|
|
G_TYPE_DOUBLE,
|
|
|
|
G_TYPE_POINTER,
|
|
|
|
G_TYPE_POINTER);
|
2010-10-14 11:25:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GdkWindow::create-surface:
|
|
|
|
* @window: the offscreen window on which the signal is emitted
|
|
|
|
* @width: the width of the offscreen surface to create
|
|
|
|
* @height: the height of the offscreen surface to create
|
|
|
|
*
|
|
|
|
* The ::create-surface signal is emitted when an offscreen window
|
|
|
|
* needs its surface (re)created, which happens either when the the
|
|
|
|
* window is first drawn to, or when the window is being
|
|
|
|
* resized. The first signal handler that returns a non-%NULL
|
|
|
|
* surface will stop any further signal emission, and its surface
|
|
|
|
* will be used.
|
|
|
|
*
|
|
|
|
* Note that it is not possible to access the window's previous
|
|
|
|
* surface from within any callback of this signal. Calling
|
|
|
|
* gdk_offscreen_window_get_surface() will lead to a crash.
|
|
|
|
*
|
|
|
|
* Returns: the newly created #cairo_surface_t for the offscreen window
|
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
*/
|
|
|
|
signals[CREATE_SURFACE] =
|
|
|
|
g_signal_new (g_intern_static_string ("create-surface"),
|
|
|
|
G_OBJECT_CLASS_TYPE (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
2010-12-03 15:14:31 +00:00
|
|
|
G_STRUCT_OFFSET (GdkWindowClass, create_surface),
|
2010-10-14 11:25:23 +00:00
|
|
|
create_surface_accumulator, NULL,
|
|
|
|
_gdk_marshal_BOXED__INT_INT,
|
|
|
|
CAIRO_GOBJECT_TYPE_SURFACE,
|
|
|
|
2,
|
|
|
|
G_TYPE_INT,
|
|
|
|
G_TYPE_INT);
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
}
|
2000-03-28 01:24:44 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
static void
|
|
|
|
device_removed_cb (GdkDeviceManager *device_manager,
|
|
|
|
GdkDevice *device,
|
|
|
|
GdkWindow *window)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
window->devices_inside = g_list_remove (window->devices_inside, device);
|
|
|
|
g_hash_table_remove (window->device_cursor, device);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->device_events)
|
|
|
|
g_hash_table_remove (window->device_events, device);
|
2010-05-25 22:38:44 +00:00
|
|
|
}
|
|
|
|
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
static void
|
|
|
|
gdk_window_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GdkWindow *window = GDK_WINDOW (object);
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkDeviceManager *device_manager;
|
|
|
|
|
2010-08-29 00:08:47 +00:00
|
|
|
device_manager = gdk_display_get_device_manager (gdk_window_get_display (window));
|
2010-05-25 22:38:44 +00:00
|
|
|
g_signal_handlers_disconnect_by_func (device_manager, device_removed_cb, window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
if (!GDK_WINDOW_DESTROYED (window))
|
|
|
|
{
|
|
|
|
if (GDK_WINDOW_TYPE (window) != GDK_WINDOW_FOREIGN)
|
|
|
|
{
|
|
|
|
g_warning ("losing last reference to undestroyed window\n");
|
|
|
|
_gdk_window_destroy (window, FALSE);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
/* We use TRUE here, to keep us from actually calling
|
|
|
|
* XDestroyWindow() on the window
|
|
|
|
*/
|
|
|
|
_gdk_window_destroy (window, TRUE);
|
|
|
|
}
|
2000-03-28 01:24:44 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_drop_cairo_surface (window);
|
2010-09-09 00:13:33 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->impl)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
g_object_unref (window->impl);
|
|
|
|
window->impl = NULL;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->impl_window != window)
|
2009-01-23 19:08:39 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
g_object_unref (window->impl_window);
|
|
|
|
window->impl_window = NULL;
|
2009-01-23 19:08:39 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->shape)
|
|
|
|
cairo_region_destroy (window->shape);
|
2008-12-17 10:24:46 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->input_shape)
|
|
|
|
cairo_region_destroy (window->input_shape);
|
2008-12-17 10:24:46 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->cursor)
|
2010-12-20 02:23:44 +00:00
|
|
|
g_object_unref (window->cursor);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->device_cursor)
|
|
|
|
g_hash_table_destroy (window->device_cursor);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->device_events)
|
|
|
|
g_hash_table_destroy (window->device_events);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
2010-12-13 11:28:18 +00:00
|
|
|
if (window->source_event_masks)
|
|
|
|
g_hash_table_destroy (window->source_event_masks);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->devices_inside)
|
|
|
|
g_list_free (window->devices_inside);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
2006-05-31 03:34:04 +00:00
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2009-07-16 06:16:01 +00:00
|
|
|
static void
|
|
|
|
gdk_window_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GdkWindow *window = (GdkWindow *)object;
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_CURSOR:
|
2010-12-20 02:09:31 +00:00
|
|
|
gdk_window_set_cursor (window, g_value_get_object (value));
|
2009-07-16 06:16:01 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_window_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GdkWindow *window = (GdkWindow *) object;
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_CURSOR:
|
2010-12-20 02:09:31 +00:00
|
|
|
g_value_set_object (value, gdk_window_get_cursor (window));
|
2009-07-16 06:16:01 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
static gboolean
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_is_offscreen (GdkWindow *window)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2009-07-18 13:04:06 +00:00
|
|
|
return window->window_type == GDK_WINDOW_OFFSCREEN;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
static GdkWindow *
|
|
|
|
gdk_window_get_impl_window (GdkWindow *window)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2009-01-23 19:08:39 +00:00
|
|
|
return window->impl_window;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GdkWindow *
|
|
|
|
_gdk_window_get_impl_window (GdkWindow *window)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
return gdk_window_get_impl_window (window);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_has_impl (GdkWindow *window)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2009-01-23 19:08:39 +00:00
|
|
|
return window->impl_window == window;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2009-08-31 08:59:21 +00:00
|
|
|
static gboolean
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_is_toplevel (GdkWindow *window)
|
2009-08-31 08:59:21 +00:00
|
|
|
{
|
|
|
|
return
|
|
|
|
window->parent == NULL ||
|
|
|
|
window->parent->window_type == GDK_WINDOW_ROOT;
|
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
gboolean
|
|
|
|
_gdk_window_has_impl (GdkWindow *window)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
return gdk_window_has_impl (window);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_has_no_impl (GdkWindow *window)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2009-01-26 14:45:17 +00:00
|
|
|
return window->impl_window != window;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
remove_child_area (GdkWindow *private,
|
|
|
|
GdkWindow *until,
|
2008-12-17 10:24:46 +00:00
|
|
|
gboolean for_input,
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *child;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *child_region;
|
2008-07-18 13:03:42 +00:00
|
|
|
GdkRectangle r;
|
|
|
|
GList *l;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *shape;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
for (l = private->children; l; l = l->next)
|
|
|
|
{
|
|
|
|
child = l->data;
|
|
|
|
|
|
|
|
if (child == until)
|
|
|
|
break;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-07-19 20:36:43 +00:00
|
|
|
/* If region is empty already, no need to do
|
|
|
|
anything potentially costly */
|
2010-06-28 12:44:12 +00:00
|
|
|
if (cairo_region_is_empty (region))
|
2009-07-19 20:36:43 +00:00
|
|
|
break;
|
|
|
|
|
2008-12-08 18:22:20 +00:00
|
|
|
if (!GDK_WINDOW_IS_MAPPED (child) || child->input_only || child->composited)
|
2008-07-18 13:03:42 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Ignore offscreen children, as they don't draw in their parent and
|
|
|
|
* don't take part in the clipping */
|
|
|
|
if (gdk_window_is_offscreen (child))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
r.x = child->x;
|
|
|
|
r.y = child->y;
|
|
|
|
r.width = child->width;
|
|
|
|
r.height = child->height;
|
2008-12-16 19:09:20 +00:00
|
|
|
|
2009-07-19 20:35:25 +00:00
|
|
|
/* Bail early if child totally outside region */
|
2010-06-28 12:44:12 +00:00
|
|
|
if (cairo_region_contains_rectangle (region, &r) == CAIRO_REGION_OVERLAP_OUT)
|
2009-07-19 20:35:25 +00:00
|
|
|
continue;
|
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
child_region = cairo_region_create_rectangle (&r);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-16 19:09:20 +00:00
|
|
|
if (child->shape)
|
2009-07-07 14:51:11 +00:00
|
|
|
{
|
|
|
|
/* Adjust shape region to parent window coords */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_translate (child->shape, child->x, child->y);
|
|
|
|
cairo_region_intersect (child_region, child->shape);
|
|
|
|
cairo_region_translate (child->shape, -child->x, -child->y);
|
2009-07-07 14:51:11 +00:00
|
|
|
}
|
2008-12-16 19:09:20 +00:00
|
|
|
else if (private->window_type == GDK_WINDOW_FOREIGN)
|
|
|
|
{
|
2010-11-25 11:17:11 +00:00
|
|
|
shape = GDK_WINDOW_IMPL_GET_CLASS (child)->get_shape (child);
|
2008-12-16 19:09:20 +00:00
|
|
|
if (shape)
|
|
|
|
{
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_intersect (child_region, shape);
|
|
|
|
cairo_region_destroy (shape);
|
2008-12-16 19:09:20 +00:00
|
|
|
}
|
|
|
|
}
|
2008-12-17 10:24:46 +00:00
|
|
|
|
|
|
|
if (for_input)
|
|
|
|
{
|
|
|
|
if (child->input_shape)
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_intersect (child_region, child->input_shape);
|
2008-12-17 10:24:46 +00:00
|
|
|
else if (private->window_type == GDK_WINDOW_FOREIGN)
|
|
|
|
{
|
2010-11-25 11:17:11 +00:00
|
|
|
shape = GDK_WINDOW_IMPL_GET_CLASS (child)->get_input_shape (child);
|
2008-12-17 10:24:46 +00:00
|
|
|
if (shape)
|
|
|
|
{
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_intersect (child_region, shape);
|
|
|
|
cairo_region_destroy (shape);
|
2008-12-17 10:24:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (region, child_region);
|
|
|
|
cairo_region_destroy (child_region);
|
2008-12-16 19:09:20 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-05-26 18:53:48 +00:00
|
|
|
static GdkVisibilityState
|
2010-11-22 23:55:39 +00:00
|
|
|
effective_visibility (GdkWindow *window)
|
2009-05-26 18:53:48 +00:00
|
|
|
{
|
|
|
|
GdkVisibilityState native;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (!gdk_window_is_viewable (window))
|
2009-05-26 18:53:48 +00:00
|
|
|
return GDK_VISIBILITY_NOT_VIEWABLE;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
native = window->impl_window->native_visibility;
|
2009-05-26 18:53:48 +00:00
|
|
|
|
|
|
|
if (native == GDK_VISIBILITY_FULLY_OBSCURED ||
|
2010-11-22 23:55:39 +00:00
|
|
|
window->visibility == GDK_VISIBILITY_FULLY_OBSCURED)
|
2009-05-26 18:53:48 +00:00
|
|
|
return GDK_VISIBILITY_FULLY_OBSCURED;
|
|
|
|
else if (native == GDK_VISIBILITY_UNOBSCURED)
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->visibility;
|
2009-05-26 18:53:48 +00:00
|
|
|
else /* native PARTIAL, private partial or unobscured */
|
|
|
|
return GDK_VISIBILITY_PARTIAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_update_visibility (GdkWindow *window)
|
2009-05-26 18:53:48 +00:00
|
|
|
{
|
|
|
|
GdkVisibilityState new_visibility;
|
|
|
|
GdkEvent *event;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
new_visibility = effective_visibility (window);
|
2009-05-26 18:53:48 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (new_visibility != window->effective_visibility)
|
2009-05-26 18:53:48 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
window->effective_visibility = new_visibility;
|
2009-05-26 18:53:48 +00:00
|
|
|
|
|
|
|
if (new_visibility != GDK_VISIBILITY_NOT_VIEWABLE &&
|
2010-11-22 23:55:39 +00:00
|
|
|
window->event_mask & GDK_VISIBILITY_NOTIFY)
|
2009-05-26 18:53:48 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
event = _gdk_make_event (window, GDK_VISIBILITY_NOTIFY,
|
2009-05-26 18:53:48 +00:00
|
|
|
NULL, FALSE);
|
|
|
|
event->visibility.state = new_visibility;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_update_visibility_recursively (GdkWindow *window,
|
|
|
|
GdkWindow *only_for_impl)
|
2009-05-26 18:53:48 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *child;
|
2009-05-26 18:53:48 +00:00
|
|
|
GList *l;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_update_visibility (window);
|
|
|
|
for (l = window->children; l != NULL; l = l->next)
|
2009-05-26 18:53:48 +00:00
|
|
|
{
|
|
|
|
child = l->data;
|
|
|
|
if ((only_for_impl == NULL) ||
|
|
|
|
(only_for_impl == child->impl_window))
|
|
|
|
gdk_window_update_visibility_recursively (child, only_for_impl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-27 16:04:07 +00:00
|
|
|
static gboolean
|
2010-11-22 23:55:39 +00:00
|
|
|
should_apply_clip_as_shape (GdkWindow *window)
|
2009-08-27 16:04:07 +00:00
|
|
|
{
|
|
|
|
return
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_has_impl (window) &&
|
2009-08-27 16:04:07 +00:00
|
|
|
/* Not for offscreens */
|
2010-11-22 23:55:39 +00:00
|
|
|
!gdk_window_is_offscreen (window) &&
|
2009-08-27 16:04:07 +00:00
|
|
|
/* or for toplevels */
|
2010-11-22 23:55:39 +00:00
|
|
|
!gdk_window_is_toplevel (window) &&
|
2009-08-27 16:04:07 +00:00
|
|
|
/* or for foreign windows */
|
2010-11-22 23:55:39 +00:00
|
|
|
window->window_type != GDK_WINDOW_FOREIGN &&
|
2009-08-27 16:04:07 +00:00
|
|
|
/* or for the root window */
|
2010-11-22 23:55:39 +00:00
|
|
|
window->window_type != GDK_WINDOW_ROOT;
|
2009-08-27 16:04:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
apply_shape (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region)
|
2009-08-27 16:04:07 +00:00
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2009-08-27 16:04:07 +00:00
|
|
|
|
|
|
|
/* We trash whether we applied a shape so that
|
|
|
|
we can avoid unsetting it many times, which
|
|
|
|
could happen in e.g. apply_clip_as_shape as
|
|
|
|
windows get resized */
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2009-08-27 16:04:07 +00:00
|
|
|
if (region)
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class->shape_combine_region (window,
|
2009-08-27 16:04:07 +00:00
|
|
|
region, 0, 0);
|
2010-11-22 23:55:39 +00:00
|
|
|
else if (window->applied_shape)
|
|
|
|
impl_class->shape_combine_region (window,
|
2009-08-27 16:04:07 +00:00
|
|
|
NULL, 0, 0);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->applied_shape = region != NULL;
|
2009-08-27 16:04:07 +00:00
|
|
|
}
|
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
static gboolean
|
|
|
|
region_rect_equal (const cairo_region_t *region,
|
|
|
|
const GdkRectangle *rect)
|
|
|
|
{
|
|
|
|
GdkRectangle extents;
|
|
|
|
|
|
|
|
if (cairo_region_num_rectangles (region) != 1)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
cairo_region_get_extents (region, &extents);
|
|
|
|
|
|
|
|
return extents.x == rect->x &&
|
|
|
|
extents.y == rect->y &&
|
|
|
|
extents.width == rect->width &&
|
|
|
|
extents.height == rect->height;
|
|
|
|
}
|
|
|
|
|
2009-08-27 16:04:07 +00:00
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
apply_clip_as_shape (GdkWindow *window)
|
2009-08-27 16:04:07 +00:00
|
|
|
{
|
|
|
|
GdkRectangle r;
|
|
|
|
|
|
|
|
r.x = r.y = 0;
|
2010-11-22 23:55:39 +00:00
|
|
|
r.width = window->width;
|
|
|
|
r.height = window->height;
|
2009-08-27 16:04:07 +00:00
|
|
|
|
|
|
|
/* We only apply the clip region if would differ
|
|
|
|
from the actual clip region implied by the size
|
|
|
|
of the window. This is to avoid unneccessarily
|
|
|
|
adding meaningless shapes to all native subwindows */
|
2010-11-22 23:55:39 +00:00
|
|
|
if (!region_rect_equal (window->clip_region, &r))
|
|
|
|
apply_shape (window, window->clip_region);
|
2009-08-27 16:04:07 +00:00
|
|
|
else
|
2010-11-22 23:55:39 +00:00
|
|
|
apply_shape (window, NULL);
|
2009-08-27 16:04:07 +00:00
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions_internal (GdkWindow *private,
|
|
|
|
gboolean recalculate_clip,
|
|
|
|
gboolean recalculate_siblings,
|
|
|
|
gboolean recalculate_children)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
GdkRectangle r;
|
|
|
|
GList *l;
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *child;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *new_clip, *old_clip_region_with_children;
|
2008-07-18 13:03:42 +00:00
|
|
|
gboolean clip_region_changed;
|
|
|
|
gboolean abs_pos_changed;
|
|
|
|
int old_abs_x, old_abs_y;
|
|
|
|
|
|
|
|
old_abs_x = private->abs_x;
|
|
|
|
old_abs_y = private->abs_y;
|
2009-05-26 18:53:48 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Update absolute position */
|
|
|
|
if (gdk_window_has_impl (private))
|
|
|
|
{
|
|
|
|
/* Native window starts here */
|
|
|
|
private->abs_x = 0;
|
|
|
|
private->abs_y = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
private->abs_x = private->parent->abs_x + private->x;
|
|
|
|
private->abs_y = private->parent->abs_y + private->y;
|
|
|
|
}
|
|
|
|
|
|
|
|
abs_pos_changed =
|
|
|
|
private->abs_x != old_abs_x ||
|
|
|
|
private->abs_y != old_abs_y;
|
|
|
|
|
|
|
|
/* Update clip region based on:
|
|
|
|
* parent clip
|
|
|
|
* window size
|
|
|
|
* siblings in parents above window
|
|
|
|
*/
|
|
|
|
clip_region_changed = FALSE;
|
2009-07-20 21:15:34 +00:00
|
|
|
if (recalculate_clip)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2009-07-20 21:15:34 +00:00
|
|
|
if (private->viewable)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2009-07-20 21:15:34 +00:00
|
|
|
/* Calculate visible region (sans children) in parent window coords */
|
|
|
|
r.x = private->x;
|
|
|
|
r.y = private->y;
|
|
|
|
r.width = private->width;
|
|
|
|
r.height = private->height;
|
2010-06-28 12:44:12 +00:00
|
|
|
new_clip = cairo_region_create_rectangle (&r);
|
2009-07-20 21:15:34 +00:00
|
|
|
|
2009-08-31 08:59:21 +00:00
|
|
|
if (!gdk_window_is_toplevel (private))
|
2009-07-20 21:15:34 +00:00
|
|
|
{
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_intersect (new_clip, private->parent->clip_region);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-08-24 13:18:10 +00:00
|
|
|
/* Remove all overlapping children from parent.
|
|
|
|
* Unless we're all native, because then we don't need to take
|
|
|
|
* siblings into account since X does that clipping for us.
|
|
|
|
* This makes things like SWT that modify the raw X stacking
|
|
|
|
* order without GDKs knowledge work.
|
|
|
|
*/
|
|
|
|
if (!_gdk_native_windows)
|
|
|
|
remove_child_area (private->parent, private, FALSE, new_clip);
|
2009-07-20 21:15:34 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-07-20 21:15:34 +00:00
|
|
|
/* Convert from parent coords to window coords */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_translate (new_clip, -private->x, -private->y);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-07-20 21:15:34 +00:00
|
|
|
if (private->shape)
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_intersect (new_clip, private->shape);
|
2009-07-20 21:15:34 +00:00
|
|
|
}
|
|
|
|
else
|
2010-06-28 12:44:12 +00:00
|
|
|
new_clip = cairo_region_create ();
|
2008-12-16 19:09:20 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (private->clip_region == NULL ||
|
2010-06-28 12:44:12 +00:00
|
|
|
!cairo_region_equal (private->clip_region, new_clip))
|
2008-07-18 13:03:42 +00:00
|
|
|
clip_region_changed = TRUE;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (private->clip_region)
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (private->clip_region);
|
2008-07-18 13:03:42 +00:00
|
|
|
private->clip_region = new_clip;
|
|
|
|
|
2008-12-04 19:55:44 +00:00
|
|
|
old_clip_region_with_children = private->clip_region_with_children;
|
2010-06-28 12:44:12 +00:00
|
|
|
private->clip_region_with_children = cairo_region_copy (private->clip_region);
|
2009-07-18 13:04:06 +00:00
|
|
|
if (private->window_type != GDK_WINDOW_ROOT)
|
2009-06-25 14:59:18 +00:00
|
|
|
remove_child_area (private, NULL, FALSE, private->clip_region_with_children);
|
2008-12-04 19:55:44 +00:00
|
|
|
|
|
|
|
if (clip_region_changed ||
|
2010-06-28 12:44:12 +00:00
|
|
|
!cairo_region_equal (private->clip_region_with_children, old_clip_region_with_children))
|
2008-12-04 19:55:44 +00:00
|
|
|
private->clip_tag = new_region_tag ();
|
|
|
|
|
|
|
|
if (old_clip_region_with_children)
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (old_clip_region_with_children);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2009-05-26 18:53:48 +00:00
|
|
|
if (clip_region_changed)
|
|
|
|
{
|
|
|
|
GdkVisibilityState visibility;
|
|
|
|
gboolean fully_visible;
|
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
if (cairo_region_is_empty (private->clip_region))
|
2009-05-26 18:53:48 +00:00
|
|
|
visibility = GDK_VISIBILITY_FULLY_OBSCURED;
|
2009-08-30 15:14:40 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (private->shape)
|
|
|
|
{
|
2010-06-28 12:44:12 +00:00
|
|
|
fully_visible = cairo_region_equal (private->clip_region,
|
2009-08-30 15:14:40 +00:00
|
|
|
private->shape);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
r.x = 0;
|
|
|
|
r.y = 0;
|
|
|
|
r.width = private->width;
|
|
|
|
r.height = private->height;
|
2010-06-28 12:44:12 +00:00
|
|
|
fully_visible = region_rect_equal (private->clip_region, &r);
|
2009-08-30 15:14:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fully_visible)
|
|
|
|
visibility = GDK_VISIBILITY_UNOBSCURED;
|
|
|
|
else
|
|
|
|
visibility = GDK_VISIBILITY_PARTIAL;
|
2009-05-26 18:53:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (private->visibility != visibility)
|
|
|
|
{
|
|
|
|
private->visibility = visibility;
|
|
|
|
gdk_window_update_visibility (private);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-25 14:59:18 +00:00
|
|
|
/* Update all children, recursively (except for root, where children are not exact). */
|
|
|
|
if ((abs_pos_changed || clip_region_changed || recalculate_children) &&
|
2009-07-18 13:04:06 +00:00
|
|
|
private->window_type != GDK_WINDOW_ROOT)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
for (l = private->children; l; l = l->next)
|
|
|
|
{
|
|
|
|
child = l->data;
|
|
|
|
/* Only recalculate clip if the the clip region changed, otherwise
|
|
|
|
* there is no way the child clip region could change (its has not e.g. moved)
|
|
|
|
* Except if recalculate_children is set to force child updates
|
|
|
|
*/
|
2009-07-18 18:52:30 +00:00
|
|
|
recompute_visible_regions_internal (child,
|
|
|
|
recalculate_clip && (clip_region_changed || recalculate_children),
|
|
|
|
FALSE, FALSE);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (clip_region_changed &&
|
2009-08-27 16:04:07 +00:00
|
|
|
should_apply_clip_as_shape (private))
|
|
|
|
apply_clip_as_shape (private);
|
2008-12-17 10:24:46 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (recalculate_siblings &&
|
2009-08-31 08:59:21 +00:00
|
|
|
!gdk_window_is_toplevel (private))
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
/* If we moved a child window in parent or changed the stacking order, then we
|
|
|
|
* need to recompute the visible area of all the other children in the parent
|
|
|
|
*/
|
|
|
|
for (l = private->parent->children; l; l = l->next)
|
|
|
|
{
|
|
|
|
child = l->data;
|
|
|
|
|
|
|
|
if (child != private)
|
|
|
|
recompute_visible_regions_internal (child, TRUE, FALSE, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We also need to recompute the _with_children clip for the parent */
|
|
|
|
recompute_visible_regions_internal (private->parent, TRUE, FALSE, FALSE);
|
|
|
|
}
|
|
|
|
|
2010-10-05 13:21:40 +00:00
|
|
|
if (private->cairo_surface && gdk_window_has_impl (private))
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *iface = GDK_WINDOW_IMPL_GET_CLASS (private->impl);
|
2010-10-05 13:21:40 +00:00
|
|
|
|
2010-11-23 01:09:01 +00:00
|
|
|
private->cairo_surface = iface->resize_cairo_surface (private,
|
2010-10-05 13:21:40 +00:00
|
|
|
private->cairo_surface,
|
|
|
|
private->width,
|
|
|
|
private->height);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2010-10-05 13:21:40 +00:00
|
|
|
else if (private->cairo_surface)
|
|
|
|
gdk_window_drop_cairo_surface (private);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Call this when private has changed in one or more of these ways:
|
|
|
|
* size changed
|
|
|
|
* window moved
|
|
|
|
* new window added
|
|
|
|
* stacking order of window changed
|
|
|
|
* child deleted
|
|
|
|
*
|
|
|
|
* It will recalculate abs_x/y and the clip regions
|
|
|
|
*
|
|
|
|
* Unless the window didn't change stacking order or size/pos, pass in TRUE
|
|
|
|
* for recalculate_siblings. (Mostly used internally for the recursion)
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2008-07-18 13:03:42 +00:00
|
|
|
* If a child window was removed (and you can't use that child for
|
|
|
|
* recompute_visible_regions), pass in TRUE for recalculate_children on the parent
|
|
|
|
*/
|
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (GdkWindow *private,
|
2008-07-18 13:03:42 +00:00
|
|
|
gboolean recalculate_siblings,
|
|
|
|
gboolean recalculate_children)
|
|
|
|
{
|
|
|
|
recompute_visible_regions_internal (private,
|
|
|
|
TRUE,
|
|
|
|
recalculate_siblings,
|
|
|
|
recalculate_children);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_gdk_window_update_size (GdkWindow *window)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (window, TRUE, FALSE);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2009-01-19 12:07:02 +00:00
|
|
|
/* Find the native window that would be just above "child"
|
|
|
|
* in the native stacking order if "child" was a native window
|
|
|
|
* (it doesn't have to be native). If there is no such native
|
|
|
|
* window inside this native parent then NULL is returned.
|
|
|
|
* If child is NULL, find lowest native window in parent.
|
|
|
|
*/
|
2010-11-22 23:55:39 +00:00
|
|
|
static GdkWindow *
|
|
|
|
find_native_sibling_above_helper (GdkWindow *parent,
|
|
|
|
GdkWindow *child)
|
2009-01-19 12:07:02 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *w;
|
2009-01-19 12:07:02 +00:00
|
|
|
GList *l;
|
|
|
|
|
|
|
|
if (child)
|
|
|
|
{
|
|
|
|
l = g_list_find (parent->children, child);
|
|
|
|
g_assert (l != NULL); /* Better be a child of its parent... */
|
|
|
|
l = l->prev; /* Start looking at the one above the child */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
l = g_list_last (parent->children);
|
|
|
|
|
|
|
|
for (; l != NULL; l = l->prev)
|
|
|
|
{
|
|
|
|
w = l->data;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-19 12:07:02 +00:00
|
|
|
if (gdk_window_has_impl (w))
|
|
|
|
return w;
|
2009-01-20 22:58:22 +00:00
|
|
|
|
|
|
|
g_assert (parent != w);
|
|
|
|
w = find_native_sibling_above_helper (w, NULL);
|
2009-01-19 12:07:02 +00:00
|
|
|
if (w)
|
|
|
|
return w;
|
|
|
|
}
|
|
|
|
|
2009-01-20 22:58:22 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
static GdkWindow *
|
|
|
|
find_native_sibling_above (GdkWindow *parent,
|
|
|
|
GdkWindow *child)
|
2009-01-20 22:58:22 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *w;
|
2009-01-20 22:58:22 +00:00
|
|
|
|
|
|
|
w = find_native_sibling_above_helper (parent, child);
|
|
|
|
if (w)
|
|
|
|
return w;
|
|
|
|
|
2009-01-19 12:07:02 +00:00
|
|
|
if (gdk_window_has_impl (parent))
|
|
|
|
return NULL;
|
|
|
|
else
|
|
|
|
return find_native_sibling_above (parent->parent, parent);
|
|
|
|
}
|
|
|
|
|
2008-12-04 09:32:08 +00:00
|
|
|
static GdkEventMask
|
2010-11-22 23:55:39 +00:00
|
|
|
get_native_device_event_mask (GdkWindow *private,
|
|
|
|
GdkDevice *device)
|
2008-12-04 09:32:08 +00:00
|
|
|
{
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkEventMask event_mask;
|
|
|
|
|
|
|
|
if (device)
|
|
|
|
event_mask = GPOINTER_TO_INT (g_hash_table_lookup (private->device_events, device));
|
|
|
|
else
|
|
|
|
event_mask = private->event_mask;
|
|
|
|
|
2009-08-24 13:18:10 +00:00
|
|
|
if (_gdk_native_windows ||
|
|
|
|
private->window_type == GDK_WINDOW_ROOT ||
|
|
|
|
private->window_type == GDK_WINDOW_FOREIGN)
|
2010-05-25 22:38:44 +00:00
|
|
|
return event_mask;
|
2009-08-24 13:18:10 +00:00
|
|
|
else
|
2009-02-04 10:22:54 +00:00
|
|
|
{
|
2009-09-29 10:56:57 +00:00
|
|
|
GdkEventMask mask;
|
|
|
|
|
|
|
|
/* Do whatever the app asks to, since the app
|
|
|
|
* may be asking for weird things for native windows,
|
2009-12-02 10:09:37 +00:00
|
|
|
* but don't use motion hints as that may affect non-native
|
|
|
|
* child windows that don't want it. Also, we need to
|
|
|
|
* set all the app-specified masks since they will be picked
|
|
|
|
* up by any implicit grabs (i.e. if they were not set as
|
|
|
|
* native we would not get the events we need). */
|
|
|
|
mask = private->event_mask & ~GDK_POINTER_MOTION_HINT_MASK;
|
2009-09-29 10:56:57 +00:00
|
|
|
|
|
|
|
/* We need thse for all native windows so we can
|
|
|
|
emulate events on children: */
|
|
|
|
mask |=
|
2009-02-04 10:22:54 +00:00
|
|
|
GDK_EXPOSURE_MASK |
|
2009-05-26 18:53:48 +00:00
|
|
|
GDK_VISIBILITY_NOTIFY_MASK |
|
2009-09-29 10:56:57 +00:00
|
|
|
GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK;
|
|
|
|
|
|
|
|
/* Additionally we select for pointer and button events
|
|
|
|
* for toplevels as we need to get these to emulate
|
|
|
|
* them for non-native subwindows. Even though we don't
|
|
|
|
* select on them for all native windows we will get them
|
|
|
|
* as the events are propagated out to the first window
|
|
|
|
* that select for them.
|
|
|
|
* Not selecting for button press on all windows is an
|
|
|
|
* important thing, because in X only one client can do
|
|
|
|
* so, and we don't want to unexpectedly prevent another
|
|
|
|
* client from doing it.
|
2010-01-20 14:37:16 +00:00
|
|
|
*
|
|
|
|
* We also need to do the same if the app selects for button presses
|
|
|
|
* because then we will get implicit grabs for this window, and the
|
|
|
|
* event mask used for that grab is based on the rest of the mask
|
|
|
|
* for the window, but we might need more events than this window
|
|
|
|
* lists due to some non-native child window.
|
2009-09-29 10:56:57 +00:00
|
|
|
*/
|
2010-01-20 14:37:16 +00:00
|
|
|
if (gdk_window_is_toplevel (private) ||
|
|
|
|
mask & GDK_BUTTON_PRESS_MASK)
|
2009-09-29 10:56:57 +00:00
|
|
|
mask |=
|
|
|
|
GDK_POINTER_MOTION_MASK |
|
|
|
|
GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
|
|
|
|
GDK_SCROLL_MASK;
|
|
|
|
|
|
|
|
return mask;
|
2009-02-04 10:22:54 +00:00
|
|
|
}
|
2008-12-04 09:32:08 +00:00
|
|
|
}
|
|
|
|
|
2009-09-25 09:28:26 +00:00
|
|
|
static GdkEventMask
|
|
|
|
get_native_grab_event_mask (GdkEventMask grab_mask)
|
|
|
|
{
|
|
|
|
/* Similar to the above but for pointer events only */
|
|
|
|
return
|
|
|
|
GDK_POINTER_MOTION_MASK |
|
|
|
|
GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
|
|
|
|
GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK |
|
|
|
|
GDK_SCROLL_MASK |
|
|
|
|
(grab_mask &
|
2009-12-02 10:09:37 +00:00
|
|
|
~GDK_POINTER_MOTION_HINT_MASK);
|
2009-09-25 09:28:26 +00:00
|
|
|
}
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
static GdkEventMask
|
2010-11-22 23:55:39 +00:00
|
|
|
get_native_event_mask (GdkWindow *private)
|
2010-05-25 22:38:44 +00:00
|
|
|
{
|
|
|
|
return get_native_device_event_mask (private, NULL);
|
|
|
|
}
|
|
|
|
|
2009-06-24 18:56:05 +00:00
|
|
|
/* Puts the native window in the right order wrt the other native windows
|
2009-08-24 13:18:10 +00:00
|
|
|
* in the hierarchy, given the position it has in the client side data.
|
|
|
|
* This is useful if some operation changed the stacking order.
|
|
|
|
* This calls assumes the native window is now topmost in its native parent.
|
|
|
|
*/
|
2009-06-24 18:56:05 +00:00
|
|
|
static void
|
|
|
|
sync_native_window_stack_position (GdkWindow *window)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *above;
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2009-06-24 18:56:05 +00:00
|
|
|
GList listhead = {0};
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2009-06-24 18:56:05 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
above = find_native_sibling_above (window->parent, window);
|
2009-06-24 18:56:05 +00:00
|
|
|
if (above)
|
|
|
|
{
|
|
|
|
listhead.data = window;
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class->restack_under (above, &listhead);
|
2009-06-24 18:56:05 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_new:
|
2009-08-18 18:35:10 +00:00
|
|
|
* @parent: (allow-none): a #GdkWindow, or %NULL to create the window as a child of
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
* the default root window for the default display.
|
|
|
|
* @attributes: attributes of the new window
|
|
|
|
* @attributes_mask: mask indicating which fields in @attributes are valid
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
* Creates a new #GdkWindow using the attributes from
|
|
|
|
* @attributes. See #GdkWindowAttr and #GdkWindowAttributesType for
|
|
|
|
* more details. Note: to use this on displays other than the default
|
|
|
|
* display, @parent must be specified.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2009-08-18 18:35:10 +00:00
|
|
|
* Return value: (transfer none): the new #GdkWindow
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
**/
|
|
|
|
GdkWindow*
|
|
|
|
gdk_window_new (GdkWindow *parent,
|
|
|
|
GdkWindowAttr *attributes,
|
|
|
|
gint attributes_mask)
|
|
|
|
{
|
|
|
|
GdkWindow *window;
|
2008-07-18 13:03:42 +00:00
|
|
|
GdkScreen *screen;
|
2010-12-16 00:07:36 +00:00
|
|
|
GdkDisplay *display;
|
2008-12-08 11:19:10 +00:00
|
|
|
int x, y;
|
2008-07-18 13:03:42 +00:00
|
|
|
gboolean native;
|
|
|
|
GdkEventMask event_mask;
|
2008-12-03 21:00:56 +00:00
|
|
|
GdkWindow *real_parent;
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkDeviceManager *device_manager;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
g_return_val_if_fail (attributes != NULL, NULL);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (!parent)
|
|
|
|
{
|
|
|
|
GDK_NOTE (MULTIHEAD,
|
|
|
|
g_warning ("gdk_window_new(): no parent specified reverting to parent = default root window"));
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
screen = gdk_screen_get_default ();
|
|
|
|
parent = gdk_screen_get_root_window (screen);
|
|
|
|
}
|
|
|
|
else
|
2010-08-28 23:32:52 +00:00
|
|
|
screen = gdk_window_get_screen (parent);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (parent), NULL);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (parent))
|
2009-08-30 15:14:40 +00:00
|
|
|
{
|
|
|
|
g_warning ("gdk_window_new(): parent is destroyed\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-08-24 13:18:10 +00:00
|
|
|
if (attributes->window_type == GDK_WINDOW_OFFSCREEN &&
|
|
|
|
_gdk_native_windows)
|
|
|
|
{
|
|
|
|
g_warning ("Offscreen windows not supported with native-windows gdk");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2010-12-21 02:06:59 +00:00
|
|
|
display = gdk_screen_get_display (screen);
|
|
|
|
|
|
|
|
window = _gdk_display_create_window (display);
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Windows with a foreign parent are treated as if they are children
|
|
|
|
* of the root window, except for actual creation.
|
|
|
|
*/
|
2008-12-03 21:00:56 +00:00
|
|
|
real_parent = parent;
|
2008-07-18 13:03:42 +00:00
|
|
|
if (GDK_WINDOW_TYPE (parent) == GDK_WINDOW_FOREIGN)
|
|
|
|
parent = gdk_screen_get_root_window (screen);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->parent = parent;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->accept_focus = TRUE;
|
|
|
|
window->focus_on_map = TRUE;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
if (attributes_mask & GDK_WA_X)
|
|
|
|
x = attributes->x;
|
|
|
|
else
|
|
|
|
x = 0;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (attributes_mask & GDK_WA_Y)
|
|
|
|
y = attributes->y;
|
|
|
|
else
|
|
|
|
y = 0;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->x = x;
|
|
|
|
window->y = y;
|
|
|
|
window->width = (attributes->width > 1) ? (attributes->width) : (1);
|
|
|
|
window->height = (attributes->height > 1) ? (attributes->height) : (1);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
if (attributes->wclass == GDK_INPUT_ONLY)
|
|
|
|
{
|
|
|
|
/* Backwards compatiblity - we've always ignored
|
|
|
|
* attributes->window_type for input-only windows
|
|
|
|
* before
|
|
|
|
*/
|
|
|
|
if (GDK_WINDOW_TYPE (parent) == GDK_WINDOW_ROOT)
|
2010-11-22 23:55:39 +00:00
|
|
|
window->window_type = GDK_WINDOW_TEMP;
|
2008-07-18 13:03:42 +00:00
|
|
|
else
|
2010-11-22 23:55:39 +00:00
|
|
|
window->window_type = GDK_WINDOW_CHILD;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
else
|
2010-11-22 23:55:39 +00:00
|
|
|
window->window_type = attributes->window_type;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
/* Sanity checks */
|
2010-11-22 23:55:39 +00:00
|
|
|
switch (window->window_type)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
case GDK_WINDOW_TOPLEVEL:
|
|
|
|
case GDK_WINDOW_TEMP:
|
2009-02-18 11:57:12 +00:00
|
|
|
case GDK_WINDOW_OFFSCREEN:
|
2008-07-18 13:03:42 +00:00
|
|
|
if (GDK_WINDOW_TYPE (parent) != GDK_WINDOW_ROOT)
|
|
|
|
g_warning (G_STRLOC "Toplevel windows must be created as children of\n"
|
|
|
|
"of a window of type GDK_WINDOW_ROOT or GDK_WINDOW_FOREIGN");
|
|
|
|
case GDK_WINDOW_CHILD:
|
2009-02-18 11:57:12 +00:00
|
|
|
break;
|
2008-07-18 13:03:42 +00:00
|
|
|
break;
|
|
|
|
default:
|
2010-11-22 23:55:39 +00:00
|
|
|
g_warning (G_STRLOC "cannot make windows of type %d", window->window_type);
|
2008-07-18 13:03:42 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (attributes_mask & GDK_WA_VISUAL)
|
2010-11-22 23:55:39 +00:00
|
|
|
window->visual = attributes->visual;
|
2008-07-18 13:03:42 +00:00
|
|
|
else
|
2010-11-22 23:55:39 +00:00
|
|
|
window->visual = gdk_screen_get_system_visual (screen);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->event_mask = attributes->event_mask;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
if (attributes->wclass == GDK_INPUT_OUTPUT)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
window->input_only = FALSE;
|
|
|
|
window->depth = window->visual->depth;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-08-15 11:49:30 +00:00
|
|
|
/* XXX: Cache this somehow? */
|
2010-11-22 23:55:39 +00:00
|
|
|
window->background = cairo_pattern_create_rgb (0, 0, 0);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
window->depth = 0;
|
|
|
|
window->input_only = TRUE;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->parent)
|
|
|
|
window->parent->children = g_list_prepend (window->parent->children, window);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-12-20 02:23:44 +00:00
|
|
|
window->device_cursor = g_hash_table_new_full (NULL, NULL,
|
|
|
|
NULL, g_object_unref);
|
2010-10-14 16:01:51 +00:00
|
|
|
|
2009-08-24 13:18:10 +00:00
|
|
|
native = _gdk_native_windows; /* Default */
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->parent->window_type == GDK_WINDOW_ROOT)
|
2008-07-18 13:03:42 +00:00
|
|
|
native = TRUE; /* Always use native windows for toplevels */
|
2010-11-22 23:55:39 +00:00
|
|
|
else if (!window->input_only &&
|
2010-08-29 00:30:33 +00:00
|
|
|
(attributes_mask & GDK_WA_VISUAL &&
|
2010-11-22 23:55:39 +00:00
|
|
|
attributes->visual != gdk_window_get_visual (window->parent)))
|
2010-08-29 00:30:33 +00:00
|
|
|
native = TRUE; /* InputOutput window with different visual than parent, needs native window */
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_is_offscreen (window))
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-09-28 14:03:59 +00:00
|
|
|
_gdk_offscreen_window_new (window, attributes, attributes_mask);
|
2010-11-22 23:55:39 +00:00
|
|
|
window->impl_window = window;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
else if (native)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
event_mask = get_native_event_mask (window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Create the impl */
|
2010-12-16 00:07:36 +00:00
|
|
|
_gdk_display_create_window_impl (display, window, real_parent, screen, event_mask, attributes, attributes_mask);
|
2010-11-22 23:55:39 +00:00
|
|
|
window->impl_window = window;
|
2009-01-19 12:07:02 +00:00
|
|
|
|
|
|
|
/* This will put the native window topmost in the native parent, which may
|
|
|
|
* be wrong wrt other native windows in the non-native hierarchy, so restack */
|
2009-08-24 13:18:10 +00:00
|
|
|
if (!_gdk_window_has_impl (real_parent))
|
|
|
|
sync_native_window_stack_position (window);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
else
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
window->impl_window = g_object_ref (window->parent->impl_window);
|
|
|
|
window->impl = g_object_ref (window->impl_window->impl);
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (window, TRUE, FALSE);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-15 18:13:06 +00:00
|
|
|
gdk_window_set_cursor (window, ((attributes_mask & GDK_WA_CURSOR) ?
|
|
|
|
(attributes->cursor) :
|
|
|
|
NULL));
|
|
|
|
|
2010-08-29 00:08:47 +00:00
|
|
|
device_manager = gdk_display_get_device_manager (gdk_window_get_display (parent));
|
2010-05-25 22:38:44 +00:00
|
|
|
g_signal_connect (device_manager, "device-removed",
|
|
|
|
G_CALLBACK (device_removed_cb), window);
|
|
|
|
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
return window;
|
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
static gboolean
|
|
|
|
is_parent_of (GdkWindow *parent,
|
2009-06-01 10:04:36 +00:00
|
|
|
GdkWindow *child)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
GdkWindow *w;
|
|
|
|
|
|
|
|
w = child;
|
|
|
|
while (w != NULL)
|
|
|
|
{
|
|
|
|
if (w == parent)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
w = gdk_window_get_parent (w);
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
change_impl (GdkWindow *private,
|
|
|
|
GdkWindow *impl_window,
|
2010-11-24 13:36:45 +00:00
|
|
|
GdkWindowImpl *new)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
GList *l;
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *child;
|
2010-11-24 13:36:45 +00:00
|
|
|
GdkWindowImpl *old_impl;
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *old_impl_window;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
old_impl = private->impl;
|
2009-01-23 19:08:39 +00:00
|
|
|
old_impl_window = private->impl_window;
|
|
|
|
if (private != impl_window)
|
|
|
|
private->impl_window = g_object_ref (impl_window);
|
|
|
|
else
|
|
|
|
private->impl_window = private;
|
2008-12-19 13:44:51 +00:00
|
|
|
private->impl = g_object_ref (new);
|
2009-01-23 19:08:39 +00:00
|
|
|
if (old_impl_window != private)
|
|
|
|
g_object_unref (old_impl_window);
|
2008-12-19 13:44:51 +00:00
|
|
|
g_object_unref (old_impl);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
for (l = private->children; l != NULL; l = l->next)
|
|
|
|
{
|
|
|
|
child = l->data;
|
|
|
|
|
|
|
|
if (child->impl == old_impl)
|
2009-01-23 19:08:39 +00:00
|
|
|
change_impl (child, impl_window, new);
|
2008-12-18 21:09:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
reparent_to_impl (GdkWindow *private)
|
2008-12-18 21:09:25 +00:00
|
|
|
{
|
|
|
|
GList *l;
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *child;
|
2008-12-18 21:09:25 +00:00
|
|
|
gboolean show;
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2009-08-31 08:44:11 +00:00
|
|
|
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (private->impl);
|
2008-12-18 21:09:25 +00:00
|
|
|
|
|
|
|
/* Enumerate in reverse order so we get the right order for the native
|
|
|
|
windows (first in childrens list is topmost, and reparent places on top) */
|
|
|
|
for (l = g_list_last (private->children); l != NULL; l = l->prev)
|
|
|
|
{
|
|
|
|
child = l->data;
|
|
|
|
|
|
|
|
if (child->impl == private->impl)
|
|
|
|
reparent_to_impl (child);
|
2008-07-18 13:03:42 +00:00
|
|
|
else
|
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
show = impl_class->reparent ((GdkWindow *)child,
|
2009-08-31 08:44:11 +00:00
|
|
|
(GdkWindow *)private,
|
|
|
|
child->x, child->y);
|
2008-07-18 13:03:42 +00:00
|
|
|
if (show)
|
|
|
|
gdk_window_show_unraised ((GdkWindow *)child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-18 21:09:25 +00:00
|
|
|
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_reparent:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @new_parent: new parent to move @window into
|
|
|
|
* @x: X location inside the new parent
|
|
|
|
* @y: Y location inside the new parent
|
|
|
|
*
|
|
|
|
* Reparents @window into the given @new_parent. The window being
|
|
|
|
* reparented will be unmapped as a side effect.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_reparent (GdkWindow *window,
|
|
|
|
GdkWindow *new_parent,
|
|
|
|
gint x,
|
|
|
|
gint y)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *old_parent;
|
2009-07-01 08:23:29 +00:00
|
|
|
GdkScreen *screen;
|
2009-08-27 16:04:07 +00:00
|
|
|
gboolean show, was_mapped, applied_clip_as_shape;
|
2008-12-18 21:09:25 +00:00
|
|
|
gboolean do_reparent_to_impl;
|
2009-08-26 12:53:27 +00:00
|
|
|
GdkEventMask old_native_event_mask;
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
g_return_if_fail (new_parent == NULL || GDK_IS_WINDOW (new_parent));
|
|
|
|
g_return_if_fail (GDK_WINDOW_TYPE (window) != GDK_WINDOW_ROOT);
|
|
|
|
|
|
|
|
if (GDK_WINDOW_DESTROYED (window) ||
|
|
|
|
(new_parent && GDK_WINDOW_DESTROYED (new_parent)))
|
2008-07-18 13:03:42 +00:00
|
|
|
return;
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
|
2010-08-28 23:32:52 +00:00
|
|
|
screen = gdk_window_get_screen (window);
|
2008-07-18 13:03:42 +00:00
|
|
|
if (!new_parent)
|
2009-07-01 08:23:29 +00:00
|
|
|
new_parent = gdk_screen_get_root_window (screen);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* No input-output children of input-only windows */
|
2010-11-22 23:55:39 +00:00
|
|
|
if (new_parent->input_only && !window->input_only)
|
2008-07-18 13:03:42 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* Don't create loops in hierarchy */
|
|
|
|
if (is_parent_of (window, new_parent))
|
|
|
|
return;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-01-19 15:36:49 +00:00
|
|
|
/* This might be wrong in the new parent, e.g. for non-native surfaces.
|
|
|
|
To make sure we're ok, just wipe it. */
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_drop_cairo_surface (window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
|
|
|
old_parent = window->parent;
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
was_mapped = GDK_WINDOW_IS_MAPPED (window);
|
|
|
|
show = FALSE;
|
2008-12-04 11:56:26 +00:00
|
|
|
|
|
|
|
/* Reparenting to toplevel. Ensure we have a native window so this can work */
|
2010-11-22 23:55:39 +00:00
|
|
|
if (new_parent->window_type == GDK_WINDOW_ROOT ||
|
|
|
|
new_parent->window_type == GDK_WINDOW_FOREIGN)
|
2009-06-01 09:57:59 +00:00
|
|
|
gdk_window_ensure_native (window);
|
2008-12-18 21:09:25 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
applied_clip_as_shape = should_apply_clip_as_shape (window);
|
2009-08-27 16:04:07 +00:00
|
|
|
|
2009-08-26 12:53:27 +00:00
|
|
|
old_native_event_mask = 0;
|
2008-12-18 21:09:25 +00:00
|
|
|
do_reparent_to_impl = FALSE;
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window))
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
old_native_event_mask = get_native_event_mask (window);
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Native window */
|
2010-11-22 19:42:00 +00:00
|
|
|
show = impl_class->reparent (window, new_parent, x, y);
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
else
|
|
|
|
{
|
2008-12-04 11:56:26 +00:00
|
|
|
/* This shouldn't happen, as we created a native in this case, check anyway to see if that ever fails */
|
2010-11-22 23:55:39 +00:00
|
|
|
g_assert (new_parent->window_type != GDK_WINDOW_ROOT &&
|
|
|
|
new_parent->window_type != GDK_WINDOW_FOREIGN);
|
2008-06-27 14:27:44 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
show = was_mapped;
|
|
|
|
gdk_window_hide (window);
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
|
2008-12-18 21:09:25 +00:00
|
|
|
do_reparent_to_impl = TRUE;
|
2010-11-22 23:55:39 +00:00
|
|
|
change_impl (window,
|
|
|
|
new_parent->impl_window,
|
|
|
|
new_parent->impl);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2004-03-13 18:27:56 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* From here on, we treat parents of type GDK_WINDOW_FOREIGN like
|
|
|
|
* the root window
|
|
|
|
*/
|
|
|
|
if (GDK_WINDOW_TYPE (new_parent) == GDK_WINDOW_FOREIGN)
|
2004-03-13 18:27:56 +00:00
|
|
|
{
|
2009-07-01 08:23:29 +00:00
|
|
|
new_parent = gdk_screen_get_root_window (screen);
|
2004-03-13 18:27:56 +00:00
|
|
|
}
|
|
|
|
|
2009-02-05 16:01:21 +00:00
|
|
|
if (old_parent)
|
|
|
|
old_parent->children = g_list_remove (old_parent->children, window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->parent = new_parent;
|
|
|
|
window->x = x;
|
|
|
|
window->y = y;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
new_parent->children = g_list_prepend (new_parent->children, window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Switch the window type as appropriate */
|
|
|
|
|
|
|
|
switch (GDK_WINDOW_TYPE (new_parent))
|
|
|
|
{
|
|
|
|
case GDK_WINDOW_ROOT:
|
|
|
|
case GDK_WINDOW_FOREIGN:
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->toplevel_window_type != -1)
|
|
|
|
GDK_WINDOW_TYPE (window) = window->toplevel_window_type;
|
2008-07-18 13:03:42 +00:00
|
|
|
else if (GDK_WINDOW_TYPE (window) == GDK_WINDOW_CHILD)
|
|
|
|
GDK_WINDOW_TYPE (window) = GDK_WINDOW_TOPLEVEL;
|
|
|
|
break;
|
|
|
|
case GDK_WINDOW_OFFSCREEN:
|
|
|
|
case GDK_WINDOW_TOPLEVEL:
|
|
|
|
case GDK_WINDOW_CHILD:
|
|
|
|
case GDK_WINDOW_TEMP:
|
2008-12-04 20:57:43 +00:00
|
|
|
if (GDK_WINDOW_TYPE (window) != GDK_WINDOW_CHILD && \
|
|
|
|
GDK_WINDOW_TYPE (window) != GDK_WINDOW_FOREIGN)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
/* Save the original window type so we can restore it if the
|
|
|
|
* window is reparented back to be a toplevel
|
|
|
|
*/
|
2010-11-22 23:55:39 +00:00
|
|
|
window->toplevel_window_type = GDK_WINDOW_TYPE (window);
|
2008-07-18 13:03:42 +00:00
|
|
|
GDK_WINDOW_TYPE (window) = GDK_WINDOW_CHILD;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-04 09:32:08 +00:00
|
|
|
/* We might have changed window type for a native windows, so we
|
|
|
|
need to change the event mask too. */
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window))
|
2009-08-26 12:53:27 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkEventMask native_event_mask = get_native_event_mask (window);
|
2009-08-26 12:53:27 +00:00
|
|
|
|
|
|
|
if (native_event_mask != old_native_event_mask)
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->set_events (window, native_event_mask);
|
2009-08-26 12:53:27 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-07-18 18:29:50 +00:00
|
|
|
_gdk_window_update_viewable (window);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (window, TRUE, FALSE);
|
2008-07-18 13:03:42 +00:00
|
|
|
if (old_parent && GDK_WINDOW_TYPE (old_parent) != GDK_WINDOW_ROOT)
|
|
|
|
recompute_visible_regions (old_parent, FALSE, TRUE);
|
2008-12-18 21:09:25 +00:00
|
|
|
|
2009-08-27 16:04:07 +00:00
|
|
|
/* We used to apply the clip as the shape, but no more.
|
|
|
|
Reset this to the real shape */
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window) &&
|
2009-08-27 16:04:07 +00:00
|
|
|
applied_clip_as_shape &&
|
2010-11-22 23:55:39 +00:00
|
|
|
!should_apply_clip_as_shape (window))
|
|
|
|
apply_shape (window, window->shape);
|
2009-08-27 16:04:07 +00:00
|
|
|
|
2008-12-18 21:09:25 +00:00
|
|
|
if (do_reparent_to_impl)
|
2010-11-22 23:55:39 +00:00
|
|
|
reparent_to_impl (window);
|
2009-01-19 13:56:30 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* The reparent will have put the native window topmost in the native parent,
|
|
|
|
* which may be wrong wrt other native windows in the non-native hierarchy,
|
|
|
|
* so restack */
|
2010-11-22 23:55:39 +00:00
|
|
|
if (!gdk_window_has_impl (new_parent))
|
2009-08-24 13:18:10 +00:00
|
|
|
sync_native_window_stack_position (window);
|
2009-01-19 13:56:30 +00:00
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (show)
|
|
|
|
gdk_window_show_unraised (window);
|
|
|
|
else
|
2009-06-18 18:58:13 +00:00
|
|
|
_gdk_synthesize_crossing_events_for_geometry_change (window);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-06-01 09:57:59 +00:00
|
|
|
* gdk_window_ensure_native:
|
2008-07-18 13:03:42 +00:00
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
2009-06-01 09:57:59 +00:00
|
|
|
* Tries to ensure that there is a window-system native window for this
|
|
|
|
* GdkWindow. This may fail in some situations, returning %FALSE.
|
2008-07-18 13:03:42 +00:00
|
|
|
*
|
|
|
|
* Offscreen window and children of them can never have native windows.
|
2009-06-01 09:57:59 +00:00
|
|
|
*
|
2008-07-18 13:03:42 +00:00
|
|
|
* Some backends may not support native child windows.
|
2009-06-01 09:57:59 +00:00
|
|
|
*
|
|
|
|
* Returns: %TRUE if the window has a native window, %FALSE otherwise
|
|
|
|
*
|
|
|
|
* Since: 2.18
|
2009-07-03 19:17:26 +00:00
|
|
|
*/
|
2009-06-01 09:57:59 +00:00
|
|
|
gboolean
|
|
|
|
gdk_window_ensure_native (GdkWindow *window)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *impl_window;
|
2010-11-24 13:36:45 +00:00
|
|
|
GdkWindowImpl *new_impl, *old_impl;
|
2010-12-16 00:07:36 +00:00
|
|
|
GdkDisplay *display;
|
2008-07-18 13:03:42 +00:00
|
|
|
GdkScreen *screen;
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *above;
|
2009-01-19 12:07:02 +00:00
|
|
|
GList listhead;
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-06-01 12:07:36 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2008-12-03 21:00:56 +00:00
|
|
|
if (GDK_WINDOW_TYPE (window) == GDK_WINDOW_ROOT ||
|
|
|
|
GDK_WINDOW_DESTROYED (window))
|
2009-06-01 09:57:59 +00:00
|
|
|
return FALSE;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_window = gdk_window_get_impl_window (window);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-04-15 11:08:47 +00:00
|
|
|
if (gdk_window_is_offscreen (impl_window))
|
2009-06-01 09:57:59 +00:00
|
|
|
return FALSE; /* native in offscreens not supported */
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (impl_window == window)
|
2009-06-01 09:57:59 +00:00
|
|
|
/* Already has an impl, and its not offscreen . */
|
|
|
|
return TRUE;
|
2008-12-18 20:30:56 +00:00
|
|
|
|
2009-06-01 09:57:59 +00:00
|
|
|
/* Need to create a native window */
|
2009-01-19 12:07:02 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_drop_cairo_surface (window);
|
2010-01-19 15:37:42 +00:00
|
|
|
|
2010-08-28 23:32:52 +00:00
|
|
|
screen = gdk_window_get_screen (window);
|
2010-12-16 00:07:36 +00:00
|
|
|
display = gdk_screen_get_display (screen);
|
2008-12-17 10:24:46 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
old_impl = window->impl;
|
2010-12-16 00:07:36 +00:00
|
|
|
_gdk_display_create_window_impl (display,
|
|
|
|
window, window->parent,
|
|
|
|
screen,
|
|
|
|
get_native_event_mask (window),
|
|
|
|
NULL, 0);
|
2010-11-22 23:55:39 +00:00
|
|
|
new_impl = window->impl;
|
2008-12-19 09:38:47 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->impl = old_impl;
|
|
|
|
change_impl (window, window, new_impl);
|
2008-12-18 13:59:54 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2009-08-31 08:44:11 +00:00
|
|
|
|
2009-06-01 09:57:59 +00:00
|
|
|
/* Native window creation will put the native window topmost in the
|
2009-08-24 13:18:10 +00:00
|
|
|
* native parent, which may be wrong wrt the position of the previous
|
|
|
|
* non-native window wrt to the other non-native children, so correct this.
|
|
|
|
*/
|
2010-11-22 23:55:39 +00:00
|
|
|
above = find_native_sibling_above (window->parent, window);
|
2009-06-01 09:57:59 +00:00
|
|
|
if (above)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2009-06-01 09:57:59 +00:00
|
|
|
listhead.data = window;
|
|
|
|
listhead.prev = NULL;
|
|
|
|
listhead.next = NULL;
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->restack_under ((GdkWindow *)above, &listhead);
|
2009-06-01 09:57:59 +00:00
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (window, FALSE, FALSE);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-06-01 09:57:59 +00:00
|
|
|
/* The shape may not have been set, as the clip region doesn't actually
|
|
|
|
change, so do it here manually */
|
2010-11-22 23:55:39 +00:00
|
|
|
if (should_apply_clip_as_shape (window))
|
|
|
|
apply_clip_as_shape (window);
|
2008-12-04 11:57:35 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
reparent_to_impl (window);
|
2008-12-04 11:57:35 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (!window->input_only)
|
2010-12-10 17:54:43 +00:00
|
|
|
impl_class->set_background (window, window->background);
|
2009-06-01 09:57:59 +00:00
|
|
|
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->input_shape_combine_region (window,
|
2010-12-10 17:54:43 +00:00
|
|
|
window->input_shape,
|
|
|
|
0, 0);
|
2009-06-01 09:57:59 +00:00
|
|
|
|
|
|
|
if (gdk_window_is_viewable (window))
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->show (window, FALSE);
|
2009-06-01 12:07:36 +00:00
|
|
|
|
|
|
|
return TRUE;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2010-12-17 13:03:01 +00:00
|
|
|
/**
|
|
|
|
* _gdk_event_filter_unref:
|
|
|
|
* @window: A #GdkWindow, or %NULL to be the global window
|
|
|
|
* @filter: A window filter
|
|
|
|
*
|
|
|
|
* Release a reference to @filter. Note this function may
|
|
|
|
* mutate the list storage, so you need to handle this
|
|
|
|
* if iterating over a list of filters.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
_gdk_event_filter_unref (GdkWindow *window,
|
|
|
|
GdkEventFilter *filter)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-12-17 13:03:01 +00:00
|
|
|
GList **filters;
|
|
|
|
GList *tmp_list;
|
|
|
|
|
|
|
|
if (window == NULL)
|
|
|
|
filters = &_gdk_default_filters;
|
|
|
|
else
|
|
|
|
filters = &window->filters;
|
|
|
|
|
2010-12-17 20:36:51 +00:00
|
|
|
tmp_list = *filters;
|
|
|
|
while (tmp_list)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-12-17 13:03:01 +00:00
|
|
|
GdkEventFilter *iter_filter = tmp_list->data;
|
|
|
|
GList *node;
|
|
|
|
|
2010-12-17 20:36:51 +00:00
|
|
|
node = tmp_list;
|
|
|
|
tmp_list = tmp_list->next;
|
|
|
|
|
2010-12-17 13:03:01 +00:00
|
|
|
if (iter_filter != filter)
|
|
|
|
continue;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-12-17 13:03:01 +00:00
|
|
|
g_assert (iter_filter->ref_count > 0);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-12-17 13:03:01 +00:00
|
|
|
filter->ref_count--;
|
|
|
|
if (filter->ref_count != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
*filters = g_list_remove_link (*filters, node);
|
|
|
|
g_free (filter);
|
|
|
|
g_list_free_1 (node);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-17 13:03:01 +00:00
|
|
|
static void
|
|
|
|
window_remove_filters (GdkWindow *window)
|
|
|
|
{
|
|
|
|
while (window->filters)
|
|
|
|
_gdk_event_filter_unref (window, window->filters->data);
|
|
|
|
}
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
static void
|
|
|
|
update_pointer_info_foreach (GdkDisplay *display,
|
|
|
|
GdkDevice *device,
|
|
|
|
GdkPointerWindowInfo *pointer_info,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GdkWindow *window = user_data;
|
|
|
|
|
|
|
|
if (pointer_info->toplevel_under_pointer == window)
|
|
|
|
{
|
|
|
|
g_object_unref (pointer_info->toplevel_under_pointer);
|
|
|
|
pointer_info->toplevel_under_pointer = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
window_remove_from_pointer_info (GdkWindow *window,
|
|
|
|
GdkDisplay *display)
|
|
|
|
{
|
|
|
|
_gdk_display_pointer_info_foreach (display,
|
|
|
|
update_pointer_info_foreach,
|
|
|
|
window);
|
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/**
|
|
|
|
* _gdk_window_destroy_hierarchy:
|
2000-05-15 16:09:53 +00:00
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @recursing: If TRUE, then this is being called because a parent
|
2009-06-01 10:04:36 +00:00
|
|
|
* was destroyed.
|
2009-02-05 08:55:39 +00:00
|
|
|
* @recursing_native: If TRUE, then this is being called because a native parent
|
2009-06-01 10:04:36 +00:00
|
|
|
* was destroyed. This generally means that the call to the
|
2002-01-13 20:13:34 +00:00
|
|
|
* windowing system to destroy the window can be omitted, since
|
|
|
|
* it will be destroyed as a result of the parent being destroyed.
|
2009-06-01 10:04:36 +00:00
|
|
|
* Unless @foreign_destroy.
|
|
|
|
* @foreign_destroy: If TRUE, the window or a parent was destroyed by some
|
|
|
|
* external agency. The window has already been destroyed and no
|
2002-01-13 20:13:34 +00:00
|
|
|
* windowing system calls should be made. (This may never happen
|
|
|
|
* for some windowing systems.)
|
2000-05-15 16:09:53 +00:00
|
|
|
*
|
2002-01-13 20:13:34 +00:00
|
|
|
* Internal function to destroy a window. Like gdk_window_destroy(),
|
|
|
|
* but does not drop the reference count created by gdk_window_new().
|
2000-05-15 16:09:53 +00:00
|
|
|
**/
|
|
|
|
static void
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
_gdk_window_destroy_hierarchy (GdkWindow *window,
|
2000-05-15 16:09:53 +00:00
|
|
|
gboolean recursing,
|
2009-02-05 08:55:39 +00:00
|
|
|
gboolean recursing_native,
|
2000-05-15 16:09:53 +00:00
|
|
|
gboolean foreign_destroy)
|
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2000-05-15 16:09:53 +00:00
|
|
|
GdkWindow *temp_window;
|
2005-11-10 12:09:42 +00:00
|
|
|
GdkScreen *screen;
|
2008-12-15 09:24:54 +00:00
|
|
|
GdkDisplay *display;
|
2000-05-15 16:09:53 +00:00
|
|
|
GList *children;
|
|
|
|
GList *tmp;
|
2008-10-21 21:42:39 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2004-03-13 18:27:56 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-08-29 00:08:47 +00:00
|
|
|
display = gdk_window_get_display (window);
|
2010-08-28 23:32:52 +00:00
|
|
|
screen = gdk_window_get_screen (window);
|
2009-02-28 05:24:07 +00:00
|
|
|
temp_window = g_object_get_qdata (G_OBJECT (screen), quark_pointer_window);
|
|
|
|
if (temp_window == window)
|
|
|
|
g_object_set_qdata (G_OBJECT (screen), quark_pointer_window, NULL);
|
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
switch (window->window_type)
|
2000-05-15 16:09:53 +00:00
|
|
|
{
|
2005-11-10 12:09:42 +00:00
|
|
|
case GDK_WINDOW_ROOT:
|
|
|
|
if (!screen->closed)
|
|
|
|
{
|
|
|
|
g_error ("attempted to destroy root window");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* else fall thru */
|
2000-05-15 16:09:53 +00:00
|
|
|
case GDK_WINDOW_TOPLEVEL:
|
|
|
|
case GDK_WINDOW_CHILD:
|
|
|
|
case GDK_WINDOW_TEMP:
|
|
|
|
case GDK_WINDOW_FOREIGN:
|
2008-07-18 13:03:42 +00:00
|
|
|
case GDK_WINDOW_OFFSCREEN:
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->window_type == GDK_WINDOW_FOREIGN && !foreign_destroy)
|
2004-03-13 18:27:56 +00:00
|
|
|
{
|
|
|
|
/* Logically, it probably makes more sense to send
|
|
|
|
* a "destroy yourself" message to the foreign window
|
2008-12-13 05:20:10 +00:00
|
|
|
* whether or not it's in our hierarchy; but for historical
|
2004-03-13 18:27:56 +00:00
|
|
|
* reasons, we only send "destroy yourself" messages to
|
2008-12-13 05:20:10 +00:00
|
|
|
* foreign windows in our hierarchy.
|
2004-03-13 18:27:56 +00:00
|
|
|
*/
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->parent)
|
2010-12-10 19:06:13 +00:00
|
|
|
{
|
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
|
|
|
|
|
|
|
if (gdk_window_has_impl (window))
|
|
|
|
impl_class->destroy_foreign (window);
|
|
|
|
}
|
2004-03-13 18:27:56 +00:00
|
|
|
|
|
|
|
/* Also for historical reasons, we remove any filters
|
|
|
|
* on a foreign window when it or a parent is destroyed;
|
|
|
|
* this likely causes problems if two separate portions
|
|
|
|
* of code are maintaining filter lists on a foreign window.
|
|
|
|
*/
|
|
|
|
window_remove_filters (window);
|
|
|
|
}
|
|
|
|
else
|
2000-05-15 16:09:53 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->parent)
|
2000-05-15 16:09:53 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->parent->children)
|
|
|
|
window->parent->children = g_list_remove (window->parent->children, window);
|
2008-12-18 13:29:28 +00:00
|
|
|
|
|
|
|
if (!recursing &&
|
|
|
|
GDK_WINDOW_IS_MAPPED (window))
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (window, TRUE, FALSE);
|
|
|
|
gdk_window_invalidate_in_parent (window);
|
2008-12-18 13:29:28 +00:00
|
|
|
}
|
2000-05-15 16:09:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gdk_window_free_paint_stack (window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->background)
|
2010-08-15 21:50:02 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_pattern_destroy (window->background);
|
|
|
|
window->background = NULL;
|
2010-08-15 21:50:02 +00:00
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->window_type == GDK_WINDOW_FOREIGN)
|
|
|
|
g_assert (window->children == NULL);
|
2001-10-24 14:15:50 +00:00
|
|
|
else
|
2000-05-15 16:09:53 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
children = tmp = window->children;
|
|
|
|
window->children = NULL;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2000-05-15 16:09:53 +00:00
|
|
|
while (tmp)
|
|
|
|
{
|
|
|
|
temp_window = tmp->data;
|
|
|
|
tmp = tmp->next;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (temp_window)
|
2002-01-13 20:13:34 +00:00
|
|
|
_gdk_window_destroy_hierarchy (temp_window,
|
2009-06-01 10:04:36 +00:00
|
|
|
TRUE,
|
2010-11-22 23:55:39 +00:00
|
|
|
recursing_native || gdk_window_has_impl (window),
|
2009-02-05 08:55:39 +00:00
|
|
|
foreign_destroy);
|
2000-05-15 16:09:53 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2000-05-15 16:09:53 +00:00
|
|
|
g_list_free (children);
|
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-06-01 10:04:36 +00:00
|
|
|
_gdk_window_clear_update_area (window);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_drop_cairo_surface (window);
|
2009-05-29 14:39:12 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2009-08-31 08:44:11 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window))
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->destroy (window, recursing_native,
|
2009-08-31 08:44:11 +00:00
|
|
|
foreign_destroy);
|
2008-07-18 13:03:42 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/* hide to make sure we repaint and break grabs */
|
|
|
|
gdk_window_hide (window);
|
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->state |= GDK_WINDOW_STATE_WITHDRAWN;
|
|
|
|
window->parent = NULL;
|
|
|
|
window->destroyed = TRUE;
|
2001-04-18 18:28:19 +00:00
|
|
|
|
2004-03-13 18:27:56 +00:00
|
|
|
window_remove_filters (window);
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
window_remove_from_pointer_info (window, display);
|
2009-08-13 14:48:07 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->clip_region)
|
2009-08-13 14:48:07 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_destroy (window->clip_region);
|
|
|
|
window->clip_region = NULL;
|
2009-08-13 14:48:07 +00:00
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->clip_region_with_children)
|
2009-08-13 14:48:07 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_destroy (window->clip_region_with_children);
|
|
|
|
window->clip_region_with_children = NULL;
|
2009-08-13 14:48:07 +00:00
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->outstanding_moves)
|
2009-08-13 14:48:07 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
g_list_foreach (window->outstanding_moves, (GFunc)gdk_window_region_move_free, NULL);
|
|
|
|
g_list_free (window->outstanding_moves);
|
|
|
|
window->outstanding_moves = NULL;
|
2009-08-13 14:48:07 +00:00
|
|
|
}
|
2000-05-15 16:09:53 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* _gdk_window_destroy:
|
|
|
|
* @window: a #GdkWindow
|
2002-01-13 20:13:34 +00:00
|
|
|
* @foreign_destroy: If TRUE, the window or a parent was destroyed by some
|
|
|
|
* external agency. The window has already been destroyed and no
|
|
|
|
* windowing system calls should be made. (This may never happen
|
|
|
|
* for some windowing systems.)
|
2000-05-15 16:09:53 +00:00
|
|
|
*
|
2002-01-13 20:13:34 +00:00
|
|
|
* Internal function to destroy a window. Like gdk_window_destroy(),
|
|
|
|
* but does not drop the reference count created by gdk_window_new().
|
2000-05-15 16:09:53 +00:00
|
|
|
**/
|
|
|
|
void
|
|
|
|
_gdk_window_destroy (GdkWindow *window,
|
|
|
|
gboolean foreign_destroy)
|
|
|
|
{
|
2009-02-05 08:55:39 +00:00
|
|
|
_gdk_window_destroy_hierarchy (window, FALSE, FALSE, foreign_destroy);
|
2000-05-15 16:09:53 +00:00
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_destroy:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
Documentation fixes.
Sun Oct 13 18:50:14 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* gtkmenu.c, gtkmenu.sgml, gtkitemfactory.c, gdkwindow.c,
gtkwindow.c, gtkpaned.sgml, gtkdialog.c, gtkbox.h, gtkbutton.sgml,
gtktreemodel.sgml,gtktable.sgml, gtktable.c:
Documentation fixes.
#85719, #90759, #95169, Owen Taylor;
#89221, Yao Zhang, Matthias Clasen;
#95592, Joost Faassen;
#92637, Vitaly Tishkov;
#94616, Ben Martin;
#94772, sbaillie@bigpond.net.au;
2002-10-13 17:17:14 +00:00
|
|
|
* Destroys the window system resources associated with @window and decrements @window's
|
|
|
|
* reference count. The window system resources for all children of @window are also
|
|
|
|
* destroyed, but the children's reference counts are not decremented.
|
|
|
|
*
|
|
|
|
* Note that a window will not be destroyed automatically when its reference count
|
|
|
|
* reaches zero. You must call this function yourself before that happens.
|
2001-10-03 18:19:48 +00:00
|
|
|
*
|
|
|
|
**/
|
2000-05-15 16:09:53 +00:00
|
|
|
void
|
|
|
|
gdk_window_destroy (GdkWindow *window)
|
|
|
|
{
|
2009-02-05 08:55:39 +00:00
|
|
|
_gdk_window_destroy_hierarchy (window, FALSE, FALSE, FALSE);
|
2002-09-25 07:23:55 +00:00
|
|
|
g_object_unref (window);
|
2000-05-15 16:09:53 +00:00
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_set_user_data:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @user_data: user data
|
|
|
|
*
|
|
|
|
* For most purposes this function is deprecated in favor of
|
|
|
|
* g_object_set_data(). However, for historical reasons GTK+ stores
|
|
|
|
* the #GtkWidget that owns a #GdkWindow as user data on the
|
|
|
|
* #GdkWindow. So, custom widget implementations should use
|
|
|
|
* this function for that. If GTK+ receives an event for a #GdkWindow,
|
|
|
|
* and the user data for the window is non-%NULL, GTK+ will assume the
|
|
|
|
* user data is a #GtkWidget, and forward the event to that widget.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
**/
|
1997-11-24 22:37:52 +00:00
|
|
|
void
|
1999-11-08 20:14:59 +00:00
|
|
|
gdk_window_set_user_data (GdkWindow *window,
|
|
|
|
gpointer user_data)
|
1998-01-01 20:38:21 +00:00
|
|
|
{
|
2008-10-21 21:42:39 +00:00
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->user_data = user_data;
|
1998-01-01 20:38:21 +00:00
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_user_data:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @data: return location for user data
|
|
|
|
*
|
|
|
|
* Retrieves the user data for @window, which is normally the widget
|
|
|
|
* that @window belongs to. See gdk_window_set_user_data().
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
**/
|
1997-11-24 22:37:52 +00:00
|
|
|
void
|
1999-11-08 20:14:59 +00:00
|
|
|
gdk_window_get_user_data (GdkWindow *window,
|
|
|
|
gpointer *data)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
2008-10-21 21:42:39 +00:00
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
*data = window->user_data;
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_window_type:
|
|
|
|
* @window: a #GdkWindow
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
* Gets the type of the window. See #GdkWindowType.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
* Return value: type of window
|
|
|
|
**/
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
GdkWindowType
|
|
|
|
gdk_window_get_window_type (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), (GdkWindowType) -1);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
return GDK_WINDOW_TYPE (window);
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2010-08-28 23:15:28 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_visual:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Gets the #GdkVisual describing the pixel format of @window.
|
|
|
|
*
|
2010-11-24 19:13:09 +00:00
|
|
|
* Return value: (transfer none): a #GdkVisual
|
2010-09-28 00:59:08 +00:00
|
|
|
*
|
|
|
|
* Since: 2.24
|
2010-08-28 23:15:28 +00:00
|
|
|
**/
|
|
|
|
GdkVisual*
|
|
|
|
gdk_window_get_visual (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->visual;
|
2010-08-28 23:15:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_get_screen:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Gets the #GdkScreen associated with a #GdkWindow.
|
|
|
|
*
|
2010-11-24 19:13:09 +00:00
|
|
|
* Return value: (transfer none): the #GdkScreen associated with @window
|
2010-09-28 00:59:08 +00:00
|
|
|
*
|
|
|
|
* Since: 2.24
|
2010-08-28 23:15:28 +00:00
|
|
|
**/
|
|
|
|
GdkScreen*
|
|
|
|
gdk_window_get_screen (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return gdk_visual_get_screen (window->visual);
|
2010-08-28 23:15:28 +00:00
|
|
|
}
|
|
|
|
|
2010-08-29 00:03:19 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_display:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Gets the #GdkDisplay associated with a #GdkWindow.
|
|
|
|
*
|
2010-11-24 19:13:09 +00:00
|
|
|
* Return value: (transfer none): the #GdkDisplay associated with @window
|
2010-09-28 00:59:08 +00:00
|
|
|
*
|
|
|
|
* Since: 2.24
|
2010-08-29 00:03:19 +00:00
|
|
|
**/
|
|
|
|
GdkDisplay *
|
|
|
|
gdk_window_get_display (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return gdk_screen_get_display (gdk_visual_get_screen (window->visual));
|
2010-08-29 00:03:19 +00:00
|
|
|
}
|
2009-09-04 15:49:57 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_is_destroyed:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Check to see if a window is destroyed..
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if the window is destroyed
|
2009-12-17 18:17:22 +00:00
|
|
|
*
|
|
|
|
* Since: 2.18
|
2009-09-04 15:49:57 +00:00
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gdk_window_is_destroyed (GdkWindow *window)
|
|
|
|
{
|
|
|
|
return GDK_WINDOW_DESTROYED (window);
|
|
|
|
}
|
|
|
|
|
2010-04-15 10:59:44 +00:00
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
to_embedder (GdkWindow *window,
|
|
|
|
gdouble offscreen_x,
|
|
|
|
gdouble offscreen_y,
|
|
|
|
gdouble *embedder_x,
|
|
|
|
gdouble *embedder_y)
|
2010-04-15 10:59:44 +00:00
|
|
|
{
|
|
|
|
g_signal_emit (window, signals[TO_EMBEDDER], 0,
|
|
|
|
offscreen_x, offscreen_y,
|
|
|
|
embedder_x, embedder_y);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
from_embedder (GdkWindow *window,
|
|
|
|
gdouble embedder_x,
|
|
|
|
gdouble embedder_y,
|
|
|
|
gdouble *offscreen_x,
|
|
|
|
gdouble *offscreen_y)
|
2010-04-15 10:59:44 +00:00
|
|
|
{
|
|
|
|
g_signal_emit (window, signals[FROM_EMBEDDER], 0,
|
|
|
|
embedder_x, embedder_y,
|
|
|
|
offscreen_x, offscreen_y);
|
|
|
|
}
|
|
|
|
|
2010-06-28 22:31:39 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_has_native:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Checks whether the window has a native window or not. Note that
|
|
|
|
* you can use gdk_window_ensure_native() if a native window is needed.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the %window has a native window, %FALSE otherwise.
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gdk_window_has_native (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->parent == NULL || window->parent->impl != window->impl;
|
2010-06-28 22:31:39 +00:00
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_position:
|
|
|
|
* @window: a #GdkWindow
|
2010-12-04 13:55:11 +00:00
|
|
|
* @x: (out) (allow-none): X coordinate of window
|
|
|
|
* @y: (out) (allow-none): Y coordinate of window
|
2001-10-03 18:19:48 +00:00
|
|
|
*
|
2002-01-13 20:13:34 +00:00
|
|
|
* Obtains the position of the window as reported in the
|
|
|
|
* most-recently-processed #GdkEventConfigure. Contrast with
|
|
|
|
* gdk_window_get_geometry() which queries the X server for the
|
|
|
|
* current window position, regardless of which events have been
|
|
|
|
* received or processed.
|
2001-10-03 18:19:48 +00:00
|
|
|
*
|
|
|
|
* The position coordinates are relative to the window's parent window.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
**/
|
1997-11-24 22:37:52 +00:00
|
|
|
void
|
|
|
|
gdk_window_get_position (GdkWindow *window,
|
|
|
|
gint *x,
|
|
|
|
gint *y)
|
1999-11-08 20:14:59 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
2009-06-01 10:04:36 +00:00
|
|
|
|
1999-11-08 20:14:59 +00:00
|
|
|
if (x)
|
2010-11-22 23:55:39 +00:00
|
|
|
*x = window->x;
|
1999-11-08 20:14:59 +00:00
|
|
|
if (y)
|
2010-11-22 23:55:39 +00:00
|
|
|
*y = window->y;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_parent:
|
|
|
|
* @window: a #GdkWindow
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
* Obtains the parent of @window, as known to GDK. Does not query the
|
|
|
|
* X server; thus this returns the parent as passed to gdk_window_new(),
|
|
|
|
* not the actual parent. This should never matter unless you're using
|
|
|
|
* Xlib calls mixed with GDK calls on the X11 platform. It may also
|
|
|
|
* matter for toplevel windows, because the window manager may choose
|
|
|
|
* to reparent them.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2010-04-15 10:59:44 +00:00
|
|
|
* Note that you should use gdk_window_get_effective_parent() when
|
|
|
|
* writing generic code that walks up a window hierarchy, because
|
|
|
|
* gdk_window_get_parent() will most likely not do what you expect if
|
|
|
|
* there are offscreen windows in the hierarchy.
|
|
|
|
*
|
2010-09-21 02:45:01 +00:00
|
|
|
* Return value: (transfer none): parent of @window
|
2001-10-03 18:19:48 +00:00
|
|
|
**/
|
1999-11-08 20:14:59 +00:00
|
|
|
GdkWindow*
|
|
|
|
gdk_window_get_parent (GdkWindow *window)
|
1998-11-06 22:05:02 +00:00
|
|
|
{
|
1999-11-08 20:14:59 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->parent;
|
1998-11-06 22:05:02 +00:00
|
|
|
}
|
|
|
|
|
2010-04-15 10:59:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_effective_parent:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Obtains the parent of @window, as known to GDK. Works like
|
|
|
|
* gdk_window_get_parent() for normal windows, but returns the
|
|
|
|
* window's embedder for offscreen windows.
|
|
|
|
*
|
|
|
|
* See also: gdk_offscreen_window_get_embedder()
|
|
|
|
*
|
2010-09-21 02:45:01 +00:00
|
|
|
* Return value: (transfer none): effective parent of @window
|
2010-04-15 10:59:44 +00:00
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
**/
|
|
|
|
GdkWindow *
|
|
|
|
gdk_window_get_effective_parent (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_is_offscreen (window))
|
2010-04-15 10:59:44 +00:00
|
|
|
return gdk_offscreen_window_get_embedder (window);
|
|
|
|
else
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->parent;
|
2010-04-15 10:59:44 +00:00
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_toplevel:
|
|
|
|
* @window: a #GdkWindow
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
* Gets the toplevel window that's an ancestor of @window.
|
2009-01-28 15:37:56 +00:00
|
|
|
*
|
|
|
|
* Any window type but %GDK_WINDOW_CHILD is considered a
|
|
|
|
* toplevel window, as is a %GDK_WINDOW_CHILD window that
|
2009-06-01 10:04:36 +00:00
|
|
|
* has a root window as parent.
|
|
|
|
*
|
2010-04-15 10:59:44 +00:00
|
|
|
* Note that you should use gdk_window_get_effective_toplevel() when
|
|
|
|
* you want to get to a window's toplevel as seen on screen, because
|
|
|
|
* gdk_window_get_toplevel() will most likely not do what you expect
|
|
|
|
* if there are offscreen windows in the hierarchy.
|
|
|
|
*
|
2010-09-21 02:45:01 +00:00
|
|
|
* Return value: (transfer none): the toplevel window containing @window
|
2001-10-03 18:19:48 +00:00
|
|
|
**/
|
2010-04-15 10:59:44 +00:00
|
|
|
GdkWindow *
|
1999-11-08 20:14:59 +00:00
|
|
|
gdk_window_get_toplevel (GdkWindow *window)
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
1999-11-08 20:14:59 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
while (window->window_type == GDK_WINDOW_CHILD)
|
2009-01-28 15:37:56 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_is_toplevel (window))
|
2009-01-28 15:37:56 +00:00
|
|
|
break;
|
2010-11-22 23:55:39 +00:00
|
|
|
window = window->parent;
|
2009-01-28 15:37:56 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window;
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
}
|
|
|
|
|
2010-04-15 10:59:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_effective_toplevel:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Gets the toplevel window that's an ancestor of @window.
|
|
|
|
*
|
|
|
|
* Works like gdk_window_get_toplevel(), but treats an offscreen window's
|
|
|
|
* embedder as its parent, using gdk_window_get_effective_parent().
|
|
|
|
*
|
|
|
|
* See also: gdk_offscreen_window_get_embedder()
|
|
|
|
*
|
2010-09-21 02:45:01 +00:00
|
|
|
* Return value: (transfer none): the effective toplevel window containing @window
|
2010-04-15 10:59:44 +00:00
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
**/
|
|
|
|
GdkWindow *
|
|
|
|
gdk_window_get_effective_toplevel (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GdkWindow *parent;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
|
|
|
while ((parent = gdk_window_get_effective_parent (window)) != NULL &&
|
|
|
|
(gdk_window_get_window_type (parent) != GDK_WINDOW_ROOT))
|
|
|
|
window = parent;
|
|
|
|
|
|
|
|
return window;
|
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_children:
|
|
|
|
* @window: a #GdkWindow
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
* Gets the list of children of @window known to GDK.
|
|
|
|
* This function only returns children created via GDK,
|
|
|
|
* so for example it's useless when used with the root window;
|
|
|
|
* it only returns windows an application created itself.
|
|
|
|
*
|
|
|
|
* The returned list must be freed, but the elements in the
|
|
|
|
* list need not be.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2010-09-17 04:18:20 +00:00
|
|
|
* Return value: (transfer container) (element-type GdkWindow):
|
|
|
|
* list of child windows inside @window
|
2001-10-03 18:19:48 +00:00
|
|
|
**/
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
GList*
|
|
|
|
gdk_window_get_children (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return NULL;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return g_list_copy (window->children);
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_peek_children:
|
|
|
|
* @window: a #GdkWindow
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
* Like gdk_window_get_children(), but does not copy the list of
|
|
|
|
* children, so the list does not need to be freed.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2010-09-17 04:18:20 +00:00
|
|
|
* Return value: (transfer none) (element-type GdkWindow):
|
|
|
|
* a reference to the list of child windows in @window
|
2001-10-03 18:19:48 +00:00
|
|
|
**/
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
GList *
|
2001-10-03 18:19:48 +00:00
|
|
|
gdk_window_peek_children (GdkWindow *window)
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return NULL;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->children;
|
1997-11-24 22:37:52 +00:00
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_add_filter:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @function: filter callback
|
|
|
|
* @data: data to pass to filter callback
|
|
|
|
*
|
|
|
|
* Adds an event filter to @window, allowing you to intercept events
|
2002-01-13 20:13:34 +00:00
|
|
|
* before they reach GDK. This is a low-level operation and makes it
|
|
|
|
* easy to break GDK and/or GTK+, so you have to know what you're
|
2002-01-21 05:58:33 +00:00
|
|
|
* doing. Pass %NULL for @window to get all events for all windows,
|
|
|
|
* instead of events for a specific window.
|
2007-03-12 06:26:34 +00:00
|
|
|
*
|
|
|
|
* See gdk_display_add_client_message_filter() if you are interested
|
|
|
|
* in X ClientMessage events.
|
2001-10-03 18:19:48 +00:00
|
|
|
**/
|
2009-06-01 10:04:36 +00:00
|
|
|
void
|
1999-02-10 08:06:30 +00:00
|
|
|
gdk_window_add_filter (GdkWindow *window,
|
|
|
|
GdkFilterFunc function,
|
|
|
|
gpointer data)
|
1997-12-18 02:17:14 +00:00
|
|
|
{
|
|
|
|
GList *tmp_list;
|
|
|
|
GdkEventFilter *filter;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2001-04-02 23:33:47 +00:00
|
|
|
g_return_if_fail (window == NULL || GDK_IS_WINDOW (window));
|
1999-10-03 22:12:41 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window && GDK_WINDOW_DESTROYED (window))
|
1998-01-26 01:20:14 +00:00
|
|
|
return;
|
2008-12-03 21:00:56 +00:00
|
|
|
|
|
|
|
/* Filters are for the native events on the native window, so
|
|
|
|
ensure there is a native window. */
|
|
|
|
if (window)
|
2009-06-01 09:57:59 +00:00
|
|
|
gdk_window_ensure_native (window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window)
|
|
|
|
tmp_list = window->filters;
|
1998-03-01 22:37:30 +00:00
|
|
|
else
|
Make gdkx.h the only installed header from gdk/x11. All structures in
Fri Sep 7 11:51:44 2001 Owen Taylor <otaylor@redhat.com>
Make gdkx.h the only installed header from gdk/x11.
All structures in gdk/x11 are opaque.
* gdk/x11/Makefile.am gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h:
Don't install gdk{drawable,pixmap,window}-x11.h.
* gdk/x11/{gdkcolormap-x11.c, gdkfont-x11.c, gdkx.h, gdkvisual-x11.c:
Move GdkColormapPrivateX11, GdkFontPrivateX GdkImagePrivateX11,
GdkVisualClass into C files.
* gdk/gdkpixmap-x11.[ch]: Make gdk_pixmap_impl_get_type() static.
* gdk/x11/{gdkcolor-x11.c, gdkcursor-x11.c, gdkdrawable-x11.c,
gdkfont-x11.c, gdkgc-x11.c, gdkx.h, gdkimage-x11,gdkvisual-x11.c}
Add public functions to replace previously exported direct
structure access.
gdk_x11_colormap_get_{xdisplay,xcolormap}
gdk_x11_cursor_get_{xdisplay,xcursor},
gdk_x11_drawable_get_{xdisplay,xcursor,gdk_x11_visual_get_xvisual,
gdk_x11_font_get_{xdisplay,xfont}, gdk_x11_image_get_{xdisplay,ximage},
gdk_x11_gc_get_{xdisplay,ximage}
* gdk/gdkprivate.h gdk/gdkinternals.h: Move GdkColorInfo,
GdkEventFilter, GdkClientFilter, GdkFontPrivate to gdkinternals.
Fix a number of variables and functions that were exported
"accidentally" from GDK.
* gdk/**.[ch]: gdk => _gdk for gdk_visual_init,
gdk_events_init, gdk_input_init, gdk_dnd_init, gdk_image_exit,
gdk_input_exit, gdk_windowing_exit, gdk_event_func, gdk_event_data,
gdk_event_notify, gdk_queued_events, gdk_queued_tail,
gdk_event_new, gdk_events_queue, gdk_events_unqueue,
gdk_event_queue_find_first, gdk_event_queue_remove_link,
gdk_event_queue_append, gdk_event_button_generate,
gdk_debug_flags, gdk_default_filters, gdk_parent_root.
* gdk/x11/{gdkevents-x11.c, gdkglobals-x11.c, gdkimage-x11.c,
gdkmain-x11.c, gdkprivate-x11.h, gdk/x11/gdkwindow-x11.c}:
gdk => _gdk for gdk_event_mask_table, gkd_nevent_masks,
gdk_wm_window_protocols, gdk_leader_window, gdk_xgrab_window,
gdk_use_xshm, gdk_input_ignore_core.
* gdk/x11/xsettings-common.h (xsettings_list_insert): Add
#defines to namespace functions into the private _gdk_
namespace.
* gdk/gdkwindow.[ch] gdk/x11/gdkx.h: Add gdk_get_default_root_window ()
to replace gdk_parent_root exported variable. Adjust and
deprecate GDK_ROOT_PARENT().
* demos/{testpixbuf-drawable.c,testpixbuf-save.c}: Fix
GDK_ROOT_PARENT usage, remove includes of port-specific
headers.
* gdk/{win32,x11,fb}/gdkinput*.[ch]: s/gdk/_gdk/ for
_gdk_input_gxid_host, _gdk_input_gxid_port, _gdk_input_ignore_core,
gdk_input_devices, _gdk_input_windows, gdk_init_input_core.
* gdk/x11/{gdkevents-x11.,c gdkglobals-x11.c, gdkmain-x11.c}
docs/Changes-2.0.txt: Remove gdk_wm_protocols,
gdk_wm_delete_window functions, gdk_wm_take_focus,
use gdk_atom_intern() instead.
* gdk/linux-fb/{gdkselection-fb.c, gdkmain-fb.c, gdkprivatefb.h}
gdk/win32/{gdkselection-win32.c, gdkmgdkwin32.h, gdkprivate-win32.h}
gdk/x11/{gdkselection-x11.c gdkx.h, gtkprivate-x11.h}
gtk/gtkselection.c
Unexport gdk_selection_property, just use
gdk_atom_intern ("GDK_SELECTION").
* gdk/x11/{gdkprivate-x11.h,gdkdrawable-x11h,gdkgc-x11.c,gdkx.h}:
Unexport gdk_drawable_impl_x11_get_type, gdk_gc_x11_get_type,
GDK_GC_X11 cast macros, GdkGCX11 structures, GdkCursorPrivate,
GdkVisualprivate, gdk_x11_gc_flush.
Make a number of public exports of variables into functions
to increase encapsulation.
* gdk/gdkinternals.h gdk/gdkinput.h gdk/gdkevents.h
gdk/linux-fb/gdkmouse-fb.c: gdk_core_pointer => _gdk_core_pointer,
move to gdkinternals.h. Add gdk_device_get_core_pointer ().
* gdk/gdkprivate.h gdk/gdkpango.c gdk/gdkinternals.h
docs/Changes-2.0.txt: Unexport gdk_parent_root, gdk_error_code,
gdk_error_warnings.
* gdk/x11/{gdkcolormap-x11.c, gdkmain-x11.c, gdkx.h}
docs/Changes-2.0.txt:
s/gdk_screen/_gdk_screen/, add gdk_x11_get_default_screen()
s/gdk_root_window/_gdk_root_window/, add gdk_x11_get_default_root_xwindow()
Add gdk_x11_get_default_xdisplay().
* gdk/gdk.h gdk/gdk.c linux-fb/gdkfb.h linux-fb/gdkglobals-fb.c
win32/gdkwin32.h x11/gdkglobals-x11.c gdk/x11/gdkmain-x11.c
gdk/x11/gdkx.h: gdk/gdk.def: Add gdk_get/set_program_class,
Don't export gdk_progclass, move --class command line
option and handling to common portion of GDK.
Miscellaneous fixes:
* gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): Fix
g_return_val_if_fail that should have been g_return_if_fail.
* gdk/gdkinternals.h gdk/gdkprivate.h: Move
gdk_synthesize_window_state() to the semi-public gdkprivate.h.
* gtk/gtkdnd.c (_gtk_drag_source_handle_event): Remove uneeded
X11 dependency.
* gdk/linux-fb/gdkmain-fb.c gdk/win32/gdkmain-win32.c gdk/TODO:
Remove unused gdk_key_repeat_disable/restore.
* linux-fb/gdkglobals-fb.c win32/gdkglobals-win32.c
x11/gdkglobals-x11.c x11/gdkprivate-x11.h gdk/gdk.def:
Remove unused gdk_null_window_warnings variable.
* gdk/Makefile.am (DIST_SUBDIRS) nanox/*: cvs remove nanox;
it can be retrieved from the repository; it is too far
from functional to be worth having people check out;
it would be easier to start from scratch, I suspect.
* gdk/x11/gdkpixmap-x11.c: Fix lvalue usage of GDK_PIXMAP_XID().
* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
Fix some accidentally global variables and unused global variables.
* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
Fix some accidentally global variables and unused global variables.
Add some space for future expansion to multihead.
* gdk/gdkdrawable.h: Add four reserved function pointers
for future expansion of GdkDrawableClass.
* gtk/gtkwindow.h gtk/gtkinvisible.h: Add reserved pointer
where we can put a GdkScreen * later.
2001-09-07 21:50:20 +00:00
|
|
|
tmp_list = _gdk_default_filters;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
1997-12-18 02:17:14 +00:00
|
|
|
while (tmp_list)
|
|
|
|
{
|
|
|
|
filter = (GdkEventFilter *)tmp_list->data;
|
|
|
|
if ((filter->function == function) && (filter->data == data))
|
2010-11-20 22:58:50 +00:00
|
|
|
{
|
|
|
|
filter->ref_count++;
|
|
|
|
return;
|
|
|
|
}
|
1997-12-18 02:17:14 +00:00
|
|
|
tmp_list = tmp_list->next;
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
1997-12-18 02:17:14 +00:00
|
|
|
filter = g_new (GdkEventFilter, 1);
|
|
|
|
filter->function = function;
|
|
|
|
filter->data = data;
|
2010-11-20 22:58:50 +00:00
|
|
|
filter->ref_count = 1;
|
|
|
|
filter->flags = 0;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window)
|
|
|
|
window->filters = g_list_append (window->filters, filter);
|
1998-03-01 22:37:30 +00:00
|
|
|
else
|
Make gdkx.h the only installed header from gdk/x11. All structures in
Fri Sep 7 11:51:44 2001 Owen Taylor <otaylor@redhat.com>
Make gdkx.h the only installed header from gdk/x11.
All structures in gdk/x11 are opaque.
* gdk/x11/Makefile.am gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h:
Don't install gdk{drawable,pixmap,window}-x11.h.
* gdk/x11/{gdkcolormap-x11.c, gdkfont-x11.c, gdkx.h, gdkvisual-x11.c:
Move GdkColormapPrivateX11, GdkFontPrivateX GdkImagePrivateX11,
GdkVisualClass into C files.
* gdk/gdkpixmap-x11.[ch]: Make gdk_pixmap_impl_get_type() static.
* gdk/x11/{gdkcolor-x11.c, gdkcursor-x11.c, gdkdrawable-x11.c,
gdkfont-x11.c, gdkgc-x11.c, gdkx.h, gdkimage-x11,gdkvisual-x11.c}
Add public functions to replace previously exported direct
structure access.
gdk_x11_colormap_get_{xdisplay,xcolormap}
gdk_x11_cursor_get_{xdisplay,xcursor},
gdk_x11_drawable_get_{xdisplay,xcursor,gdk_x11_visual_get_xvisual,
gdk_x11_font_get_{xdisplay,xfont}, gdk_x11_image_get_{xdisplay,ximage},
gdk_x11_gc_get_{xdisplay,ximage}
* gdk/gdkprivate.h gdk/gdkinternals.h: Move GdkColorInfo,
GdkEventFilter, GdkClientFilter, GdkFontPrivate to gdkinternals.
Fix a number of variables and functions that were exported
"accidentally" from GDK.
* gdk/**.[ch]: gdk => _gdk for gdk_visual_init,
gdk_events_init, gdk_input_init, gdk_dnd_init, gdk_image_exit,
gdk_input_exit, gdk_windowing_exit, gdk_event_func, gdk_event_data,
gdk_event_notify, gdk_queued_events, gdk_queued_tail,
gdk_event_new, gdk_events_queue, gdk_events_unqueue,
gdk_event_queue_find_first, gdk_event_queue_remove_link,
gdk_event_queue_append, gdk_event_button_generate,
gdk_debug_flags, gdk_default_filters, gdk_parent_root.
* gdk/x11/{gdkevents-x11.c, gdkglobals-x11.c, gdkimage-x11.c,
gdkmain-x11.c, gdkprivate-x11.h, gdk/x11/gdkwindow-x11.c}:
gdk => _gdk for gdk_event_mask_table, gkd_nevent_masks,
gdk_wm_window_protocols, gdk_leader_window, gdk_xgrab_window,
gdk_use_xshm, gdk_input_ignore_core.
* gdk/x11/xsettings-common.h (xsettings_list_insert): Add
#defines to namespace functions into the private _gdk_
namespace.
* gdk/gdkwindow.[ch] gdk/x11/gdkx.h: Add gdk_get_default_root_window ()
to replace gdk_parent_root exported variable. Adjust and
deprecate GDK_ROOT_PARENT().
* demos/{testpixbuf-drawable.c,testpixbuf-save.c}: Fix
GDK_ROOT_PARENT usage, remove includes of port-specific
headers.
* gdk/{win32,x11,fb}/gdkinput*.[ch]: s/gdk/_gdk/ for
_gdk_input_gxid_host, _gdk_input_gxid_port, _gdk_input_ignore_core,
gdk_input_devices, _gdk_input_windows, gdk_init_input_core.
* gdk/x11/{gdkevents-x11.,c gdkglobals-x11.c, gdkmain-x11.c}
docs/Changes-2.0.txt: Remove gdk_wm_protocols,
gdk_wm_delete_window functions, gdk_wm_take_focus,
use gdk_atom_intern() instead.
* gdk/linux-fb/{gdkselection-fb.c, gdkmain-fb.c, gdkprivatefb.h}
gdk/win32/{gdkselection-win32.c, gdkmgdkwin32.h, gdkprivate-win32.h}
gdk/x11/{gdkselection-x11.c gdkx.h, gtkprivate-x11.h}
gtk/gtkselection.c
Unexport gdk_selection_property, just use
gdk_atom_intern ("GDK_SELECTION").
* gdk/x11/{gdkprivate-x11.h,gdkdrawable-x11h,gdkgc-x11.c,gdkx.h}:
Unexport gdk_drawable_impl_x11_get_type, gdk_gc_x11_get_type,
GDK_GC_X11 cast macros, GdkGCX11 structures, GdkCursorPrivate,
GdkVisualprivate, gdk_x11_gc_flush.
Make a number of public exports of variables into functions
to increase encapsulation.
* gdk/gdkinternals.h gdk/gdkinput.h gdk/gdkevents.h
gdk/linux-fb/gdkmouse-fb.c: gdk_core_pointer => _gdk_core_pointer,
move to gdkinternals.h. Add gdk_device_get_core_pointer ().
* gdk/gdkprivate.h gdk/gdkpango.c gdk/gdkinternals.h
docs/Changes-2.0.txt: Unexport gdk_parent_root, gdk_error_code,
gdk_error_warnings.
* gdk/x11/{gdkcolormap-x11.c, gdkmain-x11.c, gdkx.h}
docs/Changes-2.0.txt:
s/gdk_screen/_gdk_screen/, add gdk_x11_get_default_screen()
s/gdk_root_window/_gdk_root_window/, add gdk_x11_get_default_root_xwindow()
Add gdk_x11_get_default_xdisplay().
* gdk/gdk.h gdk/gdk.c linux-fb/gdkfb.h linux-fb/gdkglobals-fb.c
win32/gdkwin32.h x11/gdkglobals-x11.c gdk/x11/gdkmain-x11.c
gdk/x11/gdkx.h: gdk/gdk.def: Add gdk_get/set_program_class,
Don't export gdk_progclass, move --class command line
option and handling to common portion of GDK.
Miscellaneous fixes:
* gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): Fix
g_return_val_if_fail that should have been g_return_if_fail.
* gdk/gdkinternals.h gdk/gdkprivate.h: Move
gdk_synthesize_window_state() to the semi-public gdkprivate.h.
* gtk/gtkdnd.c (_gtk_drag_source_handle_event): Remove uneeded
X11 dependency.
* gdk/linux-fb/gdkmain-fb.c gdk/win32/gdkmain-win32.c gdk/TODO:
Remove unused gdk_key_repeat_disable/restore.
* linux-fb/gdkglobals-fb.c win32/gdkglobals-win32.c
x11/gdkglobals-x11.c x11/gdkprivate-x11.h gdk/gdk.def:
Remove unused gdk_null_window_warnings variable.
* gdk/Makefile.am (DIST_SUBDIRS) nanox/*: cvs remove nanox;
it can be retrieved from the repository; it is too far
from functional to be worth having people check out;
it would be easier to start from scratch, I suspect.
* gdk/x11/gdkpixmap-x11.c: Fix lvalue usage of GDK_PIXMAP_XID().
* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
Fix some accidentally global variables and unused global variables.
* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
Fix some accidentally global variables and unused global variables.
Add some space for future expansion to multihead.
* gdk/gdkdrawable.h: Add four reserved function pointers
for future expansion of GdkDrawableClass.
* gtk/gtkwindow.h gtk/gtkinvisible.h: Add reserved pointer
where we can put a GdkScreen * later.
2001-09-07 21:50:20 +00:00
|
|
|
_gdk_default_filters = g_list_append (_gdk_default_filters, filter);
|
1997-12-18 02:17:14 +00:00
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_remove_filter:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @function: previously-added filter function
|
|
|
|
* @data: user data for previously-added filter function
|
|
|
|
*
|
|
|
|
* Remove a filter previously added with gdk_window_add_filter().
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
**/
|
1997-12-18 02:17:14 +00:00
|
|
|
void
|
1999-02-10 08:06:30 +00:00
|
|
|
gdk_window_remove_filter (GdkWindow *window,
|
|
|
|
GdkFilterFunc function,
|
|
|
|
gpointer data)
|
1997-12-18 02:17:14 +00:00
|
|
|
{
|
Added a modular client-message-filter mechanism, that is used for the DND
Sun Oct 18 18:16:39 1998 Owen Taylor <otaylor@gtk.org>
* gdk/gdk.c gdkprivate.h: Added a modular client-message-filter
mechanism, that is used for the DND messages.
Removed all the old DND code.
* gdk/gdkcolormap.c gdk/gdkcolormap.h: Add a function to
get the visual of a given colormap.
* gtk/gtkcolorsel.c: Conversion to new DND, drag
a color-swatch.
* gdk/gdk.h gdk/gdkdnd.c: The low-level
X oriented portions of drag and drop protocols.
Sending and receiving client messages, and navigating
window trees.
* gdk/gdkimage.c: added a gdk_flush() when destroying
SHM images to hopefully make it more likely that
X will gracefully handle the segment being destroyed.
* gdk/gdkprivate.h gtk/gtkdebug.h: Add new
DND debugging flags.
* gtk/gtkeditable.[ch]: Updates for the selection handling
changes.
* gtk/gtkselection.[ch]: Added GtkTargetList, a
refcounted data structure for keeping track of lists
of GdkAtom + information. Removed selection_handler_add
in favor of a "drag_data_get" signal.
* gtk/gtkdnd.[ch] gtk/gtk.h: New files - highlevel (event loop
dependent) parts of the DND protocols, display of drag icons,
drag-under highlighting, and the "default handlers".
* gtk/gtkinvisible.[ch]: New widget - InputOnly offscreen
windows that are used for reliable pointer grabs and
selection handling in the DND code.
* gtk/testdnd.c: New test program for new DND. (Old
DND tests in testgtk still need to be converted.)
* gtk/testselection.c: Use the new selection API.
* docs/dnd_internals: Start at describing how
all the new code works inside.
* docs/Changes-1.2.txt: New file describing source-incompatible
changes in GTK+-1.2.
Sat Oct 17 22:50:34 1998 Owen Taylor <otaylor@gtk.org>
* gdk/gdkwindow.c (gdk_window_remove_filter): Free
the right list node.
* gdk/gdkwindow.c (gdk_window_init): Add gdk_root_parent
to the XID table so we can receive events on it.
Wed Oct 14 12:57:40 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c gdk/gdk.h (gdk_event_get_time): New function
to get the timestamp from a generic event.
Fri Oct 9 13:16:04 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_add_events): Added function
that safely adds additional events to a widget's event
mask, even if the widget has previously been realized.
(We can do this, but not remove events from the event
mask).
Fri Oct 2 17:35:35 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_property_get): Allow type == 0,
for AnyPropertyType.
Fri Oct 2 10:32:21 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Add client-local
hashing.
Thu Sep 24 20:33:54 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_event_send_clientmessage_toall): serial
isn't a timestamp.
Thu Sep 17 14:23:03 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_event_translate): Removed printing
of unknown window lookup warnings. (Made it
a GDK_NOTE) - they happen in many circumstances.
1998-10-18 22:51:24 +00:00
|
|
|
GList *tmp_list, *node;
|
1997-12-18 02:17:14 +00:00
|
|
|
GdkEventFilter *filter;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2001-04-02 23:33:47 +00:00
|
|
|
g_return_if_fail (window == NULL || GDK_IS_WINDOW (window));
|
1999-10-03 22:12:41 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window)
|
|
|
|
tmp_list = window->filters;
|
1998-03-01 22:37:30 +00:00
|
|
|
else
|
Make gdkx.h the only installed header from gdk/x11. All structures in
Fri Sep 7 11:51:44 2001 Owen Taylor <otaylor@redhat.com>
Make gdkx.h the only installed header from gdk/x11.
All structures in gdk/x11 are opaque.
* gdk/x11/Makefile.am gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h:
Don't install gdk{drawable,pixmap,window}-x11.h.
* gdk/x11/{gdkcolormap-x11.c, gdkfont-x11.c, gdkx.h, gdkvisual-x11.c:
Move GdkColormapPrivateX11, GdkFontPrivateX GdkImagePrivateX11,
GdkVisualClass into C files.
* gdk/gdkpixmap-x11.[ch]: Make gdk_pixmap_impl_get_type() static.
* gdk/x11/{gdkcolor-x11.c, gdkcursor-x11.c, gdkdrawable-x11.c,
gdkfont-x11.c, gdkgc-x11.c, gdkx.h, gdkimage-x11,gdkvisual-x11.c}
Add public functions to replace previously exported direct
structure access.
gdk_x11_colormap_get_{xdisplay,xcolormap}
gdk_x11_cursor_get_{xdisplay,xcursor},
gdk_x11_drawable_get_{xdisplay,xcursor,gdk_x11_visual_get_xvisual,
gdk_x11_font_get_{xdisplay,xfont}, gdk_x11_image_get_{xdisplay,ximage},
gdk_x11_gc_get_{xdisplay,ximage}
* gdk/gdkprivate.h gdk/gdkinternals.h: Move GdkColorInfo,
GdkEventFilter, GdkClientFilter, GdkFontPrivate to gdkinternals.
Fix a number of variables and functions that were exported
"accidentally" from GDK.
* gdk/**.[ch]: gdk => _gdk for gdk_visual_init,
gdk_events_init, gdk_input_init, gdk_dnd_init, gdk_image_exit,
gdk_input_exit, gdk_windowing_exit, gdk_event_func, gdk_event_data,
gdk_event_notify, gdk_queued_events, gdk_queued_tail,
gdk_event_new, gdk_events_queue, gdk_events_unqueue,
gdk_event_queue_find_first, gdk_event_queue_remove_link,
gdk_event_queue_append, gdk_event_button_generate,
gdk_debug_flags, gdk_default_filters, gdk_parent_root.
* gdk/x11/{gdkevents-x11.c, gdkglobals-x11.c, gdkimage-x11.c,
gdkmain-x11.c, gdkprivate-x11.h, gdk/x11/gdkwindow-x11.c}:
gdk => _gdk for gdk_event_mask_table, gkd_nevent_masks,
gdk_wm_window_protocols, gdk_leader_window, gdk_xgrab_window,
gdk_use_xshm, gdk_input_ignore_core.
* gdk/x11/xsettings-common.h (xsettings_list_insert): Add
#defines to namespace functions into the private _gdk_
namespace.
* gdk/gdkwindow.[ch] gdk/x11/gdkx.h: Add gdk_get_default_root_window ()
to replace gdk_parent_root exported variable. Adjust and
deprecate GDK_ROOT_PARENT().
* demos/{testpixbuf-drawable.c,testpixbuf-save.c}: Fix
GDK_ROOT_PARENT usage, remove includes of port-specific
headers.
* gdk/{win32,x11,fb}/gdkinput*.[ch]: s/gdk/_gdk/ for
_gdk_input_gxid_host, _gdk_input_gxid_port, _gdk_input_ignore_core,
gdk_input_devices, _gdk_input_windows, gdk_init_input_core.
* gdk/x11/{gdkevents-x11.,c gdkglobals-x11.c, gdkmain-x11.c}
docs/Changes-2.0.txt: Remove gdk_wm_protocols,
gdk_wm_delete_window functions, gdk_wm_take_focus,
use gdk_atom_intern() instead.
* gdk/linux-fb/{gdkselection-fb.c, gdkmain-fb.c, gdkprivatefb.h}
gdk/win32/{gdkselection-win32.c, gdkmgdkwin32.h, gdkprivate-win32.h}
gdk/x11/{gdkselection-x11.c gdkx.h, gtkprivate-x11.h}
gtk/gtkselection.c
Unexport gdk_selection_property, just use
gdk_atom_intern ("GDK_SELECTION").
* gdk/x11/{gdkprivate-x11.h,gdkdrawable-x11h,gdkgc-x11.c,gdkx.h}:
Unexport gdk_drawable_impl_x11_get_type, gdk_gc_x11_get_type,
GDK_GC_X11 cast macros, GdkGCX11 structures, GdkCursorPrivate,
GdkVisualprivate, gdk_x11_gc_flush.
Make a number of public exports of variables into functions
to increase encapsulation.
* gdk/gdkinternals.h gdk/gdkinput.h gdk/gdkevents.h
gdk/linux-fb/gdkmouse-fb.c: gdk_core_pointer => _gdk_core_pointer,
move to gdkinternals.h. Add gdk_device_get_core_pointer ().
* gdk/gdkprivate.h gdk/gdkpango.c gdk/gdkinternals.h
docs/Changes-2.0.txt: Unexport gdk_parent_root, gdk_error_code,
gdk_error_warnings.
* gdk/x11/{gdkcolormap-x11.c, gdkmain-x11.c, gdkx.h}
docs/Changes-2.0.txt:
s/gdk_screen/_gdk_screen/, add gdk_x11_get_default_screen()
s/gdk_root_window/_gdk_root_window/, add gdk_x11_get_default_root_xwindow()
Add gdk_x11_get_default_xdisplay().
* gdk/gdk.h gdk/gdk.c linux-fb/gdkfb.h linux-fb/gdkglobals-fb.c
win32/gdkwin32.h x11/gdkglobals-x11.c gdk/x11/gdkmain-x11.c
gdk/x11/gdkx.h: gdk/gdk.def: Add gdk_get/set_program_class,
Don't export gdk_progclass, move --class command line
option and handling to common portion of GDK.
Miscellaneous fixes:
* gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): Fix
g_return_val_if_fail that should have been g_return_if_fail.
* gdk/gdkinternals.h gdk/gdkprivate.h: Move
gdk_synthesize_window_state() to the semi-public gdkprivate.h.
* gtk/gtkdnd.c (_gtk_drag_source_handle_event): Remove uneeded
X11 dependency.
* gdk/linux-fb/gdkmain-fb.c gdk/win32/gdkmain-win32.c gdk/TODO:
Remove unused gdk_key_repeat_disable/restore.
* linux-fb/gdkglobals-fb.c win32/gdkglobals-win32.c
x11/gdkglobals-x11.c x11/gdkprivate-x11.h gdk/gdk.def:
Remove unused gdk_null_window_warnings variable.
* gdk/Makefile.am (DIST_SUBDIRS) nanox/*: cvs remove nanox;
it can be retrieved from the repository; it is too far
from functional to be worth having people check out;
it would be easier to start from scratch, I suspect.
* gdk/x11/gdkpixmap-x11.c: Fix lvalue usage of GDK_PIXMAP_XID().
* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
Fix some accidentally global variables and unused global variables.
* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
Fix some accidentally global variables and unused global variables.
Add some space for future expansion to multihead.
* gdk/gdkdrawable.h: Add four reserved function pointers
for future expansion of GdkDrawableClass.
* gtk/gtkwindow.h gtk/gtkinvisible.h: Add reserved pointer
where we can put a GdkScreen * later.
2001-09-07 21:50:20 +00:00
|
|
|
tmp_list = _gdk_default_filters;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
1997-12-18 02:17:14 +00:00
|
|
|
while (tmp_list)
|
|
|
|
{
|
|
|
|
filter = (GdkEventFilter *)tmp_list->data;
|
Added a modular client-message-filter mechanism, that is used for the DND
Sun Oct 18 18:16:39 1998 Owen Taylor <otaylor@gtk.org>
* gdk/gdk.c gdkprivate.h: Added a modular client-message-filter
mechanism, that is used for the DND messages.
Removed all the old DND code.
* gdk/gdkcolormap.c gdk/gdkcolormap.h: Add a function to
get the visual of a given colormap.
* gtk/gtkcolorsel.c: Conversion to new DND, drag
a color-swatch.
* gdk/gdk.h gdk/gdkdnd.c: The low-level
X oriented portions of drag and drop protocols.
Sending and receiving client messages, and navigating
window trees.
* gdk/gdkimage.c: added a gdk_flush() when destroying
SHM images to hopefully make it more likely that
X will gracefully handle the segment being destroyed.
* gdk/gdkprivate.h gtk/gtkdebug.h: Add new
DND debugging flags.
* gtk/gtkeditable.[ch]: Updates for the selection handling
changes.
* gtk/gtkselection.[ch]: Added GtkTargetList, a
refcounted data structure for keeping track of lists
of GdkAtom + information. Removed selection_handler_add
in favor of a "drag_data_get" signal.
* gtk/gtkdnd.[ch] gtk/gtk.h: New files - highlevel (event loop
dependent) parts of the DND protocols, display of drag icons,
drag-under highlighting, and the "default handlers".
* gtk/gtkinvisible.[ch]: New widget - InputOnly offscreen
windows that are used for reliable pointer grabs and
selection handling in the DND code.
* gtk/testdnd.c: New test program for new DND. (Old
DND tests in testgtk still need to be converted.)
* gtk/testselection.c: Use the new selection API.
* docs/dnd_internals: Start at describing how
all the new code works inside.
* docs/Changes-1.2.txt: New file describing source-incompatible
changes in GTK+-1.2.
Sat Oct 17 22:50:34 1998 Owen Taylor <otaylor@gtk.org>
* gdk/gdkwindow.c (gdk_window_remove_filter): Free
the right list node.
* gdk/gdkwindow.c (gdk_window_init): Add gdk_root_parent
to the XID table so we can receive events on it.
Wed Oct 14 12:57:40 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c gdk/gdk.h (gdk_event_get_time): New function
to get the timestamp from a generic event.
Fri Oct 9 13:16:04 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_add_events): Added function
that safely adds additional events to a widget's event
mask, even if the widget has previously been realized.
(We can do this, but not remove events from the event
mask).
Fri Oct 2 17:35:35 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_property_get): Allow type == 0,
for AnyPropertyType.
Fri Oct 2 10:32:21 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Add client-local
hashing.
Thu Sep 24 20:33:54 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_event_send_clientmessage_toall): serial
isn't a timestamp.
Thu Sep 17 14:23:03 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_event_translate): Removed printing
of unknown window lookup warnings. (Made it
a GDK_NOTE) - they happen in many circumstances.
1998-10-18 22:51:24 +00:00
|
|
|
node = tmp_list;
|
1997-12-18 02:17:14 +00:00
|
|
|
tmp_list = tmp_list->next;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
1997-12-18 02:17:14 +00:00
|
|
|
if ((filter->function == function) && (filter->data == data))
|
|
|
|
{
|
2010-11-20 22:58:50 +00:00
|
|
|
filter->flags |= GDK_EVENT_FILTER_REMOVED;
|
|
|
|
|
2010-12-17 13:03:01 +00:00
|
|
|
_gdk_event_filter_unref (window, filter);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
1997-12-18 02:17:14 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
2002-04-25 22:29:14 +00:00
|
|
|
* gdk_screen_get_toplevel_windows:
|
2002-11-28 00:33:17 +00:00
|
|
|
* @screen: The #GdkScreen where the toplevels are located.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2002-04-25 22:29:14 +00:00
|
|
|
* Obtains a list of all toplevel windows known to GDK on the screen @screen.
|
2001-10-03 18:19:48 +00:00
|
|
|
* A toplevel window is a child of the root window (see
|
|
|
|
* gdk_get_default_root_window()).
|
|
|
|
*
|
|
|
|
* The returned list should be freed with g_list_free(), but
|
|
|
|
* its elements need not be freed.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2010-09-17 04:18:20 +00:00
|
|
|
* Return value: (transfer container) (element-type GdkWindow):
|
|
|
|
* list of toplevel windows, free with g_list_free()
|
2002-11-28 00:33:17 +00:00
|
|
|
*
|
|
|
|
* Since: 2.2
|
2001-10-03 18:19:48 +00:00
|
|
|
**/
|
1998-05-01 16:15:39 +00:00
|
|
|
GList *
|
2002-04-25 22:29:14 +00:00
|
|
|
gdk_screen_get_toplevel_windows (GdkScreen *screen)
|
1998-05-01 16:15:39 +00:00
|
|
|
{
|
2002-04-25 22:29:14 +00:00
|
|
|
GdkWindow * root_window;
|
1998-05-01 16:15:39 +00:00
|
|
|
GList *new_list = NULL;
|
|
|
|
GList *tmp_list;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2002-04-25 22:29:14 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_SCREEN (screen), NULL);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2002-04-25 22:29:14 +00:00
|
|
|
root_window = gdk_screen_get_root_window (screen);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
tmp_list = root_window->children;
|
1998-05-01 16:15:39 +00:00
|
|
|
while (tmp_list)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *w = tmp_list->data;
|
2009-07-18 13:04:06 +00:00
|
|
|
|
|
|
|
if (w->window_type != GDK_WINDOW_FOREIGN)
|
|
|
|
new_list = g_list_prepend (new_list, w);
|
1998-05-01 16:15:39 +00:00
|
|
|
tmp_list = tmp_list->next;
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
1998-05-01 16:15:39 +00:00
|
|
|
return new_list;
|
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
1999-01-15 16:00:39 +00:00
|
|
|
* gdk_window_is_visible:
|
2001-10-03 18:19:48 +00:00
|
|
|
* @window: a #GdkWindow
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
* Checks whether the window has been mapped (with gdk_window_show() or
|
|
|
|
* gdk_window_show_unraised()).
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
* Return value: %TRUE if the window is mapped
|
|
|
|
**/
|
2009-06-01 10:04:36 +00:00
|
|
|
gboolean
|
1999-01-15 16:00:39 +00:00
|
|
|
gdk_window_is_visible (GdkWindow *window)
|
|
|
|
{
|
1999-10-03 22:12:41 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2001-02-27 20:40:15 +00:00
|
|
|
return GDK_WINDOW_IS_MAPPED (window);
|
1999-01-15 16:00:39 +00:00
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
1999-01-15 16:00:39 +00:00
|
|
|
* gdk_window_is_viewable:
|
2001-10-03 18:19:48 +00:00
|
|
|
* @window: a #GdkWindow
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
* Check if the window and all ancestors of the window are
|
|
|
|
* mapped. (This is not necessarily "viewable" in the X sense, since
|
|
|
|
* we only check as far as we have GDK window parents, not to the root
|
2002-01-13 20:13:34 +00:00
|
|
|
* window.)
|
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
* Return value: %TRUE if the window is viewable
|
|
|
|
**/
|
2009-06-01 10:04:36 +00:00
|
|
|
gboolean
|
1999-01-15 16:00:39 +00:00
|
|
|
gdk_window_is_viewable (GdkWindow *window)
|
|
|
|
{
|
1999-10-03 22:12:41 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
|
2003-06-09 01:55:01 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->destroyed)
|
2009-07-18 18:29:50 +00:00
|
|
|
return FALSE;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->viewable;
|
1999-01-15 16:00:39 +00:00
|
|
|
}
|
|
|
|
|
2001-02-27 20:40:15 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_state:
|
|
|
|
* @window: a #GdkWindow
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-02-27 20:40:15 +00:00
|
|
|
* Gets the bitwise OR of the currently active window state flags,
|
|
|
|
* from the #GdkWindowState enumeration.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-02-27 20:40:15 +00:00
|
|
|
* Return value: window state bitfield
|
|
|
|
**/
|
|
|
|
GdkWindowState
|
|
|
|
gdk_window_get_state (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->state;
|
2001-02-27 20:40:15 +00:00
|
|
|
}
|
|
|
|
|
2010-08-28 20:26:48 +00:00
|
|
|
static cairo_content_t
|
|
|
|
gdk_window_get_content (GdkWindow *window)
|
|
|
|
{
|
|
|
|
cairo_surface_t *surface;
|
|
|
|
cairo_content_t content;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), 0);
|
|
|
|
|
2010-11-22 16:23:31 +00:00
|
|
|
surface = _gdk_window_ref_cairo_surface (window);
|
2010-08-28 20:26:48 +00:00
|
|
|
content = cairo_surface_get_content (surface);
|
|
|
|
cairo_surface_destroy (surface);
|
|
|
|
|
|
|
|
return content;
|
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
/* This creates an empty "implicit" paint region for the impl window.
|
|
|
|
* By itself this does nothing, but real paints to this window
|
2010-08-27 13:21:58 +00:00
|
|
|
* or children of it can use this surface as backing to avoid allocating
|
|
|
|
* multiple surfaces for subwindow rendering. When doing so they
|
2008-07-18 13:03:42 +00:00
|
|
|
* add to the region of the implicit paint region, which will be
|
|
|
|
* pushed to the window when the implicit paint region is ended.
|
|
|
|
* Such paints should not copy anything to the window on paint end, but
|
|
|
|
* should rely on the implicit paint end.
|
|
|
|
* The implicit paint will be automatically ended if someone draws
|
|
|
|
* directly to the window or a child window.
|
|
|
|
*/
|
|
|
|
static gboolean
|
|
|
|
gdk_window_begin_implicit_paint (GdkWindow *window, GdkRectangle *rect)
|
|
|
|
{
|
|
|
|
GdkWindowPaint *paint;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
g_assert (gdk_window_has_impl (window));
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-08-24 13:18:10 +00:00
|
|
|
if (_gdk_native_windows)
|
|
|
|
return FALSE; /* No need for implicit paints since we can't merge draws anyway */
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (GDK_IS_PAINTABLE (window->impl))
|
2008-07-18 13:03:42 +00:00
|
|
|
return FALSE; /* Implementation does double buffering */
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->paint_stack != NULL ||
|
|
|
|
window->implicit_paint != NULL)
|
2008-07-18 13:03:42 +00:00
|
|
|
return FALSE; /* Don't stack implicit paints */
|
|
|
|
|
2009-12-08 15:09:04 +00:00
|
|
|
/* Never do implicit paints for foreign windows, they don't need
|
|
|
|
* double buffer combination since they have no client side children,
|
2010-08-27 13:21:58 +00:00
|
|
|
* and creating surfaces for them is risky since they could disappear
|
2009-12-08 15:09:04 +00:00
|
|
|
* at any time
|
|
|
|
*/
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->window_type == GDK_WINDOW_FOREIGN)
|
2009-12-08 15:09:04 +00:00
|
|
|
return FALSE;
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
paint = g_new (GdkWindowPaint, 1);
|
2010-06-28 12:44:12 +00:00
|
|
|
paint->region = cairo_region_create (); /* Empty */
|
2008-07-18 13:03:42 +00:00
|
|
|
paint->uses_implicit = FALSE;
|
2009-09-04 11:14:25 +00:00
|
|
|
paint->flushed = FALSE;
|
2010-08-26 09:21:51 +00:00
|
|
|
paint->surface = gdk_window_create_similar_surface (window,
|
2010-08-28 20:26:48 +00:00
|
|
|
gdk_window_get_content (window),
|
2010-08-26 09:21:51 +00:00
|
|
|
MAX (rect->width, 1),
|
|
|
|
MAX (rect->height, 1));
|
|
|
|
cairo_surface_set_device_offset (paint->surface, -rect->x, -rect->y);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->implicit_paint = paint;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-11-23 00:32:19 +00:00
|
|
|
static cairo_surface_t *
|
|
|
|
gdk_window_ref_impl_surface (GdkWindow *window)
|
|
|
|
{
|
2010-11-23 00:46:03 +00:00
|
|
|
return GDK_WINDOW_IMPL_GET_CLASS (window->impl)->ref_cairo_surface (window);
|
2010-11-23 00:32:19 +00:00
|
|
|
}
|
|
|
|
|
2010-10-06 17:12:27 +00:00
|
|
|
static cairo_t *
|
|
|
|
gdk_cairo_create_for_impl (GdkWindow *window)
|
|
|
|
{
|
|
|
|
cairo_surface_t *surface;
|
|
|
|
cairo_t *cr;
|
|
|
|
|
2010-11-23 00:32:19 +00:00
|
|
|
surface = gdk_window_ref_impl_surface (window);
|
2010-10-06 17:12:27 +00:00
|
|
|
cr = cairo_create (surface);
|
|
|
|
|
|
|
|
cairo_surface_destroy (surface);
|
|
|
|
|
|
|
|
return cr;
|
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Ensure that all content related to this (sub)window is pushed to the
|
2009-05-26 09:30:46 +00:00
|
|
|
native region. If there is an active paint then that area is not
|
|
|
|
pushed, in order to not show partially finished double buffers. */
|
2008-07-18 13:03:42 +00:00
|
|
|
static void
|
|
|
|
gdk_window_flush_implicit_paint (GdkWindow *window)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *impl_window;
|
2008-07-18 13:03:42 +00:00
|
|
|
GdkWindowPaint *paint;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region;
|
2009-05-26 09:30:46 +00:00
|
|
|
GSList *list;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_window = gdk_window_get_impl_window (window);
|
2008-07-18 13:03:42 +00:00
|
|
|
if (impl_window->implicit_paint == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
paint = impl_window->implicit_paint;
|
2009-09-04 11:14:25 +00:00
|
|
|
paint->flushed = TRUE;
|
2010-11-22 23:55:39 +00:00
|
|
|
region = cairo_region_copy (window->clip_region_with_children);
|
2009-05-26 09:30:46 +00:00
|
|
|
|
|
|
|
/* Don't flush active double buffers, as that may show partially done
|
|
|
|
* rendering */
|
2010-11-22 23:55:39 +00:00
|
|
|
for (list = window->paint_stack; list != NULL; list = list->next)
|
2009-05-26 09:30:46 +00:00
|
|
|
{
|
|
|
|
GdkWindowPaint *tmp_paint = list->data;
|
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (region, tmp_paint->region);
|
2009-05-26 09:30:46 +00:00
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_translate (region, -window->abs_x, -window->abs_y);
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_intersect (region, paint->region);
|
2009-05-26 09:30:46 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
if (!GDK_WINDOW_DESTROYED (window) && !cairo_region_is_empty (region))
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-07-19 10:24:17 +00:00
|
|
|
cairo_t *cr;
|
|
|
|
|
2009-09-04 11:10:35 +00:00
|
|
|
/* Remove flushed region from the implicit paint */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (paint->region, region);
|
2009-09-04 11:10:35 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Some regions are valid, push these to window now */
|
2010-10-06 17:12:27 +00:00
|
|
|
cr = gdk_cairo_create_for_impl (window);
|
2010-07-19 10:24:17 +00:00
|
|
|
gdk_cairo_region (cr, region);
|
2010-08-26 09:21:51 +00:00
|
|
|
cairo_clip (cr);
|
|
|
|
cairo_set_source_surface (cr, paint->surface, 0, 0);
|
|
|
|
cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
|
|
|
|
cairo_paint (cr);
|
2010-07-19 10:24:17 +00:00
|
|
|
cairo_destroy (cr);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2010-07-19 10:24:17 +00:00
|
|
|
|
|
|
|
cairo_region_destroy (region);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Ends an implicit paint, paired with gdk_window_begin_implicit_paint returning TRUE */
|
|
|
|
static void
|
|
|
|
gdk_window_end_implicit_paint (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GdkWindowPaint *paint;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
g_assert (gdk_window_has_impl (window));
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
g_assert (window->implicit_paint != NULL);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
paint = window->implicit_paint;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->implicit_paint = NULL;
|
2009-01-22 19:54:11 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
if (!GDK_WINDOW_DESTROYED (window) && !cairo_region_is_empty (paint->region))
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-07-19 11:29:47 +00:00
|
|
|
cairo_t *cr;
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Some regions are valid, push these to window now */
|
2010-10-06 17:12:27 +00:00
|
|
|
cr = gdk_cairo_create_for_impl (window);
|
2010-08-13 23:46:04 +00:00
|
|
|
gdk_cairo_region (cr, paint->region);
|
|
|
|
cairo_clip (cr);
|
2010-08-26 09:21:51 +00:00
|
|
|
cairo_set_source_surface (cr, paint->surface, 0, 0);
|
2010-08-13 18:46:12 +00:00
|
|
|
cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
|
2010-08-13 23:46:04 +00:00
|
|
|
cairo_paint (cr);
|
2010-07-19 11:29:47 +00:00
|
|
|
cairo_destroy (cr);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2010-07-19 11:29:47 +00:00
|
|
|
|
|
|
|
cairo_region_destroy (paint->region);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-08-26 09:21:51 +00:00
|
|
|
cairo_surface_destroy (paint->surface);
|
2008-07-18 13:03:42 +00:00
|
|
|
g_free (paint);
|
|
|
|
}
|
|
|
|
|
2001-02-20 05:21:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_begin_paint_rect:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @rectangle: rectangle you intend to draw to
|
|
|
|
*
|
|
|
|
* A convenience wrapper around gdk_window_begin_paint_region() which
|
|
|
|
* creates a rectangular region for you. See
|
|
|
|
* gdk_window_begin_paint_region() for details.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-02-20 05:21:44 +00:00
|
|
|
**/
|
2000-03-28 01:24:44 +00:00
|
|
|
void
|
2008-01-14 14:02:12 +00:00
|
|
|
gdk_window_begin_paint_rect (GdkWindow *window,
|
2009-06-01 10:04:36 +00:00
|
|
|
const GdkRectangle *rectangle)
|
2000-03-28 01:24:44 +00:00
|
|
|
{
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region;
|
2000-03-28 01:24:44 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
region = cairo_region_create_rectangle (rectangle);
|
2000-03-28 01:24:44 +00:00
|
|
|
gdk_window_begin_paint_region (window, region);
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (region);
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
|
|
|
|
2001-02-20 05:21:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_begin_paint_region:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @region: region you intend to draw to
|
|
|
|
*
|
|
|
|
* Indicates that you are beginning the process of redrawing @region.
|
|
|
|
* A backing store (offscreen buffer) large enough to contain @region
|
|
|
|
* will be created. The backing store will be initialized with the
|
2010-08-27 13:21:58 +00:00
|
|
|
* background color or background surface for @window. Then, all
|
2001-02-20 05:21:44 +00:00
|
|
|
* drawing operations performed on @window will be diverted to the
|
|
|
|
* backing store. When you call gdk_window_end_paint(), the backing
|
|
|
|
* store will be copied to @window, making it visible onscreen. Only
|
2001-06-28 05:24:00 +00:00
|
|
|
* the part of @window contained in @region will be modified; that is,
|
2001-02-20 05:21:44 +00:00
|
|
|
* drawing operations are clipped to @region.
|
|
|
|
*
|
|
|
|
* The net result of all this is to remove flicker, because the user
|
|
|
|
* sees the finished product appear all at once when you call
|
|
|
|
* gdk_window_end_paint(). If you draw to @window directly without
|
|
|
|
* calling gdk_window_begin_paint_region(), the user may see flicker
|
|
|
|
* as individual drawing operations are performed in sequence. The
|
|
|
|
* clipping and background-initializing features of
|
|
|
|
* gdk_window_begin_paint_region() are conveniences for the
|
|
|
|
* programmer, so you can avoid doing that work yourself.
|
|
|
|
*
|
|
|
|
* When using GTK+, the widget system automatically places calls to
|
|
|
|
* gdk_window_begin_paint_region() and gdk_window_end_paint() around
|
|
|
|
* emissions of the expose_event signal. That is, if you're writing an
|
|
|
|
* expose event handler, you can assume that the exposed area in
|
|
|
|
* #GdkEventExpose has already been cleared to the window background,
|
|
|
|
* is already set as the clip region, and already has a backing store.
|
|
|
|
* Therefore in most cases, application code need not call
|
|
|
|
* gdk_window_begin_paint_region(). (You can disable the automatic
|
|
|
|
* calls around expose events on a widget-by-widget basis by calling
|
|
|
|
* gtk_widget_set_double_buffered().)
|
|
|
|
*
|
|
|
|
* If you call this function multiple times before calling the
|
|
|
|
* matching gdk_window_end_paint(), the backing stores are pushed onto
|
|
|
|
* a stack. gdk_window_end_paint() copies the topmost backing store
|
|
|
|
* onscreen, subtracts the topmost region from all other regions in
|
|
|
|
* the stack, and pops the stack. All drawing operations affect only
|
|
|
|
* the topmost backing store in the stack. One matching call to
|
|
|
|
* gdk_window_end_paint() is required for each call to
|
|
|
|
* gdk_window_begin_paint_region().
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-02-20 05:21:44 +00:00
|
|
|
**/
|
2009-06-01 10:04:36 +00:00
|
|
|
void
|
2008-01-14 14:02:12 +00:00
|
|
|
gdk_window_begin_paint_region (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
const cairo_region_t *region)
|
2000-03-28 01:24:44 +00:00
|
|
|
{
|
Large changes to the Win32 backend, partially made necessary by the
2000-05-02 Tor Lillqvist <tml@iki.fi>
Large changes to the Win32 backend, partially made necessary by
the changes to the backend-independent internal
structures. Attempts to implement similar backing store stuff as
on X11. The current (CVS) version of the Win32 backend is *not* as
stable as it was before the no-flicker branch was merged. A
zipfile with that version is available from
http://www.gimp.org/win32/. That should be use by "production"
code until this CVS version is usable. (But note, the Win32
backend has never been claimed to be "production quality".)
* README.win32: Add the above comment about versions.
* gdk/gdkwindow.c: Don't use backing store for now on Win32.
* gdk/gdk.def: Update.
* gdk/gdkfont.h: Declare temporary Win32-only functions. Will
presumably be replaced by some more better mechanism as 1.4 gets
closer to release shape.
* gdk/makefile.{cygwin,msc}: Update.
* gdk/win32/*.c: Correct inclusions of the backend-specific and
internal headers. Change code according to changes in these. Use
gdk_drawable_*, not gdk_window_* where necessary.
* gdk/win32/gdkdnd-win32.c: Use MISC selector for GDK_NOTE, not
our old DND.
* gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text): Don't try
to interpret single characters as UTF-8. Thanks to Hans Breuer.
Use correct function name in warning messages.
* gdk/win32/gdkevents-win32.c: Use correct parameter lists for the
GSourceFuncs gdk_event_prepare and gdk_event_check.
(gdk_event_get_graphics_expose): Do implement, use
PeekMessage. Thanks to Hans Breuer.
(event_mask_string): Debugging function to print an GdkEventMask.
(gdk_pointer_grab): Use it.
* gdk/win32/gdkfont-win32.c: The Unicode subrange that the
(old) book I used claimed was Hangul actually is CJK Unified
Ideographs Extension A. Also, Hangul Syllables were missing.
Improve logging.
* gdk/win32/gdkgc-win32.c: Largish changes.
* gdk/win32/gdkim-win32.c (gdk_set_locale): Use
g_win32_getlocale() from GLib, and not setlocale() to get current
locale name.
* gdk/win32/gdkprivate-win32.h
* gdk/win32/gdkwin32.h: Move stuff from gdkprivate-win32.h to
gdkwin32.h, similarily as in the X11 backend.
* gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Bugfix,
assignment was used instead of equals in if test. Thanks to Hans
Breuer.
* gdk/win32/makefile.{cygwin,msc}
* gtk/makefile.{cygwin,msc}: Updates. Better kludge to get the
path to the Win32 headers that works also with the mingw compiler.
* gtk/gtkstyle.c: Include <string.h>.
2000-05-01 22:06:49 +00:00
|
|
|
#ifdef USE_BACKING_STORE
|
2000-03-28 01:24:44 +00:00
|
|
|
GdkRectangle clip_box;
|
2008-07-18 13:03:42 +00:00
|
|
|
GdkWindowPaint *paint, *implicit_paint;
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *impl_window;
|
2003-08-20 21:11:25 +00:00
|
|
|
GSList *list;
|
2008-10-21 21:42:39 +00:00
|
|
|
|
2000-03-28 01:24:44 +00:00
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
2000-05-15 16:09:53 +00:00
|
|
|
return;
|
2000-03-28 01:24:44 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (GDK_IS_PAINTABLE (window->impl))
|
2006-04-10 19:43:08 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkPaintableIface *iface = GDK_PAINTABLE_GET_IFACE (window->impl);
|
2007-01-25 14:24:53 +00:00
|
|
|
|
|
|
|
if (iface->begin_paint_region)
|
2010-11-22 23:55:39 +00:00
|
|
|
iface->begin_paint_region ((GdkPaintable*)window->impl, window, region);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2006-04-10 19:43:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_window = gdk_window_get_impl_window (window);
|
2008-07-18 13:03:42 +00:00
|
|
|
implicit_paint = impl_window->implicit_paint;
|
|
|
|
|
2003-08-20 21:11:25 +00:00
|
|
|
paint = g_new (GdkWindowPaint, 1);
|
2010-06-28 12:44:12 +00:00
|
|
|
paint->region = cairo_region_copy (region);
|
2008-12-04 19:18:02 +00:00
|
|
|
paint->region_tag = new_region_tag ();
|
2009-01-22 19:54:11 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_intersect (paint->region, window->clip_region_with_children);
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_get_extents (paint->region, &clip_box);
|
2009-01-22 19:54:11 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_translate (paint->region, window->abs_x, window->abs_y);
|
2009-01-22 19:54:11 +00:00
|
|
|
|
|
|
|
/* Mark the region as valid on the implicit paint */
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-22 19:54:11 +00:00
|
|
|
if (implicit_paint)
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_union (implicit_paint->region, paint->region);
|
2009-01-22 19:54:11 +00:00
|
|
|
|
|
|
|
/* Convert back to normal coords */
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_translate (paint->region, -window->abs_x, -window->abs_y);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (implicit_paint)
|
|
|
|
{
|
|
|
|
paint->uses_implicit = TRUE;
|
2010-08-26 09:21:51 +00:00
|
|
|
paint->surface = cairo_surface_create_for_rectangle (implicit_paint->surface,
|
2010-11-22 23:55:39 +00:00
|
|
|
window->abs_x + clip_box.x,
|
|
|
|
window->abs_y + clip_box.y,
|
2010-08-26 09:21:51 +00:00
|
|
|
MAX (clip_box.width, 1),
|
|
|
|
MAX (clip_box.height, 1));
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
paint->uses_implicit = FALSE;
|
2010-08-26 09:21:51 +00:00
|
|
|
paint->surface = gdk_window_create_similar_surface (window,
|
2010-08-28 20:26:48 +00:00
|
|
|
gdk_window_get_content (window),
|
2010-08-26 09:21:51 +00:00
|
|
|
MAX (clip_box.width, 1),
|
|
|
|
MAX (clip_box.height, 1));
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2010-08-26 09:21:51 +00:00
|
|
|
cairo_surface_set_device_offset (paint->surface, -clip_box.x, -clip_box.y);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
for (list = window->paint_stack; list != NULL; list = list->next)
|
2000-03-28 01:24:44 +00:00
|
|
|
{
|
2003-08-20 21:11:25 +00:00
|
|
|
GdkWindowPaint *tmp_paint = list->data;
|
2000-03-28 01:24:44 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (tmp_paint->region, paint->region);
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->paint_stack = g_slist_prepend (window->paint_stack, paint);
|
2003-08-20 21:11:25 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
if (!cairo_region_is_empty (paint->region))
|
2003-08-20 21:11:25 +00:00
|
|
|
{
|
2009-02-05 13:53:07 +00:00
|
|
|
gdk_window_clear_backing_region (window,
|
|
|
|
paint->region);
|
2003-08-20 21:11:25 +00:00
|
|
|
}
|
2008-12-04 18:36:13 +00:00
|
|
|
|
Large changes to the Win32 backend, partially made necessary by the
2000-05-02 Tor Lillqvist <tml@iki.fi>
Large changes to the Win32 backend, partially made necessary by
the changes to the backend-independent internal
structures. Attempts to implement similar backing store stuff as
on X11. The current (CVS) version of the Win32 backend is *not* as
stable as it was before the no-flicker branch was merged. A
zipfile with that version is available from
http://www.gimp.org/win32/. That should be use by "production"
code until this CVS version is usable. (But note, the Win32
backend has never been claimed to be "production quality".)
* README.win32: Add the above comment about versions.
* gdk/gdkwindow.c: Don't use backing store for now on Win32.
* gdk/gdk.def: Update.
* gdk/gdkfont.h: Declare temporary Win32-only functions. Will
presumably be replaced by some more better mechanism as 1.4 gets
closer to release shape.
* gdk/makefile.{cygwin,msc}: Update.
* gdk/win32/*.c: Correct inclusions of the backend-specific and
internal headers. Change code according to changes in these. Use
gdk_drawable_*, not gdk_window_* where necessary.
* gdk/win32/gdkdnd-win32.c: Use MISC selector for GDK_NOTE, not
our old DND.
* gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text): Don't try
to interpret single characters as UTF-8. Thanks to Hans Breuer.
Use correct function name in warning messages.
* gdk/win32/gdkevents-win32.c: Use correct parameter lists for the
GSourceFuncs gdk_event_prepare and gdk_event_check.
(gdk_event_get_graphics_expose): Do implement, use
PeekMessage. Thanks to Hans Breuer.
(event_mask_string): Debugging function to print an GdkEventMask.
(gdk_pointer_grab): Use it.
* gdk/win32/gdkfont-win32.c: The Unicode subrange that the
(old) book I used claimed was Hangul actually is CJK Unified
Ideographs Extension A. Also, Hangul Syllables were missing.
Improve logging.
* gdk/win32/gdkgc-win32.c: Largish changes.
* gdk/win32/gdkim-win32.c (gdk_set_locale): Use
g_win32_getlocale() from GLib, and not setlocale() to get current
locale name.
* gdk/win32/gdkprivate-win32.h
* gdk/win32/gdkwin32.h: Move stuff from gdkprivate-win32.h to
gdkwin32.h, similarily as in the X11 backend.
* gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Bugfix,
assignment was used instead of equals in if test. Thanks to Hans
Breuer.
* gdk/win32/makefile.{cygwin,msc}
* gtk/makefile.{cygwin,msc}: Updates. Better kludge to get the
path to the Win32 headers that works also with the mingw compiler.
* gtk/gtkstyle.c: Include <string.h>.
2000-05-01 22:06:49 +00:00
|
|
|
#endif /* USE_BACKING_STORE */
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
|
|
|
|
2001-02-20 05:21:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_end_paint:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Indicates that the backing store created by the most recent call to
|
|
|
|
* gdk_window_begin_paint_region() should be copied onscreen and
|
|
|
|
* deleted, leaving the next-most-recent backing store or no backing
|
|
|
|
* store at all as the active paint region. See
|
|
|
|
* gdk_window_begin_paint_region() for full details. It is an error to
|
|
|
|
* call this function without a matching
|
|
|
|
* gdk_window_begin_paint_region() first.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-02-20 05:21:44 +00:00
|
|
|
**/
|
2000-03-28 01:24:44 +00:00
|
|
|
void
|
|
|
|
gdk_window_end_paint (GdkWindow *window)
|
|
|
|
{
|
Large changes to the Win32 backend, partially made necessary by the
2000-05-02 Tor Lillqvist <tml@iki.fi>
Large changes to the Win32 backend, partially made necessary by
the changes to the backend-independent internal
structures. Attempts to implement similar backing store stuff as
on X11. The current (CVS) version of the Win32 backend is *not* as
stable as it was before the no-flicker branch was merged. A
zipfile with that version is available from
http://www.gimp.org/win32/. That should be use by "production"
code until this CVS version is usable. (But note, the Win32
backend has never been claimed to be "production quality".)
* README.win32: Add the above comment about versions.
* gdk/gdkwindow.c: Don't use backing store for now on Win32.
* gdk/gdk.def: Update.
* gdk/gdkfont.h: Declare temporary Win32-only functions. Will
presumably be replaced by some more better mechanism as 1.4 gets
closer to release shape.
* gdk/makefile.{cygwin,msc}: Update.
* gdk/win32/*.c: Correct inclusions of the backend-specific and
internal headers. Change code according to changes in these. Use
gdk_drawable_*, not gdk_window_* where necessary.
* gdk/win32/gdkdnd-win32.c: Use MISC selector for GDK_NOTE, not
our old DND.
* gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text): Don't try
to interpret single characters as UTF-8. Thanks to Hans Breuer.
Use correct function name in warning messages.
* gdk/win32/gdkevents-win32.c: Use correct parameter lists for the
GSourceFuncs gdk_event_prepare and gdk_event_check.
(gdk_event_get_graphics_expose): Do implement, use
PeekMessage. Thanks to Hans Breuer.
(event_mask_string): Debugging function to print an GdkEventMask.
(gdk_pointer_grab): Use it.
* gdk/win32/gdkfont-win32.c: The Unicode subrange that the
(old) book I used claimed was Hangul actually is CJK Unified
Ideographs Extension A. Also, Hangul Syllables were missing.
Improve logging.
* gdk/win32/gdkgc-win32.c: Largish changes.
* gdk/win32/gdkim-win32.c (gdk_set_locale): Use
g_win32_getlocale() from GLib, and not setlocale() to get current
locale name.
* gdk/win32/gdkprivate-win32.h
* gdk/win32/gdkwin32.h: Move stuff from gdkprivate-win32.h to
gdkwin32.h, similarily as in the X11 backend.
* gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Bugfix,
assignment was used instead of equals in if test. Thanks to Hans
Breuer.
* gdk/win32/makefile.{cygwin,msc}
* gtk/makefile.{cygwin,msc}: Updates. Better kludge to get the
path to the Win32 headers that works also with the mingw compiler.
* gtk/gtkstyle.c: Include <string.h>.
2000-05-01 22:06:49 +00:00
|
|
|
#ifdef USE_BACKING_STORE
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *composited;
|
2000-03-28 01:24:44 +00:00
|
|
|
GdkWindowPaint *paint;
|
|
|
|
GdkRectangle clip_box;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *full_clip;
|
2000-03-28 01:24:44 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
2000-05-15 16:09:53 +00:00
|
|
|
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
2000-05-15 16:09:53 +00:00
|
|
|
return;
|
2001-02-20 05:21:44 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (GDK_IS_PAINTABLE (window->impl))
|
2006-04-10 19:43:08 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkPaintableIface *iface = GDK_PAINTABLE_GET_IFACE (window->impl);
|
2007-01-25 14:24:53 +00:00
|
|
|
|
|
|
|
if (iface->end_paint)
|
2010-11-22 23:55:39 +00:00
|
|
|
iface->end_paint ((GdkPaintable*)window->impl);
|
2006-04-10 19:43:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->paint_stack == NULL)
|
2001-02-20 05:21:44 +00:00
|
|
|
{
|
|
|
|
g_warning (G_STRLOC": no preceding call to gdk_window_begin_paint_region(), see documentation");
|
|
|
|
return;
|
|
|
|
}
|
2000-03-28 01:24:44 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
paint = window->paint_stack->data;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->paint_stack = g_slist_delete_link (window->paint_stack,
|
|
|
|
window->paint_stack);
|
2000-03-28 01:24:44 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_get_extents (paint->region, &clip_box);
|
2000-03-28 01:24:44 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (!paint->uses_implicit)
|
|
|
|
{
|
2010-07-19 21:49:09 +00:00
|
|
|
cairo_t *cr;
|
|
|
|
|
2009-01-22 19:54:11 +00:00
|
|
|
gdk_window_flush_outstanding_moves (window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
full_clip = cairo_region_copy (window->clip_region_with_children);
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_intersect (full_clip, paint->region);
|
2010-07-19 21:49:09 +00:00
|
|
|
|
2010-08-26 11:46:34 +00:00
|
|
|
cr = gdk_cairo_create (window);
|
2010-08-26 09:21:51 +00:00
|
|
|
cairo_set_source_surface (cr, paint->surface, 0, 0);
|
2010-07-19 21:49:09 +00:00
|
|
|
gdk_cairo_region (cr, full_clip);
|
|
|
|
cairo_fill (cr);
|
|
|
|
|
|
|
|
cairo_destroy (cr);
|
|
|
|
cairo_region_destroy (full_clip);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2005-03-17 01:54:40 +00:00
|
|
|
cairo_surface_destroy (paint->surface);
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (paint->region);
|
2000-03-28 01:24:44 +00:00
|
|
|
g_free (paint);
|
2007-06-01 12:16:12 +00:00
|
|
|
|
|
|
|
/* find a composited window in our hierarchy to signal its
|
|
|
|
* parent to redraw, calculating the clip box as we go...
|
|
|
|
*
|
|
|
|
* stop if parent becomes NULL since then we'd have nowhere
|
|
|
|
* to draw (ie: 'composited' will always be non-NULL here).
|
|
|
|
*/
|
2010-11-22 23:55:39 +00:00
|
|
|
for (composited = window;
|
2007-06-01 12:16:12 +00:00
|
|
|
composited->parent;
|
|
|
|
composited = composited->parent)
|
|
|
|
{
|
|
|
|
clip_box.x += composited->x;
|
|
|
|
clip_box.y += composited->y;
|
2010-09-20 10:53:46 +00:00
|
|
|
clip_box.width = MIN (clip_box.width, composited->parent->width - clip_box.x);
|
|
|
|
clip_box.height = MIN (clip_box.height, composited->parent->height - clip_box.y);
|
2007-06-01 12:16:12 +00:00
|
|
|
|
|
|
|
if (composited->composited)
|
|
|
|
{
|
|
|
|
gdk_window_invalidate_rect (GDK_WINDOW (composited->parent),
|
|
|
|
&clip_box, FALSE);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
Large changes to the Win32 backend, partially made necessary by the
2000-05-02 Tor Lillqvist <tml@iki.fi>
Large changes to the Win32 backend, partially made necessary by
the changes to the backend-independent internal
structures. Attempts to implement similar backing store stuff as
on X11. The current (CVS) version of the Win32 backend is *not* as
stable as it was before the no-flicker branch was merged. A
zipfile with that version is available from
http://www.gimp.org/win32/. That should be use by "production"
code until this CVS version is usable. (But note, the Win32
backend has never been claimed to be "production quality".)
* README.win32: Add the above comment about versions.
* gdk/gdkwindow.c: Don't use backing store for now on Win32.
* gdk/gdk.def: Update.
* gdk/gdkfont.h: Declare temporary Win32-only functions. Will
presumably be replaced by some more better mechanism as 1.4 gets
closer to release shape.
* gdk/makefile.{cygwin,msc}: Update.
* gdk/win32/*.c: Correct inclusions of the backend-specific and
internal headers. Change code according to changes in these. Use
gdk_drawable_*, not gdk_window_* where necessary.
* gdk/win32/gdkdnd-win32.c: Use MISC selector for GDK_NOTE, not
our old DND.
* gdk/win32/gdkdrawable-win32.c (gdk_win32_draw_text): Don't try
to interpret single characters as UTF-8. Thanks to Hans Breuer.
Use correct function name in warning messages.
* gdk/win32/gdkevents-win32.c: Use correct parameter lists for the
GSourceFuncs gdk_event_prepare and gdk_event_check.
(gdk_event_get_graphics_expose): Do implement, use
PeekMessage. Thanks to Hans Breuer.
(event_mask_string): Debugging function to print an GdkEventMask.
(gdk_pointer_grab): Use it.
* gdk/win32/gdkfont-win32.c: The Unicode subrange that the
(old) book I used claimed was Hangul actually is CJK Unified
Ideographs Extension A. Also, Hangul Syllables were missing.
Improve logging.
* gdk/win32/gdkgc-win32.c: Largish changes.
* gdk/win32/gdkim-win32.c (gdk_set_locale): Use
g_win32_getlocale() from GLib, and not setlocale() to get current
locale name.
* gdk/win32/gdkprivate-win32.h
* gdk/win32/gdkwin32.h: Move stuff from gdkprivate-win32.h to
gdkwin32.h, similarily as in the X11 backend.
* gdk/win32/gdkwindow-win32.c (gdk_propagate_shapes): Bugfix,
assignment was used instead of equals in if test. Thanks to Hans
Breuer.
* gdk/win32/makefile.{cygwin,msc}
* gtk/makefile.{cygwin,msc}: Updates. Better kludge to get the
path to the Win32 headers that works also with the mingw compiler.
* gtk/gtkstyle.c: Include <string.h>.
2000-05-01 22:06:49 +00:00
|
|
|
#endif /* USE_BACKING_STORE */
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
|
|
|
|
2000-05-15 16:09:53 +00:00
|
|
|
static void
|
|
|
|
gdk_window_free_paint_stack (GdkWindow *window)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->paint_stack)
|
2000-05-15 16:09:53 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GSList *tmp_list = window->paint_stack;
|
2000-05-15 16:09:53 +00:00
|
|
|
|
|
|
|
while (tmp_list)
|
|
|
|
{
|
|
|
|
GdkWindowPaint *paint = tmp_list->data;
|
2000-06-20 20:20:38 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (tmp_list == window->paint_stack)
|
2010-08-26 09:21:51 +00:00
|
|
|
cairo_surface_destroy (paint->surface);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (paint->region);
|
2000-05-15 16:09:53 +00:00
|
|
|
g_free (paint);
|
|
|
|
|
|
|
|
tmp_list = tmp_list->next;
|
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
g_slist_free (window->paint_stack);
|
|
|
|
window->paint_stack = NULL;
|
2000-05-15 16:09:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-09 19:13:02 +00:00
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
do_move_region_bits_on_impl (GdkWindow *impl_window,
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *dest_region, /* In impl window coords */
|
2008-12-09 19:13:02 +00:00
|
|
|
int dx, int dy)
|
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2009-01-20 21:29:19 +00:00
|
|
|
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (impl_window->impl);
|
2009-02-08 12:10:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class->translate (impl_window, dest_region, dx, dy);
|
2008-12-09 19:13:02 +00:00
|
|
|
}
|
|
|
|
|
2009-02-08 12:17:37 +00:00
|
|
|
static GdkWindowRegionMove *
|
2010-06-28 12:54:37 +00:00
|
|
|
gdk_window_region_move_new (cairo_region_t *region,
|
2009-02-08 12:17:37 +00:00
|
|
|
int dx, int dy)
|
2008-12-09 19:13:02 +00:00
|
|
|
{
|
2009-02-07 17:46:31 +00:00
|
|
|
GdkWindowRegionMove *move;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-09 19:13:02 +00:00
|
|
|
move = g_slice_new (GdkWindowRegionMove);
|
2010-07-21 18:37:33 +00:00
|
|
|
move->dest_region = cairo_region_copy (region);
|
2008-12-09 19:13:02 +00:00
|
|
|
move->dx = dx;
|
|
|
|
move->dy = dy;
|
|
|
|
|
2009-02-08 12:17:37 +00:00
|
|
|
return move;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_window_region_move_free (GdkWindowRegionMove *move)
|
|
|
|
{
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (move->dest_region);
|
2009-02-08 12:17:37 +00:00
|
|
|
g_slice_free (GdkWindowRegionMove, move);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
append_move_region (GdkWindow *impl_window,
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *new_dest_region,
|
2009-02-08 12:17:37 +00:00
|
|
|
int dx, int dy)
|
|
|
|
{
|
2009-02-09 13:18:27 +00:00
|
|
|
GdkWindowRegionMove *move, *old_move;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *new_total_region, *old_total_region;
|
|
|
|
cairo_region_t *source_overlaps_destination;
|
|
|
|
cairo_region_t *non_overwritten;
|
2009-02-09 13:18:27 +00:00
|
|
|
gboolean added_move;
|
|
|
|
GList *l, *prev;
|
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
if (cairo_region_is_empty (new_dest_region))
|
2009-02-09 13:18:27 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* In principle this could just append the move to the list of outstanding
|
|
|
|
moves that will be replayed before drawing anything when we're handling
|
|
|
|
exposes. However, we'd like to do a bit better since its commonly the case
|
|
|
|
that we get multiple copies where A is copied to B and then B is copied
|
|
|
|
to C, and we'd like to express this as a simple copy A to C operation. */
|
|
|
|
|
|
|
|
/* We approach this by taking the new move and pushing it ahead of moves
|
|
|
|
starting at the end of the list and stopping when its not safe to do so.
|
2009-06-24 18:59:29 +00:00
|
|
|
It's not safe to push past a move if either the source of the new move
|
2009-02-09 13:18:27 +00:00
|
|
|
is in the destination of the old move, or if the destination of the new
|
|
|
|
move is in the source of the new move, or if the destination of the new
|
|
|
|
move overlaps the destination of the old move. We simplify this by
|
|
|
|
just comparing the total regions (src + dest) */
|
2010-06-28 12:44:12 +00:00
|
|
|
new_total_region = cairo_region_copy (new_dest_region);
|
|
|
|
cairo_region_translate (new_total_region, -dx, -dy);
|
|
|
|
cairo_region_union (new_total_region, new_dest_region);
|
2009-02-09 13:18:27 +00:00
|
|
|
|
|
|
|
added_move = FALSE;
|
|
|
|
for (l = g_list_last (impl_window->outstanding_moves); l != NULL; l = prev)
|
|
|
|
{
|
|
|
|
prev = l->prev;
|
|
|
|
old_move = l->data;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
old_total_region = cairo_region_copy (old_move->dest_region);
|
|
|
|
cairo_region_translate (old_total_region, -old_move->dx, -old_move->dy);
|
|
|
|
cairo_region_union (old_total_region, old_move->dest_region);
|
2009-02-09 13:18:27 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_intersect (old_total_region, new_total_region);
|
2009-02-09 13:18:27 +00:00
|
|
|
/* If these regions intersect then its not safe to push the
|
|
|
|
new region before the old one */
|
2010-06-28 12:44:12 +00:00
|
|
|
if (!cairo_region_is_empty (old_total_region))
|
2009-02-09 13:18:27 +00:00
|
|
|
{
|
|
|
|
/* The area where the new moves source overlaps the old ones
|
|
|
|
destination */
|
2010-06-28 12:44:12 +00:00
|
|
|
source_overlaps_destination = cairo_region_copy (new_dest_region);
|
|
|
|
cairo_region_translate (source_overlaps_destination, -dx, -dy);
|
|
|
|
cairo_region_intersect (source_overlaps_destination, old_move->dest_region);
|
|
|
|
cairo_region_translate (source_overlaps_destination, dx, dy);
|
2009-02-09 13:18:27 +00:00
|
|
|
|
|
|
|
/* We can do all sort of optimizations here, but to do things safely it becomes
|
|
|
|
quite complicated. However, a very common case is that you copy something first,
|
|
|
|
then copy all that or a subset of it to a new location (i.e. if you scroll twice
|
|
|
|
in the same direction). We'd like to detect this case and optimize it to one
|
|
|
|
copy. */
|
2010-06-28 12:44:12 +00:00
|
|
|
if (cairo_region_equal (source_overlaps_destination, new_dest_region))
|
2009-02-09 13:18:27 +00:00
|
|
|
{
|
|
|
|
/* This means we might be able to replace the old move and the new one
|
|
|
|
with the new one read from the old ones source, and a second copy of
|
|
|
|
the non-overwritten parts of the old move. However, such a split
|
|
|
|
is only valid if the source in the old move isn't overwritten
|
|
|
|
by the destination of the new one */
|
|
|
|
|
|
|
|
/* the new destination of old move if split is ok: */
|
2010-06-28 12:44:12 +00:00
|
|
|
non_overwritten = cairo_region_copy (old_move->dest_region);
|
|
|
|
cairo_region_subtract (non_overwritten, new_dest_region);
|
2009-02-09 13:18:27 +00:00
|
|
|
/* move to source region */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_translate (non_overwritten, -old_move->dx, -old_move->dy);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_intersect (non_overwritten, new_dest_region);
|
|
|
|
if (cairo_region_is_empty (non_overwritten))
|
2009-02-09 13:18:27 +00:00
|
|
|
{
|
|
|
|
added_move = TRUE;
|
|
|
|
move = gdk_window_region_move_new (new_dest_region,
|
|
|
|
dx + old_move->dx,
|
|
|
|
dy + old_move->dy);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-02-09 13:18:27 +00:00
|
|
|
impl_window->outstanding_moves =
|
|
|
|
g_list_insert_before (impl_window->outstanding_moves,
|
|
|
|
l, move);
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (old_move->dest_region, new_dest_region);
|
2009-02-09 13:18:27 +00:00
|
|
|
}
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (non_overwritten);
|
2009-02-09 13:18:27 +00:00
|
|
|
}
|
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (source_overlaps_destination);
|
|
|
|
cairo_region_destroy (old_total_region);
|
2009-06-01 10:04:36 +00:00
|
|
|
break;
|
2009-02-09 13:18:27 +00:00
|
|
|
}
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (old_total_region);
|
2009-02-09 13:18:27 +00:00
|
|
|
}
|
2009-02-08 12:17:37 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (new_total_region);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-02-09 13:18:27 +00:00
|
|
|
if (!added_move)
|
|
|
|
{
|
|
|
|
move = gdk_window_region_move_new (new_dest_region, dx, dy);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-02-09 13:18:27 +00:00
|
|
|
if (l == NULL)
|
|
|
|
impl_window->outstanding_moves =
|
|
|
|
g_list_prepend (impl_window->outstanding_moves,
|
|
|
|
move);
|
|
|
|
else
|
|
|
|
impl_window->outstanding_moves =
|
|
|
|
g_list_insert_before (impl_window->outstanding_moves,
|
|
|
|
l->next, move);
|
|
|
|
}
|
2008-12-09 19:13:02 +00:00
|
|
|
}
|
|
|
|
|
2009-08-13 11:35:58 +00:00
|
|
|
/* Moves bits and update area by dx/dy in impl window.
|
|
|
|
Takes ownership of region to avoid copy (because we may change it) */
|
2008-12-09 19:13:02 +00:00
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
move_region_on_impl (GdkWindow *impl_window,
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region, /* In impl window coords */
|
2008-12-09 19:13:02 +00:00
|
|
|
int dx, int dy)
|
|
|
|
{
|
2009-01-20 21:17:06 +00:00
|
|
|
if ((dx == 0 && dy == 0) ||
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_is_empty (region))
|
2009-02-09 09:35:19 +00:00
|
|
|
{
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (region);
|
2009-02-09 09:35:19 +00:00
|
|
|
return;
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-09-14 11:38:47 +00:00
|
|
|
g_assert (impl_window == gdk_window_get_impl_window (impl_window));
|
2008-12-09 19:13:02 +00:00
|
|
|
|
|
|
|
/* Move any old invalid regions in the copy source area by dx/dy */
|
|
|
|
if (impl_window->update_area)
|
|
|
|
{
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *update_area;
|
2009-09-14 11:38:47 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
update_area = cairo_region_copy (region);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-09 19:13:02 +00:00
|
|
|
/* Convert from target to source */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_translate (update_area, -dx, -dy);
|
|
|
|
cairo_region_intersect (update_area, impl_window->update_area);
|
2009-08-13 11:04:28 +00:00
|
|
|
/* We only copy the area, so keep the old update area invalid.
|
|
|
|
It would be safe to remove it too, as code that uses
|
|
|
|
move_region_on_impl generally also invalidate the source
|
|
|
|
area. However, it would just use waste cycles. */
|
2009-02-07 17:46:31 +00:00
|
|
|
|
2008-12-09 19:13:02 +00:00
|
|
|
/* Convert back */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_translate (update_area, dx, dy);
|
|
|
|
cairo_region_union (impl_window->update_area, update_area);
|
2009-02-08 12:35:17 +00:00
|
|
|
|
|
|
|
/* This area of the destination is now invalid,
|
|
|
|
so no need to copy to it. */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (region, update_area);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (update_area);
|
2008-12-09 19:13:02 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-09-14 11:38:47 +00:00
|
|
|
/* If we're currently exposing this window, don't copy to this
|
|
|
|
destination, as it will be overdrawn when the expose is done,
|
|
|
|
instead invalidate it and repaint later. */
|
|
|
|
if (impl_window->implicit_paint)
|
|
|
|
{
|
|
|
|
GdkWindowPaint *implicit_paint = impl_window->implicit_paint;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *exposing;
|
2009-09-14 11:38:47 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
exposing = cairo_region_copy (implicit_paint->region);
|
|
|
|
cairo_region_intersect (exposing, region);
|
|
|
|
cairo_region_subtract (region, exposing);
|
2009-09-14 11:38:47 +00:00
|
|
|
|
|
|
|
impl_window_add_update_area (impl_window, exposing);
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (exposing);
|
2009-09-14 11:38:47 +00:00
|
|
|
}
|
|
|
|
|
2010-10-07 19:32:05 +00:00
|
|
|
append_move_region (impl_window, region, dx, dy);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (region);
|
2008-12-09 19:13:02 +00:00
|
|
|
}
|
|
|
|
|
2008-12-09 11:26:01 +00:00
|
|
|
/* Flushes all outstanding changes to the window, call this
|
|
|
|
* before drawing directly to the window (i.e. outside a begin/end_paint pair).
|
|
|
|
*/
|
|
|
|
static void
|
2009-01-22 19:50:06 +00:00
|
|
|
gdk_window_flush_outstanding_moves (GdkWindow *window)
|
2008-12-09 11:26:01 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *impl_window;
|
2010-08-05 00:26:59 +00:00
|
|
|
GList *l, *outstanding;
|
2008-12-09 19:13:02 +00:00
|
|
|
GdkWindowRegionMove *move;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_window = gdk_window_get_impl_window (window);
|
2010-08-05 00:26:59 +00:00
|
|
|
outstanding = impl_window->outstanding_moves;
|
|
|
|
impl_window->outstanding_moves = NULL;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-08-05 00:26:59 +00:00
|
|
|
for (l = outstanding; l != NULL; l = l->next)
|
2008-12-09 19:13:02 +00:00
|
|
|
{
|
|
|
|
move = l->data;
|
|
|
|
|
2009-02-08 12:10:42 +00:00
|
|
|
do_move_region_bits_on_impl (impl_window,
|
2009-02-08 12:13:56 +00:00
|
|
|
move->dest_region, move->dx, move->dy);
|
2008-12-09 19:13:02 +00:00
|
|
|
|
2009-02-08 12:17:37 +00:00
|
|
|
gdk_window_region_move_free (move);
|
2008-12-09 19:13:02 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-08-05 00:26:59 +00:00
|
|
|
g_list_free (outstanding);
|
2009-01-22 19:50:06 +00:00
|
|
|
}
|
|
|
|
|
2009-09-14 14:07:25 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_flush:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Flush all outstanding cached operations on a window, leaving the
|
|
|
|
* window in a state which reflects all that has been drawn before.
|
|
|
|
*
|
|
|
|
* Gdk uses multiple kinds of caching to get better performance and
|
|
|
|
* nicer drawing. For instance, during exposes all paints to a window
|
2010-08-27 13:21:58 +00:00
|
|
|
* using double buffered rendering are keep on a surface until the last
|
2009-09-14 14:07:25 +00:00
|
|
|
* window has been exposed. It also delays window moves/scrolls until
|
|
|
|
* as long as possible until next update to avoid tearing when moving
|
|
|
|
* windows.
|
|
|
|
*
|
|
|
|
* Normally this should be completely invisible to applications, as
|
|
|
|
* we automatically flush the windows when required, but this might
|
|
|
|
* be needed if you for instance mix direct native drawing with
|
|
|
|
* gdk drawing. For Gtk widgets that don't use double buffering this
|
|
|
|
* will be called automatically before sending the expose event.
|
|
|
|
*
|
|
|
|
* Since: 2.18
|
|
|
|
**/
|
|
|
|
void
|
2009-01-22 19:50:06 +00:00
|
|
|
gdk_window_flush (GdkWindow *window)
|
|
|
|
{
|
|
|
|
gdk_window_flush_outstanding_moves (window);
|
2008-12-09 11:26:01 +00:00
|
|
|
gdk_window_flush_implicit_paint (window);
|
|
|
|
}
|
|
|
|
|
2009-09-14 11:44:09 +00:00
|
|
|
/* If we're about to move/resize or otherwise change the
|
|
|
|
* hierarchy of a client side window in an impl and we're
|
|
|
|
* called from an expose event handler then we need to
|
|
|
|
* flush any already painted parts of the implicit paint
|
|
|
|
* that are not part of the current paint, as these may
|
|
|
|
* be used when scrolling or may overdraw the changes
|
|
|
|
* caused by the hierarchy change.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
gdk_window_flush_if_exposing (GdkWindow *window)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *impl_window;
|
2009-09-14 11:44:09 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_window = gdk_window_get_impl_window (window);
|
2009-09-14 11:44:09 +00:00
|
|
|
|
|
|
|
/* If we're in an implicit paint (i.e. in an expose handler, flush
|
|
|
|
all the already finished exposes to get things to an uptodate state. */
|
|
|
|
if (impl_window->implicit_paint)
|
|
|
|
gdk_window_flush (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-01-20 22:03:16 +00:00
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_flush_recursive_helper (GdkWindow *window,
|
2010-11-24 13:36:45 +00:00
|
|
|
GdkWindowImpl *impl)
|
2009-01-20 22:03:16 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *child;
|
2009-01-20 22:03:16 +00:00
|
|
|
GList *l;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-20 22:03:16 +00:00
|
|
|
for (l = window->children; l != NULL; l = l->next)
|
|
|
|
{
|
|
|
|
child = l->data;
|
|
|
|
|
|
|
|
if (child->impl == impl)
|
|
|
|
/* Same impl, ignore */
|
|
|
|
gdk_window_flush_recursive_helper (child, impl);
|
|
|
|
else
|
|
|
|
gdk_window_flush_recursive (child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_flush_recursive (GdkWindow *window)
|
2009-01-20 22:03:16 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_flush (window);
|
2009-01-20 22:03:16 +00:00
|
|
|
gdk_window_flush_recursive_helper (window, window->impl);
|
|
|
|
}
|
|
|
|
|
2010-10-06 17:31:03 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_clip_region:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Computes the region of a window that potentially can be written
|
|
|
|
* to by drawing primitives. This region may not take into account
|
|
|
|
* other factors such as if the window is obscured by other windows,
|
|
|
|
* but no area outside of this region will be affected by drawing
|
|
|
|
* primitives.
|
|
|
|
*
|
|
|
|
* Returns: a #cairo_region_t. This must be freed with cairo_region_destroy()
|
|
|
|
* when you are done.
|
|
|
|
**/
|
|
|
|
cairo_region_t*
|
|
|
|
gdk_window_get_clip_region (GdkWindow *window)
|
2000-12-15 01:46:41 +00:00
|
|
|
{
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *result;
|
2000-12-15 01:46:41 +00:00
|
|
|
|
2010-10-06 17:31:03 +00:00
|
|
|
g_return_val_if_fail (GDK_WINDOW (window), NULL);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
result = cairo_region_copy (window->clip_region);
|
2000-12-15 01:46:41 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->paint_stack)
|
2000-12-15 01:46:41 +00:00
|
|
|
{
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *paint_region = cairo_region_create ();
|
2010-11-22 23:55:39 +00:00
|
|
|
GSList *tmp_list = window->paint_stack;
|
2000-12-15 01:46:41 +00:00
|
|
|
|
|
|
|
while (tmp_list)
|
|
|
|
{
|
|
|
|
GdkWindowPaint *paint = tmp_list->data;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_union (paint_region, paint->region);
|
Clip the retrieved image data to the screen, using a server grab to avoid
2001-06-28 Havoc Pennington <hp@pobox.com>
* gdk/x11/gdkimage-x11.c (_gdk_x11_get_image): Clip the retrieved
image data to the screen, using a server grab to avoid race
conditions.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): remove
check for NULL return from gtk_image_new_from_stock(), it never
returns NULL.
(gtk_item_factory_create_item): fix bug where we parsed the stock
ID as an inline pixbuf
* gtk/gtktext.c (gtk_text_key_press): numeric keypad support
* gtk/gtkspinbutton.c (gtk_spin_button_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkoptionmenu.c (gtk_option_menu_key_press): numeric keypad
support (should be using binding set here)
* gtk/gtkmenushell.c (gtk_menu_shell_class_init): numeric keypad
support
* gtk/gtkmenu.c (gtk_menu_class_init): numeric keypad support
* gtk/gtkmenubar.c (gtk_menu_bar_class_init): numeric keypad
* gtk/gtklistitem.c (gtk_list_item_class_init): numeric keypad
* gtk/gtkimcontextsimple.c
(gtk_im_context_simple_filter_keypress): keypad
* gtk/gtkfilesel.c (gtk_file_selection_key_press): keypad
* gtk/gtkentry.c (gtk_entry_class_init): numeric keypad fixes
* gtk/gtkctree.c (gtk_ctree_class_init): numeric keypad support
* gtk/gtkcolorsel.c (palette_activate): keypad support (of course,
should be binding-setted)
* gtk/gtkwindow.c (gtk_window_class_init): numeric keypad fixes
* gtk/gtkclist.c (gtk_clist_class_init): numeric keypad fixes
* gtk/gtkcalendar.c: numeric keypad fixes
* gtk/gtktextview.c (gtk_text_view_class_init): numeric keypad
support
* gdk/gdkwindow.c (gdk_window_get_clip_region): fix infinite loop
screwup
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
clip the render area to the drawable's clip region in advance,
so we don't get data from the server that we don't need.
* gdk/gdkpixbuf-render.c (gdk_pixbuf_render_to_drawable_alpha):
check return value of gdk_pixbuf_get_from_drawable(), fall back
to bilevel alpha if we can't get the pixbuf to composite against.
* gdk/gdkdraw.c (gdk_drawable_get_image): set the image colormap
* gdk/gdkimage.c (gdk_image_get_colormap): add
gdk_image_set_colormap, gdk_image_get_colormap
* gdk/gdkpixbuf-drawable.c (rgbconvert): Change all converters to
take a region of the image, instead of converting the entire
image.
* gtk/gtkwidget.h (struct _GtkWidgetClass): add show_help
keybinding signal. Add default bindings for it. Add default
handler for show_help that shows the tooltip for the widget.
* gtk/gtkdialog.c (gtk_dialog_class_init): add binding set and
"close" keybinding signal, remove key press handler.
* gtk/gtktooltips.c (gtk_tooltips_set_colors): Just remove this,
it's not our usual practice to leave a deprecated function around
with a runtime warning, plus we don't want it to appear in docs,
plus if we make them yellow no one will want to change them
anyhow.
2001-06-29 01:59:02 +00:00
|
|
|
|
2009-06-01 10:04:36 +00:00
|
|
|
tmp_list = tmp_list->next;
|
2000-12-15 01:46:41 +00:00
|
|
|
}
|
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_intersect (result, paint_region);
|
|
|
|
cairo_region_destroy (paint_region);
|
2000-12-15 01:46:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2010-10-06 21:42:45 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_visible_region:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Computes the region of the @window that is potentially visible.
|
|
|
|
* This does not necessarily take into account if the window is
|
|
|
|
* obscured by other windows, but no area outside of this region
|
|
|
|
* is visible.
|
|
|
|
*
|
|
|
|
* Returns: a #cairo_region_t. This must be freed with cairo_region_destroy()
|
|
|
|
* when you are done.
|
|
|
|
**/
|
|
|
|
cairo_region_t *
|
|
|
|
gdk_window_get_visible_region (GdkWindow *window)
|
2009-07-20 21:18:41 +00:00
|
|
|
{
|
2010-10-06 21:42:45 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return cairo_region_copy (window->clip_region);
|
2009-07-20 21:18:41 +00:00
|
|
|
}
|
|
|
|
|
2010-07-25 16:13:19 +00:00
|
|
|
static cairo_t *
|
|
|
|
setup_backing_rect (GdkWindow *window, GdkWindowPaint *paint, int x_offset_cairo, int y_offset_cairo)
|
2004-02-18 17:03:46 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *bg_window;
|
2010-08-24 19:27:57 +00:00
|
|
|
cairo_pattern_t *pattern = NULL;
|
2010-08-15 22:08:58 +00:00
|
|
|
int x_offset = 0, y_offset = 0;
|
2010-07-25 16:13:19 +00:00
|
|
|
cairo_t *cr;
|
2004-02-18 17:03:46 +00:00
|
|
|
|
2010-08-15 22:08:58 +00:00
|
|
|
cr = cairo_create (paint->surface);
|
Work around https://bugs.freedesktop.org/show_bug.cgi?id=4320, which used
2006-02-03 Federico Mena Quintero <federico@ximian.com>
Work around https://bugs.freedesktop.org/show_bug.cgi?id=4320,
which used to be our own
http://bugzilla.gnome.org/show_bug.cgi?id=314616. If one uses a
pixmap for a pattern in Cairo, and sets the pattern to
CAIRO_EXTEND_REPEAT; and if the destination surface is also a
pixmap, Cairo does a slow copy instead of using XCopyArea(). So,
we use the same code that we used in GTK+ 2.6 (pre-cairo), by
filling the double-buffer pixmap with a tiled GC and
XFillRectangle().
* gdk/gdkwindow.c (BackingRectMethod): New structure with a
cairo_t and a GdkGC field. Depending on which of these fields
gets filled in, we'll use Cairo or GDK to clear the double-buffer
pixmap when painting a window.
(setup_backing_rect_method): Fill a BackingRectMethod as
appropriate, depending on the window's configuration and our
knowledge of whether Cairo is fast or slow when doing repeating
patterns.
(gdk_window_clear_backing_rect): Call
setup_backing_rect_method(). Depending on what it returns, use
Cairo to clear the double-buffer pixmap, or plain GDK.
2006-02-03 21:17:34 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
for (bg_window = window; bg_window; bg_window = bg_window->parent)
|
2004-02-18 17:03:46 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
pattern = gdk_window_get_background_pattern (bg_window);
|
2010-08-15 22:08:58 +00:00
|
|
|
if (pattern)
|
|
|
|
break;
|
2005-03-17 01:54:40 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
x_offset += bg_window->x;
|
|
|
|
y_offset += bg_window->y;
|
2010-08-15 22:08:58 +00:00
|
|
|
}
|
Work around https://bugs.freedesktop.org/show_bug.cgi?id=4320, which used
2006-02-03 Federico Mena Quintero <federico@ximian.com>
Work around https://bugs.freedesktop.org/show_bug.cgi?id=4320,
which used to be our own
http://bugzilla.gnome.org/show_bug.cgi?id=314616. If one uses a
pixmap for a pattern in Cairo, and sets the pattern to
CAIRO_EXTEND_REPEAT; and if the destination surface is also a
pixmap, Cairo does a slow copy instead of using XCopyArea(). So,
we use the same code that we used in GTK+ 2.6 (pre-cairo), by
filling the double-buffer pixmap with a tiled GC and
XFillRectangle().
* gdk/gdkwindow.c (BackingRectMethod): New structure with a
cairo_t and a GdkGC field. Depending on which of these fields
gets filled in, we'll use Cairo or GDK to clear the double-buffer
pixmap when painting a window.
(setup_backing_rect_method): Fill a BackingRectMethod as
appropriate, depending on the window's configuration and our
knowledge of whether Cairo is fast or slow when doing repeating
patterns.
(gdk_window_clear_backing_rect): Call
setup_backing_rect_method(). Depending on what it returns, use
Cairo to clear the double-buffer pixmap, or plain GDK.
2006-02-03 21:17:34 +00:00
|
|
|
|
2010-08-15 22:08:58 +00:00
|
|
|
if (pattern)
|
|
|
|
{
|
|
|
|
cairo_translate (cr, -x_offset, -y_offset);
|
2010-07-25 16:13:19 +00:00
|
|
|
cairo_set_source (cr, pattern);
|
2010-08-15 22:08:58 +00:00
|
|
|
cairo_translate (cr, x_offset, y_offset);
|
2004-02-18 17:03:46 +00:00
|
|
|
}
|
|
|
|
else
|
2010-08-15 11:49:30 +00:00
|
|
|
cairo_set_source_rgb (cr, 0, 0, 0);
|
2010-07-25 16:13:19 +00:00
|
|
|
|
|
|
|
return cr;
|
2005-03-17 01:54:40 +00:00
|
|
|
}
|
2004-02-18 17:03:46 +00:00
|
|
|
|
2000-03-28 01:24:44 +00:00
|
|
|
static void
|
2009-02-05 13:53:07 +00:00
|
|
|
gdk_window_clear_backing_region (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region)
|
2000-03-28 01:24:44 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindowPaint *paint = window->paint_stack->data;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *clip;
|
2009-02-05 13:53:07 +00:00
|
|
|
GdkRectangle clipbox;
|
2010-07-25 16:13:19 +00:00
|
|
|
cairo_t *cr;
|
2000-03-28 01:24:44 +00:00
|
|
|
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return;
|
2003-08-20 21:11:25 +00:00
|
|
|
|
2010-07-25 16:13:19 +00:00
|
|
|
cr = setup_backing_rect (window, paint, 0, 0);
|
Work around https://bugs.freedesktop.org/show_bug.cgi?id=4320, which used
2006-02-03 Federico Mena Quintero <federico@ximian.com>
Work around https://bugs.freedesktop.org/show_bug.cgi?id=4320,
which used to be our own
http://bugzilla.gnome.org/show_bug.cgi?id=314616. If one uses a
pixmap for a pattern in Cairo, and sets the pattern to
CAIRO_EXTEND_REPEAT; and if the destination surface is also a
pixmap, Cairo does a slow copy instead of using XCopyArea(). So,
we use the same code that we used in GTK+ 2.6 (pre-cairo), by
filling the double-buffer pixmap with a tiled GC and
XFillRectangle().
* gdk/gdkwindow.c (BackingRectMethod): New structure with a
cairo_t and a GdkGC field. Depending on which of these fields
gets filled in, we'll use Cairo or GDK to clear the double-buffer
pixmap when painting a window.
(setup_backing_rect_method): Fill a BackingRectMethod as
appropriate, depending on the window's configuration and our
knowledge of whether Cairo is fast or slow when doing repeating
patterns.
(gdk_window_clear_backing_rect): Call
setup_backing_rect_method(). Depending on what it returns, use
Cairo to clear the double-buffer pixmap, or plain GDK.
2006-02-03 21:17:34 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
clip = cairo_region_copy (paint->region);
|
|
|
|
cairo_region_intersect (clip, region);
|
|
|
|
cairo_region_get_extents (clip, &clipbox);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-07-25 16:13:19 +00:00
|
|
|
gdk_cairo_region (cr, clip);
|
|
|
|
cairo_fill (cr);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-07-25 16:13:19 +00:00
|
|
|
cairo_destroy (cr);
|
2005-03-17 01:54:40 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (clip);
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
static void
|
2009-02-05 13:53:07 +00:00
|
|
|
gdk_window_clear_backing_region_direct (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
GdkWindowPaint paint;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *clip;
|
2009-02-05 13:53:07 +00:00
|
|
|
GdkRectangle clipbox;
|
2010-07-25 16:13:19 +00:00
|
|
|
cairo_t *cr;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return;
|
|
|
|
|
2010-11-22 16:23:31 +00:00
|
|
|
paint.surface = _gdk_window_ref_cairo_surface (window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-07-25 16:13:19 +00:00
|
|
|
cr = setup_backing_rect (window, &paint, 0, 0);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
clip = cairo_region_copy (window->clip_region_with_children);
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_intersect (clip, region);
|
|
|
|
cairo_region_get_extents (clip, &clipbox);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-07-25 16:13:19 +00:00
|
|
|
gdk_cairo_region (cr, clip);
|
|
|
|
cairo_fill (cr);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-07-25 16:13:19 +00:00
|
|
|
cairo_destroy (cr);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (clip);
|
2008-07-18 13:03:42 +00:00
|
|
|
cairo_surface_destroy (paint.surface);
|
|
|
|
}
|
|
|
|
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
|
2009-02-05 13:53:07 +00:00
|
|
|
static void
|
|
|
|
gdk_window_clear_region_internal (GdkWindow *window,
|
2010-08-15 01:20:10 +00:00
|
|
|
cairo_region_t *region)
|
2009-02-05 13:53:07 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->paint_stack)
|
2009-02-05 13:53:07 +00:00
|
|
|
gdk_window_clear_backing_region (window, region);
|
|
|
|
else
|
2010-08-24 15:13:05 +00:00
|
|
|
gdk_window_clear_backing_region_direct (window, region);
|
2009-02-05 13:53:07 +00:00
|
|
|
}
|
|
|
|
|
2010-01-19 15:36:49 +00:00
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_drop_cairo_surface (GdkWindow *window)
|
2010-01-19 15:36:49 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->cairo_surface)
|
2010-01-19 15:36:49 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_surface_finish (window->cairo_surface);
|
|
|
|
cairo_surface_set_user_data (window->cairo_surface, &gdk_window_cairo_key,
|
2010-01-19 15:36:49 +00:00
|
|
|
NULL, NULL);
|
2010-11-22 23:55:39 +00:00
|
|
|
window->cairo_surface = NULL;
|
2010-01-19 15:36:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
static void
|
|
|
|
gdk_window_cairo_surface_destroy (void *data)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *window = data;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->cairo_surface = NULL;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2008-12-15 14:50:41 +00:00
|
|
|
static cairo_surface_t *
|
2010-11-22 16:23:31 +00:00
|
|
|
gdk_window_create_cairo_surface (GdkWindow *window,
|
2008-12-15 14:50:41 +00:00
|
|
|
int width,
|
|
|
|
int height)
|
|
|
|
{
|
2010-08-26 08:15:59 +00:00
|
|
|
cairo_surface_t *surface, *subsurface;
|
|
|
|
|
2010-11-23 00:32:19 +00:00
|
|
|
surface = gdk_window_ref_impl_surface (window);
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window))
|
2010-08-26 08:15:59 +00:00
|
|
|
return surface;
|
|
|
|
|
|
|
|
subsurface = cairo_surface_create_for_rectangle (surface,
|
2010-11-22 23:55:39 +00:00
|
|
|
window->abs_x,
|
|
|
|
window->abs_y,
|
2010-08-26 08:15:59 +00:00
|
|
|
width,
|
|
|
|
height);
|
|
|
|
cairo_surface_destroy (surface);
|
|
|
|
return subsurface;
|
2008-12-15 14:50:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-11-22 16:23:31 +00:00
|
|
|
cairo_surface_t *
|
|
|
|
_gdk_window_ref_cairo_surface (GdkWindow *window)
|
2005-02-03 23:29:02 +00:00
|
|
|
{
|
2005-03-17 01:54:40 +00:00
|
|
|
cairo_surface_t *surface;
|
2005-02-03 23:29:02 +00:00
|
|
|
|
2010-11-22 16:23:31 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->paint_stack)
|
2005-02-03 23:29:02 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindowPaint *paint = window->paint_stack->data;
|
2005-03-17 01:54:40 +00:00
|
|
|
|
|
|
|
surface = paint->surface;
|
|
|
|
cairo_surface_reference (surface);
|
2005-02-03 23:29:02 +00:00
|
|
|
}
|
|
|
|
else
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* This will be drawing directly to the window, so flush implicit paint */
|
2010-11-22 16:23:31 +00:00
|
|
|
gdk_window_flush (window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (!window->cairo_surface)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
window->cairo_surface = gdk_window_create_cairo_surface (window,
|
|
|
|
window->width,
|
|
|
|
window->height);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->cairo_surface)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_surface_set_user_data (window->cairo_surface, &gdk_window_cairo_key,
|
2010-11-22 16:23:31 +00:00
|
|
|
window, gdk_window_cairo_surface_destroy);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_surface_reference (window->cairo_surface);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
surface = window->cairo_surface;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2005-02-03 23:29:02 +00:00
|
|
|
|
2005-03-17 01:54:40 +00:00
|
|
|
return surface;
|
2005-02-03 23:29:02 +00:00
|
|
|
}
|
|
|
|
|
2010-10-06 17:12:27 +00:00
|
|
|
/**
|
|
|
|
* gdk_cairo_create:
|
2010-12-03 13:50:05 +00:00
|
|
|
* @window: a #GdkWindow
|
2010-10-06 17:12:27 +00:00
|
|
|
*
|
|
|
|
* Creates a Cairo context for drawing to @window.
|
|
|
|
*
|
|
|
|
* <note><warning>
|
|
|
|
* Note that calling cairo_reset_clip() on the resulting #cairo_t will
|
|
|
|
* produce undefined results, so avoid it at all costs.
|
|
|
|
* </warning></note>
|
|
|
|
*
|
|
|
|
* Return value: A newly created Cairo context. Free with
|
|
|
|
* cairo_destroy() when you are done drawing.
|
|
|
|
*
|
|
|
|
* Since: 2.8
|
|
|
|
**/
|
|
|
|
cairo_t *
|
|
|
|
gdk_cairo_create (GdkWindow *window)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-10-06 17:12:27 +00:00
|
|
|
cairo_surface_t *surface;
|
|
|
|
cairo_t *cr;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
2010-11-22 16:23:31 +00:00
|
|
|
surface = _gdk_window_ref_cairo_surface (window);
|
2010-10-06 17:12:27 +00:00
|
|
|
cr = cairo_create (surface);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (!window->paint_stack)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_cairo_region (cr, window->clip_region_with_children);
|
2008-07-18 13:03:42 +00:00
|
|
|
cairo_clip (cr);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindowPaint *paint = window->paint_stack->data;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
/* Only needs to clip to region if piggybacking
|
2010-08-27 13:21:58 +00:00
|
|
|
on an implicit paint */
|
2008-07-18 13:03:42 +00:00
|
|
|
if (paint->uses_implicit)
|
|
|
|
{
|
|
|
|
gdk_cairo_region (cr, paint->region);
|
|
|
|
cairo_clip (cr);
|
|
|
|
}
|
|
|
|
}
|
2010-10-06 17:12:27 +00:00
|
|
|
|
|
|
|
cairo_surface_destroy (surface);
|
|
|
|
|
|
|
|
return cr;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2000-03-28 01:24:44 +00:00
|
|
|
/* Code for dirty-region queueing
|
|
|
|
*/
|
|
|
|
static GSList *update_windows = NULL;
|
|
|
|
static guint update_idle = 0;
|
adapt to handle PangoColor
2001-01-26 Havoc Pennington <hp@redhat.com>
* gtk/gtktextlayout.c (convert_color): adapt to handle PangoColor
* gtk/gtktreeview.c (gtk_tree_view_widget_to_tree_coords): fix to
not offset by TREE_VIEW_HEADER_HEIGHT
(gtk_tree_view_tree_to_widget_coords): fix to not offset by
TREE_VIEW_HEADER_HEIGHT
* configure.in (included_loaders): for me, --with-included-loaders
generates the error "the specified loader yes does not exist",
i.e. the arg defaults to "yes", so change test for value ""
to test for value "yes", and include all loaders in that case.
* gtk/gtkrbtree.c (_gtk_rbtree_get_depth): new function
* gtk/gtktreeview.c (gtk_tree_view_get_cell_rect): fix to properly
handle TREE_VIEW_VERTICAL_SEPARATOR
(gtk_tree_view_bin_expose): fix to consider the row offset as
pointing halfway into vertical separator.
(gtk_tree_view_draw_node_focus_rect): ditto
* gtk/gtkdebug.h, gtk/gtkmain.c (gtk_init_check): Add
--gtk-debug=updates, which causes gdk_window_set_debug_updates
(TRUE) to be called.
* gdk/gdkwindow.c (gdk_window_set_debug_updates): Allow enabling a
debug mode where the invalid region is colored in on invalidate,
so you can see the flicker and know whether your redraw code is
doing a good job.
* gtk/gtktreeview.c (gtk_tree_view_queue_draw_node): Work in
tree window coordinates (clip rect is in tree window coords)
* gtk/Makefile.am: add gtktreednd.[hc]
* gtk/gtkliststore.c: implement gtktreednd interfaces.
* gtk/gtktreednd.c, gtk/gtktreednd.h: New interface to support
drag-and-drop data operations on a model (so we can set up tree
drag-and-drop automatically)
* gtk/testgtk.c: Add a window to change sensitivity in the
GtkLabel test; add a way to change the entry frame in GtkEntry
test
* gtk/gtkentry.c (gtk_entry_set_has_frame):
(gtk_entry_get_has_frame): new functions to remove the frame
around an entry
(gtk_entry_size_request): shrink requisition if no frame
(gtk_entry_draw_focus): don't draw frame if no frame
* gtk/gtkstyle.c (gtk_default_draw_check): draw custom look for
checks inside a cell renderer
(gtk_default_draw_option): ditto for options
* gtk/gtktreeviewcolumn.c (update_button_contents): add/remove
children from the alignment, not the button
(gtk_tree_view_column_init): ref/sink the column, to emulate
GObject refcounting.
* gtk/gtkcellrenderer.c (gtk_cell_renderer_init): ref/sink
* gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
Use theme functions to draw the toggles
* gdk/gdkpango.c (gdk_pango_get_gc): use GdkRGB to alloc colors
* gdk/gdkpango.h, gdk/gdkpango.c: Add GdkPangoAttrStipple and
GdkPangoAttrEmbossed to use in rendering insensitive text
* gdk/gdkpango.c (gdk_draw_layout_line): render new properties
* gtk/gtkstyle.c (gtk_default_draw_layout): handle sensitivity
using new GDK features
2001-01-26 21:12:05 +00:00
|
|
|
static gboolean debug_updates = FALSE;
|
2000-03-28 01:24:44 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
static inline gboolean
|
|
|
|
gdk_window_is_ancestor (GdkWindow *window,
|
2009-06-01 10:04:36 +00:00
|
|
|
GdkWindow *ancestor)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
while (window)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *parent = window->parent;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
if (parent == ancestor)
|
2009-06-01 10:04:36 +00:00
|
|
|
return TRUE;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
window = parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_window_add_update_window (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GSList *tmp;
|
|
|
|
GSList *prev = NULL;
|
|
|
|
gboolean has_ancestor_in_list = FALSE;
|
|
|
|
|
|
|
|
for (tmp = update_windows; tmp; tmp = tmp->next)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *parent = window->parent;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
/* check if tmp is an ancestor of "window"; if it is, set a
|
|
|
|
* flag indicating that all following windows are either
|
|
|
|
* children of "window" or from a differen hierarchy
|
|
|
|
*/
|
|
|
|
if (!has_ancestor_in_list && gdk_window_is_ancestor (window, tmp->data))
|
2009-06-01 10:04:36 +00:00
|
|
|
has_ancestor_in_list = TRUE;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
/* insert in reverse stacking order when adding around siblings,
|
|
|
|
* so processing updates properly paints over lower stacked windows
|
|
|
|
*/
|
2010-11-22 23:55:39 +00:00
|
|
|
if (parent == GDK_WINDOW (tmp->data)->parent)
|
2009-06-01 10:04:36 +00:00
|
|
|
{
|
|
|
|
gint index = g_list_index (parent->children, window);
|
2010-11-22 23:55:39 +00:00
|
|
|
for (; tmp && parent == GDK_WINDOW (tmp->data)->parent; tmp = tmp->next)
|
2009-06-01 10:04:36 +00:00
|
|
|
{
|
|
|
|
gint sibling_index = g_list_index (parent->children, tmp->data);
|
|
|
|
if (index > sibling_index)
|
|
|
|
break;
|
|
|
|
prev = tmp;
|
|
|
|
}
|
|
|
|
/* here, tmp got advanced past all lower stacked siblings */
|
|
|
|
tmp = g_slist_prepend (tmp, window);
|
|
|
|
if (prev)
|
|
|
|
prev->next = tmp;
|
|
|
|
else
|
|
|
|
update_windows = tmp;
|
|
|
|
return;
|
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
/* if "window" has an ancestor in the list and tmp is one of
|
|
|
|
* "window's" children, insert "window" before tmp
|
|
|
|
*/
|
|
|
|
if (has_ancestor_in_list && gdk_window_is_ancestor (tmp->data, window))
|
2009-06-01 10:04:36 +00:00
|
|
|
{
|
|
|
|
tmp = g_slist_prepend (tmp, window);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-06-01 10:04:36 +00:00
|
|
|
if (prev)
|
|
|
|
prev->next = tmp;
|
|
|
|
else
|
|
|
|
update_windows = tmp;
|
|
|
|
return;
|
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
/* if we're at the end of the list and had an ancestor it it,
|
|
|
|
* append to the list
|
|
|
|
*/
|
|
|
|
if (! tmp->next && has_ancestor_in_list)
|
2009-06-01 10:04:36 +00:00
|
|
|
{
|
|
|
|
tmp = g_slist_append (tmp, window);
|
|
|
|
return;
|
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
prev = tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if all above checks failed ("window" is from a different
|
|
|
|
* hierarchy than what is already in the list) or the list is
|
|
|
|
* empty, prepend
|
|
|
|
*/
|
|
|
|
update_windows = g_slist_prepend (update_windows, window);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_window_remove_update_window (GdkWindow *window)
|
|
|
|
{
|
|
|
|
update_windows = g_slist_remove (update_windows, window);
|
|
|
|
}
|
|
|
|
|
2004-08-26 14:09:08 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_window_update_idle (gpointer data)
|
|
|
|
{
|
|
|
|
gdk_window_process_all_updates ();
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2004-08-26 14:09:08 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2007-09-12 17:13:24 +00:00
|
|
|
static gboolean
|
|
|
|
gdk_window_is_toplevel_frozen (GdkWindow *window)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *toplevel;
|
2007-09-12 17:13:24 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
toplevel = gdk_window_get_toplevel (window);
|
2007-09-12 17:13:24 +00:00
|
|
|
|
|
|
|
return toplevel->update_and_descendants_freeze_count > 0;
|
|
|
|
}
|
|
|
|
|
2004-08-26 14:09:08 +00:00
|
|
|
static void
|
|
|
|
gdk_window_schedule_update (GdkWindow *window)
|
|
|
|
{
|
2007-09-12 17:13:24 +00:00
|
|
|
if (window &&
|
2010-11-22 23:55:39 +00:00
|
|
|
(window->update_freeze_count ||
|
2007-09-12 17:13:24 +00:00
|
|
|
gdk_window_is_toplevel_frozen (window)))
|
2004-08-26 14:09:08 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (!update_idle)
|
2009-09-10 11:53:29 +00:00
|
|
|
update_idle =
|
|
|
|
gdk_threads_add_idle_full (GDK_PRIORITY_REDRAW,
|
|
|
|
gdk_window_update_idle,
|
|
|
|
NULL, NULL);
|
2004-08-26 14:09:08 +00:00
|
|
|
}
|
|
|
|
|
2009-01-26 18:12:54 +00:00
|
|
|
void
|
|
|
|
_gdk_window_process_updates_recurse (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *expose_region)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *child;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *child_region;
|
2008-07-18 13:03:42 +00:00
|
|
|
GdkRectangle r;
|
2009-08-13 15:00:00 +00:00
|
|
|
GList *l, *children;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
if (cairo_region_is_empty (expose_region))
|
2008-07-18 13:03:42 +00:00
|
|
|
return;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_is_offscreen (window->impl_window) &&
|
|
|
|
window == window->impl_window)
|
|
|
|
_gdk_window_add_damage ((GdkWindow *) window->impl_window, expose_region);
|
2010-08-04 22:43:53 +00:00
|
|
|
|
2009-08-13 15:00:00 +00:00
|
|
|
/* Make this reentrancy safe for expose handlers freeing windows */
|
2010-11-22 23:55:39 +00:00
|
|
|
children = g_list_copy (window->children);
|
2009-08-14 09:20:12 +00:00
|
|
|
g_list_foreach (children, (GFunc)g_object_ref, NULL);
|
2009-08-13 15:00:00 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Iterate over children, starting at topmost */
|
2009-08-13 15:00:00 +00:00
|
|
|
for (l = children; l != NULL; l = l->next)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
child = l->data;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-08-13 15:00:00 +00:00
|
|
|
if (child->destroyed || !GDK_WINDOW_IS_MAPPED (child) || child->input_only || child->composited)
|
2008-07-18 13:03:42 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Ignore offscreen children, as they don't draw in their parent and
|
|
|
|
* don't take part in the clipping */
|
|
|
|
if (gdk_window_is_offscreen (child))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
r.x = child->x;
|
|
|
|
r.y = child->y;
|
|
|
|
r.width = child->width;
|
|
|
|
r.height = child->height;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
child_region = cairo_region_create_rectangle (&r);
|
2008-12-17 18:45:56 +00:00
|
|
|
if (child->shape)
|
2009-07-07 14:51:11 +00:00
|
|
|
{
|
|
|
|
/* Adjust shape region to parent window coords */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_translate (child->shape, child->x, child->y);
|
|
|
|
cairo_region_intersect (child_region, child->shape);
|
|
|
|
cairo_region_translate (child->shape, -child->x, -child->y);
|
2009-07-07 14:51:11 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (child->impl == window->impl)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
/* Client side child, expose */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_intersect (child_region, expose_region);
|
|
|
|
cairo_region_subtract (expose_region, child_region);
|
|
|
|
cairo_region_translate (child_region, -child->x, -child->y);
|
2009-01-26 18:12:54 +00:00
|
|
|
_gdk_window_process_updates_recurse ((GdkWindow *)child, child_region);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
else
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
/* Native child, just remove area from expose region */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (expose_region, child_region);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (child_region);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2009-08-14 09:20:12 +00:00
|
|
|
g_list_foreach (children, (GFunc)g_object_unref, NULL);
|
2009-08-13 15:00:00 +00:00
|
|
|
g_list_free (children);
|
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
if (!cairo_region_is_empty (expose_region) &&
|
2010-11-22 23:55:39 +00:00
|
|
|
!window->destroyed)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->event_mask & GDK_EXPOSURE_MASK)
|
2009-02-05 14:38:51 +00:00
|
|
|
{
|
|
|
|
GdkEvent event;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-02-05 14:38:51 +00:00
|
|
|
event.expose.type = GDK_EXPOSE;
|
|
|
|
event.expose.window = g_object_ref (window);
|
|
|
|
event.expose.send_event = FALSE;
|
|
|
|
event.expose.count = 0;
|
|
|
|
event.expose.region = expose_region;
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_get_extents (expose_region, &event.expose.area);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-12-02 09:59:37 +00:00
|
|
|
_gdk_event_emit (&event);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-02-05 14:38:51 +00:00
|
|
|
g_object_unref (window);
|
|
|
|
}
|
2010-11-22 23:55:39 +00:00
|
|
|
else if (window->window_type != GDK_WINDOW_FOREIGN)
|
2009-02-05 14:38:51 +00:00
|
|
|
{
|
|
|
|
/* No exposure mask set, so nothing will be drawn, the
|
|
|
|
* app relies on the background being what it specified
|
|
|
|
* for the window. So, we need to clear this manually.
|
|
|
|
*
|
2009-09-24 14:42:52 +00:00
|
|
|
* For foreign windows if expose is not set that generally
|
|
|
|
* means some other client paints them, so don't clear
|
|
|
|
* there.
|
|
|
|
*
|
2009-02-05 14:38:51 +00:00
|
|
|
* We use begin/end_paint around the clear so that we can
|
|
|
|
* piggyback on the implicit paint */
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-02-05 14:38:51 +00:00
|
|
|
gdk_window_begin_paint_region (window, expose_region);
|
2010-08-15 01:20:10 +00:00
|
|
|
gdk_window_clear_region_internal (window, expose_region);
|
2009-02-05 14:38:51 +00:00
|
|
|
gdk_window_end_paint (window);
|
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-08-14 10:09:02 +00:00
|
|
|
/* Process and remove any invalid area on the native window by creating
|
|
|
|
* expose events for the window and all non-native descendants.
|
|
|
|
* Also processes any outstanding moves on the window before doing
|
|
|
|
* any drawing. Note that its possible to have outstanding moves without
|
|
|
|
* any invalid area as we use the update idle mechanism to coalesce
|
|
|
|
* multiple moves as well as multiple invalidations.
|
|
|
|
*/
|
2000-03-28 01:24:44 +00:00
|
|
|
static void
|
|
|
|
gdk_window_process_updates_internal (GdkWindow *window)
|
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2000-03-28 01:24:44 +00:00
|
|
|
gboolean save_region = FALSE;
|
2008-07-18 13:03:42 +00:00
|
|
|
GdkRectangle clip_box;
|
2000-03-28 01:24:44 +00:00
|
|
|
|
2009-08-20 15:09:08 +00:00
|
|
|
/* Ensure the window lives while updating it */
|
|
|
|
g_object_ref (window);
|
|
|
|
|
2000-05-05 15:57:48 +00:00
|
|
|
/* If an update got queued during update processing, we can get a
|
|
|
|
* window in the update queue that has an empty update_area.
|
|
|
|
* just ignore it.
|
|
|
|
*/
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->update_area)
|
2000-05-05 15:57:48 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_t *update_area = window->update_area;
|
|
|
|
window->update_area = NULL;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-12-02 09:59:37 +00:00
|
|
|
if (gdk_window_is_viewable (window))
|
2000-05-05 15:57:48 +00:00
|
|
|
{
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *expose_region;
|
2008-07-18 13:03:42 +00:00
|
|
|
gboolean end_implicit;
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
|
2009-01-22 14:18:03 +00:00
|
|
|
/* Clip to part visible in toplevel */
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_intersect (update_area, window->clip_region);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
|
|
|
if (debug_updates)
|
|
|
|
{
|
|
|
|
/* Make sure we see the red invalid area before redrawing. */
|
2010-08-29 00:08:47 +00:00
|
|
|
gdk_display_sync (gdk_window_get_display (window));
|
2009-06-01 10:04:36 +00:00
|
|
|
g_usleep (70000);
|
|
|
|
}
|
2001-03-09 13:28:26 +00:00
|
|
|
|
2009-08-14 10:09:02 +00:00
|
|
|
/* At this point we will be completely redrawing all of update_area.
|
|
|
|
* If we have any outstanding moves that end up moving stuff inside
|
|
|
|
* this area we don't actually need to move that as that part would
|
|
|
|
* be overdrawn by the expose anyway. So, in order to copy less data
|
|
|
|
* we remove these areas from the outstanding moves.
|
|
|
|
*/
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->outstanding_moves)
|
2009-02-09 08:28:30 +00:00
|
|
|
{
|
|
|
|
GdkWindowRegionMove *move;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *remove;
|
2009-02-09 08:28:30 +00:00
|
|
|
GList *l, *prev;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
remove = cairo_region_copy (update_area);
|
2009-08-14 10:09:02 +00:00
|
|
|
/* We iterate backwards, starting from the state that would be
|
|
|
|
if we had applied all the moves. */
|
2010-11-22 23:55:39 +00:00
|
|
|
for (l = g_list_last (window->outstanding_moves); l != NULL; l = prev)
|
2009-02-09 08:28:30 +00:00
|
|
|
{
|
|
|
|
prev = l->prev;
|
|
|
|
move = l->data;
|
2009-08-14 10:09:02 +00:00
|
|
|
|
2009-02-09 08:28:30 +00:00
|
|
|
/* Don't need this area */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (move->dest_region, remove);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-02-09 08:28:30 +00:00
|
|
|
/* However if any of the destination we do need has a source
|
|
|
|
in the updated region we do need that as a destination for
|
|
|
|
the earlier moves */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_translate (move->dest_region, -move->dx, -move->dy);
|
|
|
|
cairo_region_subtract (remove, move->dest_region);
|
2009-02-09 08:28:30 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
if (cairo_region_is_empty (move->dest_region))
|
2009-02-09 08:28:30 +00:00
|
|
|
{
|
|
|
|
gdk_window_region_move_free (move);
|
2010-11-22 23:55:39 +00:00
|
|
|
window->outstanding_moves =
|
|
|
|
g_list_delete_link (window->outstanding_moves, l);
|
2009-02-09 08:28:30 +00:00
|
|
|
}
|
2009-08-14 10:09:02 +00:00
|
|
|
else /* move back */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_translate (move->dest_region, move->dx, move->dy);
|
2009-02-09 08:28:30 +00:00
|
|
|
}
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (remove);
|
2009-02-09 08:28:30 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-08-14 10:09:02 +00:00
|
|
|
/* By now we a set of window moves that should be applied, and then
|
|
|
|
* an update region that should be repainted. A trivial implementation
|
|
|
|
* would just do that in order, however in order to get nicer drawing
|
|
|
|
* we do some tricks:
|
|
|
|
*
|
|
|
|
* First of all, each subwindow expose may be double buffered by
|
|
|
|
* itself (depending on widget setting) via
|
|
|
|
* gdk_window_begin/end_paint(). But we also do an "implicit" paint,
|
2010-08-27 13:21:58 +00:00
|
|
|
* creating a single surface the size of the invalid area on the
|
2009-08-14 10:09:02 +00:00
|
|
|
* native window which all the individual normal paints will draw
|
2010-08-27 13:21:58 +00:00
|
|
|
* into. This way in the normal case there will be only one surface
|
|
|
|
* allocated and only once surface draw done for all the windows
|
2009-08-14 10:09:02 +00:00
|
|
|
* in this native window.
|
|
|
|
* There are a couple of reasons this may fail, for instance, some
|
|
|
|
* backends (like quartz) do its own double buffering, so we disable
|
|
|
|
* gdk double buffering there. Secondly, some subwindow could be
|
|
|
|
* non-double buffered and draw directly to the window outside a
|
|
|
|
* begin/end_paint pair. That will be lead to a gdk_window_flush
|
|
|
|
* which immediately executes all outstanding moves and paints+removes
|
2010-08-27 13:21:58 +00:00
|
|
|
* the implicit paint (further paints will allocate their own surfaces).
|
2009-08-14 10:09:02 +00:00
|
|
|
*
|
|
|
|
* Secondly, in the case of implicit double buffering we expose all
|
2010-08-27 13:21:58 +00:00
|
|
|
* the child windows into the implicit surface before we execute
|
2009-08-14 10:09:02 +00:00
|
|
|
* the outstanding moves. This way we minimize the time between
|
|
|
|
* doing the moves and rendering the new update area, thus minimizing
|
|
|
|
* flashing. Of course, if any subwindow is non-double buffered we
|
|
|
|
* well flush earlier than that.
|
|
|
|
*
|
|
|
|
* Thirdly, after having done the outstanding moves we queue an
|
|
|
|
* "antiexpose" on the area that will be drawn by the expose, which
|
|
|
|
* means that any invalid region on the native window side before
|
|
|
|
* the first expose drawing operation will be discarded, as it
|
|
|
|
* has by then been overdrawn with valid data. This means we can
|
|
|
|
* avoid doing the unnecessary repaint any outstanding expose events.
|
|
|
|
*/
|
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_get_extents (update_area, &clip_box);
|
2008-07-18 13:03:42 +00:00
|
|
|
end_implicit = gdk_window_begin_implicit_paint (window, &clip_box);
|
2010-06-28 12:44:12 +00:00
|
|
|
expose_region = cairo_region_copy (update_area);
|
2010-12-13 18:30:05 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2009-08-14 10:09:02 +00:00
|
|
|
if (!end_implicit)
|
|
|
|
{
|
|
|
|
/* Rendering is not double buffered by gdk, do outstanding
|
|
|
|
* moves and queue antiexposure immediately. No need to do
|
|
|
|
* any tricks */
|
2009-02-05 09:47:11 +00:00
|
|
|
gdk_window_flush_outstanding_moves (window);
|
2010-11-22 19:42:00 +00:00
|
|
|
save_region = impl_class->queue_antiexpose (window, update_area);
|
2009-08-14 10:09:02 +00:00
|
|
|
}
|
|
|
|
/* Render the invalid areas to the implicit paint, by sending exposes.
|
|
|
|
* May flush if non-double buffered widget draw. */
|
2010-12-13 18:30:05 +00:00
|
|
|
impl_class->process_updates_recurse (window, expose_region);
|
2009-08-14 10:09:02 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (end_implicit)
|
2009-02-05 09:47:11 +00:00
|
|
|
{
|
2009-08-14 10:09:02 +00:00
|
|
|
/* Do moves right before exposes are rendered to the window */
|
2009-02-05 09:47:11 +00:00
|
|
|
gdk_window_flush_outstanding_moves (window);
|
2009-08-14 10:09:02 +00:00
|
|
|
|
|
|
|
/* By this time we know that any outstanding expose for this
|
|
|
|
* area is invalid and we can avoid it, so queue an antiexpose.
|
|
|
|
* we have already started drawing to the window, so it would
|
|
|
|
* be to late to anti-expose now. Since this is merely an
|
|
|
|
* optimization we just avoid doing it at all in that case.
|
|
|
|
*/
|
2010-12-13 18:30:05 +00:00
|
|
|
if (window->implicit_paint != NULL && !window->implicit_paint->flushed)
|
|
|
|
save_region = impl_class->queue_antiexpose (window, update_area);
|
2009-08-14 10:09:02 +00:00
|
|
|
|
2009-02-05 09:47:11 +00:00
|
|
|
gdk_window_end_implicit_paint (window);
|
|
|
|
}
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (expose_region);
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
2000-05-05 15:57:48 +00:00
|
|
|
if (!save_region)
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (update_area);
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->outstanding_moves)
|
2008-12-18 13:29:28 +00:00
|
|
|
{
|
|
|
|
/* Flush any outstanding moves, may happen if we moved a window but got
|
|
|
|
no actual invalid area */
|
2009-01-22 19:51:41 +00:00
|
|
|
gdk_window_flush_outstanding_moves (window);
|
2008-12-18 13:29:28 +00:00
|
|
|
}
|
2009-08-20 15:09:08 +00:00
|
|
|
|
|
|
|
g_object_unref (window);
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
|
|
|
|
2003-07-05 01:54:05 +00:00
|
|
|
static void
|
|
|
|
flush_all_displays (void)
|
|
|
|
{
|
2010-12-13 18:30:05 +00:00
|
|
|
GSList *displays, *l;
|
|
|
|
|
|
|
|
displays = gdk_display_manager_list_displays (gdk_display_manager_get ());
|
|
|
|
for (l = displays; l; l = l->next)
|
|
|
|
gdk_display_flush (l->data);
|
|
|
|
|
|
|
|
g_slist_free (displays);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
before_process_all_updates (void)
|
|
|
|
{
|
|
|
|
GSList *displays, *l;
|
|
|
|
GdkDisplayClass *display_class;
|
|
|
|
|
|
|
|
displays = gdk_display_manager_list_displays (gdk_display_manager_get ());
|
|
|
|
display_class = GDK_DISPLAY_GET_CLASS (displays->data);
|
|
|
|
for (l = displays; l; l = l->next)
|
|
|
|
display_class->before_process_all_updates (l->data);
|
|
|
|
|
|
|
|
g_slist_free (displays);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
after_process_all_updates (void)
|
|
|
|
{
|
|
|
|
GSList *displays, *l;
|
|
|
|
GdkDisplayClass *display_class;
|
2003-07-05 01:54:05 +00:00
|
|
|
|
2010-12-13 18:30:05 +00:00
|
|
|
displays = gdk_display_manager_list_displays (gdk_display_manager_get ());
|
|
|
|
display_class = GDK_DISPLAY_GET_CLASS (displays->data);
|
|
|
|
for (l = displays; l; l = l->next)
|
|
|
|
display_class->after_process_all_updates (l->data);
|
2003-07-05 01:54:05 +00:00
|
|
|
|
|
|
|
g_slist_free (displays);
|
|
|
|
}
|
|
|
|
|
2006-04-10 19:43:08 +00:00
|
|
|
/* Currently it is not possible to override
|
|
|
|
* gdk_window_process_all_updates in the same manner as
|
|
|
|
* gdk_window_process_updates and gdk_window_invalidate_maybe_recurse
|
|
|
|
* by implementing the GdkPaintable interface. If in the future a
|
|
|
|
* backend would need this, the right solution would be to add a
|
|
|
|
* method to GdkDisplay that can be optionally
|
|
|
|
* NULL. gdk_window_process_all_updates can then walk the list of open
|
|
|
|
* displays and call the mehod.
|
|
|
|
*/
|
|
|
|
|
2001-02-20 05:21:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_process_all_updates:
|
|
|
|
*
|
|
|
|
* Calls gdk_window_process_updates() for all windows (see #GdkWindow)
|
|
|
|
* in the application.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-02-20 05:21:44 +00:00
|
|
|
**/
|
2000-03-28 01:24:44 +00:00
|
|
|
void
|
|
|
|
gdk_window_process_all_updates (void)
|
|
|
|
{
|
|
|
|
GSList *old_update_windows = update_windows;
|
|
|
|
GSList *tmp_list = update_windows;
|
2009-01-26 18:29:26 +00:00
|
|
|
static gboolean in_process_all_updates = FALSE;
|
2009-09-10 11:53:29 +00:00
|
|
|
static gboolean got_recursive_update = FALSE;
|
2009-01-26 18:29:26 +00:00
|
|
|
|
|
|
|
if (in_process_all_updates)
|
2009-09-10 11:53:29 +00:00
|
|
|
{
|
|
|
|
/* We can't do this now since that would recurse, so
|
|
|
|
delay it until after the recursion is done. */
|
|
|
|
got_recursive_update = TRUE;
|
|
|
|
update_idle = 0;
|
|
|
|
return;
|
|
|
|
}
|
2009-01-26 18:29:26 +00:00
|
|
|
|
|
|
|
in_process_all_updates = TRUE;
|
2009-09-10 11:53:29 +00:00
|
|
|
got_recursive_update = FALSE;
|
2000-03-28 01:24:44 +00:00
|
|
|
|
|
|
|
if (update_idle)
|
|
|
|
g_source_remove (update_idle);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2000-03-28 01:24:44 +00:00
|
|
|
update_windows = NULL;
|
|
|
|
update_idle = 0;
|
|
|
|
|
2010-12-13 18:30:05 +00:00
|
|
|
before_process_all_updates ();
|
2009-01-26 18:29:26 +00:00
|
|
|
|
2002-03-14 22:12:51 +00:00
|
|
|
g_slist_foreach (old_update_windows, (GFunc)g_object_ref, NULL);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2000-03-28 01:24:44 +00:00
|
|
|
while (tmp_list)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *window = tmp_list->data;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (!GDK_WINDOW_DESTROYED (window))
|
2009-06-01 10:04:36 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->update_freeze_count ||
|
|
|
|
gdk_window_is_toplevel_frozen (window))
|
|
|
|
gdk_window_add_update_window (window);
|
2007-11-09 22:44:31 +00:00
|
|
|
else
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_process_updates_internal (window);
|
2007-11-09 22:44:31 +00:00
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
g_object_unref (window);
|
2000-03-28 01:24:44 +00:00
|
|
|
tmp_list = tmp_list->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
g_slist_free (old_update_windows);
|
|
|
|
|
2003-07-05 01:54:05 +00:00
|
|
|
flush_all_displays ();
|
2009-01-26 18:29:26 +00:00
|
|
|
|
2010-12-13 18:30:05 +00:00
|
|
|
after_process_all_updates ();
|
2009-01-26 18:29:26 +00:00
|
|
|
|
|
|
|
in_process_all_updates = FALSE;
|
2009-09-10 11:53:29 +00:00
|
|
|
|
|
|
|
/* If we ignored a recursive call, schedule a
|
|
|
|
redraw now so that it eventually happens,
|
|
|
|
otherwise we could miss an update if nothing
|
|
|
|
else schedules an update. */
|
|
|
|
if (got_recursive_update && !update_idle)
|
|
|
|
update_idle =
|
|
|
|
gdk_threads_add_idle_full (GDK_PRIORITY_REDRAW,
|
|
|
|
gdk_window_update_idle,
|
|
|
|
NULL, NULL);
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
|
|
|
|
2001-02-20 05:21:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_process_updates:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @update_children: whether to also process updates for child windows
|
|
|
|
*
|
2009-06-01 10:04:36 +00:00
|
|
|
* Sends one or more expose events to @window. The areas in each
|
2001-02-20 05:21:44 +00:00
|
|
|
* expose event will cover the entire update area for the window (see
|
|
|
|
* gdk_window_invalidate_region() for details). Normally GDK calls
|
|
|
|
* gdk_window_process_all_updates() on your behalf, so there's no
|
|
|
|
* need to call this function unless you want to force expose events
|
|
|
|
* to be delivered immediately and synchronously (vs. the usual
|
|
|
|
* case, where GDK delivers them in an idle handler). Occasionally
|
|
|
|
* this is useful to produce nicer scrolling behavior, for example.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-02-20 05:21:44 +00:00
|
|
|
**/
|
2000-03-28 01:24:44 +00:00
|
|
|
void
|
|
|
|
gdk_window_process_updates (GdkWindow *window,
|
|
|
|
gboolean update_children)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *impl_window;
|
2000-03-28 01:24:44 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
2008-10-21 21:42:39 +00:00
|
|
|
|
2009-08-20 15:09:08 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Make sure the window lives during the expose callouts */
|
|
|
|
g_object_ref (window);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_window = gdk_window_get_impl_window (window);
|
2008-12-18 13:29:28 +00:00
|
|
|
if ((impl_window->update_area ||
|
|
|
|
impl_window->outstanding_moves) &&
|
2008-07-18 13:03:42 +00:00
|
|
|
!impl_window->update_freeze_count &&
|
2009-09-14 11:24:55 +00:00
|
|
|
!gdk_window_is_toplevel_frozen (window) &&
|
|
|
|
|
|
|
|
/* Don't recurse into process_updates_internal, we'll
|
|
|
|
* do the update later when idle instead. */
|
|
|
|
impl_window->implicit_paint == NULL)
|
2009-06-01 10:04:36 +00:00
|
|
|
{
|
2008-07-18 13:03:42 +00:00
|
|
|
gdk_window_process_updates_internal ((GdkWindow *)impl_window);
|
|
|
|
gdk_window_remove_update_window ((GdkWindow *)impl_window);
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (update_children)
|
|
|
|
{
|
2008-07-18 13:03:42 +00:00
|
|
|
/* process updates in reverse stacking order so composition or
|
|
|
|
* painting over achieves the desired effect for offscreen windows
|
|
|
|
*/
|
2009-08-20 15:09:08 +00:00
|
|
|
GList *node, *children;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
children = g_list_copy (window->children);
|
2009-08-20 15:09:08 +00:00
|
|
|
g_list_foreach (children, (GFunc)g_object_ref, NULL);
|
|
|
|
|
|
|
|
for (node = g_list_last (children); node; node = node->prev)
|
|
|
|
{
|
|
|
|
gdk_window_process_updates (node->data, TRUE);
|
|
|
|
g_object_unref (node->data);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_list_free (children);
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
2009-08-20 15:09:08 +00:00
|
|
|
|
|
|
|
g_object_unref (window);
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
|
|
|
|
2009-11-04 13:03:04 +00:00
|
|
|
static void
|
|
|
|
gdk_window_invalidate_rect_full (GdkWindow *window,
|
|
|
|
const GdkRectangle *rect,
|
|
|
|
gboolean invalidate_children,
|
|
|
|
ClearBg clear_bg)
|
2000-03-28 01:24:44 +00:00
|
|
|
{
|
Remove all references to offscreen flag which was no longer used.
Thu Jun 1 23:05:13 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Remove all references to
offscreen flag which was no longer used.
* gtk/gtkprivate.h (enum): Remove unused flags and compress.
* gtk/gtkframe.c (gtk_frame_set_label_widget): Check
for non-null label_widget->parent.
* gtk/gtkentry.c: Get rid of code to deal with PangoAttribute
which no longer was used.
* gdk/gdkpango.c (gdk_pango_context_get_info): make static.
* gdk/gdkpango.c (gdk_draw_layout[_line]): Add checks
for null arguments.
* gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): add
check for destroyed windows.
Thu Jun 1 13:48:45 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimmulticontext.c: Add a finalize method and unref
the slave context there.
* gtk/gtkinvisible.[ch]: Make reference counting behavior
identical to GtkWindow.
Thu Jun 1 01:54:11 2000 Owen Taylor <otaylor@redhat.com>
* Makefile.am gdk/gdkpango.c: Copy the layout render function from
pangox to here, so we can write them independent of rendering
system, using GDK primitives.
* gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c
gdk/x11/gdkdrawable-x11.c: Remove draw_layout() from the vtable,
since we have a rendering-system independent implementation in
terms of draw_glyphs().
* gdk/gdkpango.c gdkdrawable.h (gdk_draw_layout_line): New
function to render a single line.
* gdk/x11/gdkpango.c: Move the guts of this file mostly
into ../gdkpango.c, which simplifies things, since we
don't have to deal with raw X gc's.
Fri May 19 04:28:16 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.[ch]: Add get_log_attrs() function to
get the logical attributes for a given GtkTextLine.
Tue May 30 16:05:39 2000 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Track
g_locale_get_codeset() to g_get_codeset() change.
Tue May 30 15:03:19 2000 Owen Taylor <otaylor@redhat.com>
* gtk/testcalendar.c (calendar_font_selection_ok): Use font
descriptions.
* gtk/gtkentry.c (gtk_entry_draw_text): Center text within
the entry.
* gtk/gtkfontsel.c (gtk_font_selection_dialog_init): Start of
redoing (vastly simplifying) for Pango. Still needs quite
a bit of work. (Size selection is currently poor. List of
predefined sizes is not a good idea, since all of these
sizes won't necessarily be distinct.)
Tue May 30 13:50:19 2000 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Handle
CODESET results for LANG=C.
Mon May 29 15:49:10 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.[ch]: Add a 'font_name' declaration to RC
which takes a stringized pango font description;
ignore the older 'font' and 'fontset' declarations.
* gtk/gtkstyle.c gtk/gtkrc.c: Fill in the style->font
field with a GdkFont derived via gdk_font_from_description(),
for compatibility. (Should we just remove it entirely?
Probably too much compatibility breakage, but people
should be migrating to the new Pango stuff as quickly
as possible.)
Mon May 29 15:47:41 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c gtk/gtkclist.c: s/pango_font_unref/g_object_unref/.
Mon May 29 15:44:46 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkcalender.c: Roughly pango-ized. Really needs
redoing; there are some bugs in size allocation right
now, the semi-existant distinction between header / day
fonts was removed, but, with Pango, could actually
be made functional in a nice way.
* gtk/testcalender: Move calender from examples into this
directory as a test program. (We really need to restrcture
testgtk into a whole directory full of tests for every
widget or functionality group, separated into multiple .c
files.)
Mon May 29 15:19:56 2000 Owen Taylor <otaylor@redhat.com>
* gtk/testgtk.c (file_exists): Fix stupid typo that
was keeping RC file from being loaded.
* gtk/testgtkrc gtk/testgtkrc2: Test new pango-ized
RC file font code.
Mon May 29 14:31:27 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.h gdk/x11/gdkfont-x11.c (gdk_font_from_description):
Add function to load a GdkFont from a PangoFontDescription.
Fri May 26 17:16:40 2000 Owen Taylor <otaylor@redhat.com>
* gtk/frame.[ch] gtkaspectframe.c: Make frame widgets able
to have any widget for the label, use a GtkLabel widget
to display the text. (Based partially on a patch from
Anders Carlson.)
(Quite a bit of code reorganization - strip 90% of the
guts out of gtkaspectframe and add a single virtual
func to GtkFrameClass - compute_child_allocation.)
Fri May 26 12:00:02 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkctree.c gtk/gtkclist.[ch]: Pangoized.
(Removed clist->row_center_offset field because caching
it wasn't saving time or code, added private function
_gtk_clist_create_cell_layout()).
Wed May 24 15:59:37 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkaccellabel.c: Pangoized.
* gtk/[hv]ruler.c: Pangoized
Mon May 22 19:23:59 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c (gtk_file_selection_init):
Use gtk_clist_set_column_auto_resize() to remove need
need for manual column width computations.
Mon May 22 18:50:26 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktooltips.[ch]: Replace custom drawing with a GtkLabel,
ensuring Pango correctness, and considerably simplifying the
code.
* gtk/gtklabel.c gtk[hv]scale.c: 1000 => PANGO_SCALE.
* gtk/gtklabel.c (gtk_label_size_request): Fixed incorrect
getting of numbers of lines.
* gtk/gtklabel.c (gtk_label_size_request): Set the requisition
to the actual requested width of the lable, not to the wrap
width we set.
* gtk/gtktextchild.h: Remove extraneous include of gtk/gtk.h.
* gtk/gtktextbtree.c gtk/gtktextbuffer.c gtk/gtktextlayout.c
gtk/gtktextview.c gtk/gtktextview.[ch]: Fix up includes.
* gtk/gtktextview.c: Fix structure inheritance.
* gtk/gtkprogressbar.c: Pangoize.
Mon May 22 15:47:30 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextview.c (gtk_text_view_get_first_para_iter): Encapsulate
in a function.
* gtk/gtktextlayout.c (find_display_line_above): Fixed
bug with computing line tops.
* gtk/gtktextview.c (changed_handler): Fix < , <= confusion.
Thu May 18 18:53:31 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextdisplay.c (gtk_text_layout_draw): Fix up the x_offset
and y_offset coordinates to do what we need now. (The offset between
buffer and layout coordinates has been reintroduced, but is a
bit different than before.)
* gtk/gtktextview.[ch]: No longer inherit from GtkLayout; instead
handle the adjustments ourselves, and scroll as necessary using
the new gdk_window_scroll().
The advantage of this is that when we are incrementally revalidating,
we are essentially rearranging things around the visible portion
of the screen. With the old setup, the visible portion of the
screen was moved around in the layout, so scrolling and redrawing
to track that caused jumping of the display. Since we now
control the scrolling ourselves, we can suppress this and
only redraw when things actually change.
Thu May 18 18:47:25 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextbtree.c (redisplay_mark): We need to invalidate
the region not just redisplay it after-all, since we store the
cursors in the LineDisplay. (Ugly interactions here between
GtkLayout and GtkTextBTree here.)
* gtk/gtktextbtree.c (redisplay_region): Fixed reversed comparison.
Thu May 18 18:43:21 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.h gdk/x11/gdkgeometry-x11.c (gdk_window_scroll):
Added function to scroll contents of a window while keeping the
window constant. Works by XCopyArea or guffaw-scrolling depending
on the details of how the window is set up. (guffaw-scrolling
still needs to be filled in.)
Wed May 17 22:36:53 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextiter.c gtk/gtkmain.c: Add a debug key for the text widget,
move the debugging that was tied to a global variable
to that.
* gtk/gtkmarshal.list: Add NONE:INT,INT,INT
* gtk/gtktextbtree.[ch] gtk/gtktextlayout.c: Keep a separate
validated flag, in line data instead of setting height/width to
-1. This allows us to perform operations with partially invalid
buffer (using the old size for invalid lines) and thus to do
incremental vaidation. Keep height/width aggregates up to date
when deleting text and rebalancing the tree.
* gtk/gtktextbtree.[ch]: Add functions validate a line
(gtk_text_btree_validate_line), and to validate up
to a number of pixels (gtk_text_btree_validate).
* gtk/gtktextlayout.[ch]: Add an ::invalidated signal
that indicates that something is changed and a revalidation
pass is needed. Change ::need_repaint to ::changed, and
make it take old and new yranges instead of a rectangle.
* gtk/gtktextbtree.[ch] gtk/gtktextlayout.[ch]: Move
the line_data_destroy() function from
gtk_text_btree_add_view() to a virtual function in
GtkTextLayout
* gtk/gtktextbtree.[ch]: Remove gtk_text_btree_get_damage_range(),
since we are handling partial repaints in a different fashion
now.
* gtk/gtktextbtree.[ch]: Only repaint the changed portion
of the selection instead of queueing a repaint on the
entire widget.
* gtk/gtktextbuffer.[ch] gtk/gtktextbtree.[ch]: Move
get_selection_bounds() down to btree, make the function
in buffer a wrapper around the btree function.
* gtk/gtktextlayout.[ch]: Add functions to check if the
layout is valid and to recompute either a range of pixels
aroudn a line or a certain total number of pixels.
* gtk/gtktextlayout.[ch]: Cache a single line display;
now that we only redraw the needed portions, the hit rate
for this cache is quite high.
* gtk/gtktextview.[ch]: Keep track of the first paragraph
on the screen so that when re-laying-out the buffer, we can
keep the same place. This requires connecting to ::value_changed
on the adjustments
* gtk/gtktextview.[ch]: Add idle functions to revalidate
the buffer after we receive an ::invalidated signal.
Wed May 17 22:10:47 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtklayout.c (gtk_layout_size_allocate): Set upper
to max of allocation and layout size, not just to the
layout size.
* gtk/gtk[hv]scrollbar.c (gtk_[hv]scrollbar_calc_slider_size):
Invalidate window so it gets redrawn properly.
* gdk/gdkwindow.c (gdk_window_invalidate_rect): Allow rect == NULL
to mean the entire window.
* gdk/gdkevents.h: Move definition for GDK_PRIORITY_REDRAW
into public header.
Mon May 15 14:51:31 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextmark.c (gtk_text_mark_get_name): Add function
to get the name of a mark.
* gtk/gtktextlayout.c (gtk_text_layout_get_line_at_y): Add a function
to find the paragraph from a y position.
Thu May 11 12:57:20 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextbtree.c (gtk_text_btree_node_invalidate_upward): Valid
nodes have width/height >= 0, not > 0.
Tue May 9 21:29:06 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c (gtk_text_layout_get_line_display):
Add a size_only flag, so when we only need the size, we don't create
useless appearance attributes.
* gtk/gtktextview.c (gtk_text_view_ensure_layout): Remove
duplicate setting of font description.
* gtk/gtkscale.c: Use PANGO_SCALE instead of 1000
Wed Apr 26 01:53:23 2000 Owen Taylor <otaylor@redhat.com>
* gtk/Makefile.am (EXTRA_DIST): Add OLD_STAMP into
EXTRA_DIST. It does not work well when the file that
everything depends on is not in the tarball.
Wed Apr 26 00:56:14 2000 Owen Taylor <otaylor@redhat.com>
* gtk/testgtk.c: Some hacks and fixes so that it basically
works when not sitting in the GTK+ build tree.
2000-05-03 Havoc Pennington <hp@redhat.com>
* gtk/gtktextbtree.c (gtk_text_line_next_could_contain_tag):
Properly determine the ordering of the tag root and the current
line within the tree. Previous algorithm only worked if the tag
root's immediate parent was the common root of both the current
line and the tag root.
Wed Apr 26 00:43:00 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.c (set_para_values): Fix some bugs in
alignment.
* gtk/gtktextview.c (gtk_text_view_ensure_layout): Track
the widget text directional dynamically.
* gtk/gtktextview.[ch]: Added functions to get and set default
wrap mode.
Tue Apr 25 23:47:38 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.c (gtk_text_layout_get_iter_location): Fix bug
in cursor location computation.
Tue Apr 25 23:22:59 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtklayout.c (gtk_layout_set_size): Clamp hadjustment/
vadjusment values properly when layout gets smaller.
* gtk/gtktextview.c (need_repaint_handler): Areas being
passed in are far completely inaccurate, and sometimes
too small, so, for now, just queue a redraw on the
whole visible region.
2000-04-25 Havoc Pennington <hp@redhat.com>
* gtk/gtktextbtree.c (summary_destroy): new function to
destroy tag summary nodes
(gtk_text_line_next_could_contain_tag): this function was
totally broken if the line passed in wasn't below the tag
root. Fix it.
(gtk_text_btree_first_could_contain_tag): In the tag == NULL
"wildcard" case, we have to do a linear scan. Blah.
(gtk_text_btree_last_could_contain_tag): In tag == NULL case,
we have to do the linear scan
(tag_removed_cb): When a tag is removed from the tag table,
remove the GtkTextTagInfo node from the btree.
(gtk_text_btree_spew): Implement the spew function, for
our debugging pleasure.
Tue Apr 25 19:40:18 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.c (gtk_text_layout_set_buffer): Fix
a problem with referring to the wrong buffer.
* gtk/gtkentry.c: Fix focus-in/focus-out confusion.
* gtk/gtkrc.c gtk/gtkstyle.c: Moving setting default
font description to gtk_style_new() - otherwise things
don't work without a .gtkrc file.
* gtk/gtktextbuffer.c (gtk_text_buffer_new): Sink the
tags table if we create it ourself, too.
* gdk/gdktypes.h (enum): Move GDK_RELEASE_MASK, since
it was conflicting with XKB modifiers.
* gtk/gtktextview.[ch]: Add simple support for
GtkIMContext.
Mon Apr 24 19:34:18 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c (gtk_entry_move_cursor_visually): Fix problem
with deletion from last commit.
Mon Apr 24 19:29:40 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_create_pango_context): Set the language
in the context from the current locale.
* gtk/gtkentry.c (gtk_entry_size_request): Use language from the
context, not hardcoded value.
* gtk/gtkentry.c (gtk_entry_move_cursor): Make character movement visual,
not logical.
Sun Apr 23 23:39:18 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c gtk/gtktextdisplay.c: Don't handle selections as
attributes - that doesn't handle partial-glyph selection
properly. Instead use new pango_layout_line_get_x_ranges()
functionality to draw the selection.
* gtk/gtkentry.c: Simplify code since pango_layout_line_index_to_x()
now properly handles out-of-range coordinates.
* gtk/gtktextbuffer.c: Emit "mark_set" when the cursor is moved.
* gtk/gtktextiter.h gtk/gtktextiterprivate.h: Make gtk_text_iter_get_line_byte()
public.
* gtk/gtktextlayout.[ch]: Properly set the direction in the PangoContext
for paragraphs opposite to the base direction of the widget.
* gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c: Fixes for alignment.
* gtk/gtktextlayout.c: Don't split segments on marks, since that
causes Arabic words to reshape as you cursor through.
* gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Implement virtual
cursor position when moving vertically with the arrow keys and
scrolling with page-up/page-down. (Arrow keys save only the X,
scrolling saves both X and Y.)
This means you can line-up / line-down or page-up / page-down
without losing your place, and also that moving vertically
with the cursor keys keeps the same X position, not the same
character count:
* gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Make vertical
arrow keys move by display lines, not paragraphs.
Tue Apr 18 14:16:50 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtklayout.c: Make sure that the bin window is at least
as big as the allocation. (Should we also make sure that the
bin window is big enough to completely cover widget->window?)
* gtk/gtktextview.c (gtk_text_view_get_visible_rect): Add
function to get the onscreen rectangle.
* gdk/x11/gdkwindow-x11.c (gdk_window_get_pointer): Correctly account
for offsets in window coordinates.
Sun Apr 16 16:13:27 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c (gtk_entry_get_cursor_locations): Fix index/offset
confusion.
* gtk/gtktextview.c (gtk_text_view_ensure_layout): Set the default direction
from the widget direction.
* gtk/gtktexttag.c gtk/gtktexttagprivate.h (gtk_text_tag_set_arg):
Add a "direction" attribute.
* gtk/gtktextview.c: global s/tkxt/text_view/.
* gtk/testtext.c: Added long block of text in Arabic, to test out
the direction attributes. (Some problems with the shaping system
for arabic become obvious - like the fact the cursor splits words
into unjoined pieces.)
Fri Apr 14 12:54:34 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextdisplay.c (render_layout): Add overstrike handling.
* gtk/gtktextlayout.c: Fix up alignment.
* gtk/testtext.c: Add some tests for centering, wrapping.
Fri Apr 14 09:26:22 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c gdk/x11/gdkdrawable-x11.c:
Add a draw_glyphs() operation to the drawable vtable and gdk_draw_glyphs().
If we wrote GTK+-specific layout-render function this could just replace
the draw_layout() operation in the vtable.
* gtk/gtkentry.c: Move guts of gtk_entry_get_cursor_locations to
pango_layout_get_cursor_pos() and use that function.
* gtk/gtktextchild.[ch]: add gtk_ onto pixmap_segment_new(), since it
is a non-static symbol.
* gtk/gtktextbtree.[ch]: Replace gtk_text_btree_find_line_data_by_y()
with gtk_text_btree_find_line_by_y()
* gtk/gtktextdisplay.c: Rewrote for Pango - uses a custom layout
renderer that handles GtkTextAppearance attributes.
* gtk/gtktexttag.[ch] gtk/gtktexttagprivate.h:
- Move the values in the style that don't affect geometry into a
GtkTextAppearance structure.
- Change underline to take a PangoUnderline and "font" a string
representation of a font description
- Add a "font_desc" attribute which takes a FontDescription structure.
* gtk/gtktextlayout.[ch]:
- Get rid of the display-line list per each line. Instead, we
generate, on demand, a GtkTextLineDisplay structure which]
contains a PangoLayout * and other necesary information
(offsets, cursor locations) for displaying a paragraph.
- Get rid of the code to wrap lines, create display chunks,
etc. Instead, we just go through a paragraph and convert
it into the necessary inputs to a PangoLayout.
- Implement a new attribute type, GtkTextAttrAppearance. This
holds a GtkTextAppearance, and is used to pass colors,
stipple, etc, through from the layout to the display without
having to use lots and lots of individual attributes.
- Reimplement gtk_layout_get_iter_at_pixel() gtk_layout_get_iter_pos()
in terms of PangoLayout functions.
* gtk/gtktextview.c:
- Handle passing the necessary PangoContext to the layout
- Some fixups in painting to deal with the automatic backing store
and offsetting of GTK+-1.4
- Add a style_set handler so that the default style reacts
properly to theme changes.
* gtk/gtktext?*.[ch]: Random code-style fixes.
* gtk/testtext.c: Substitute in languages that Pango handles now for Thai
Mon Apr 10 10:33:45 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktext?*.[ch]: Check in Havoc's port of the Tk text widget,
in original form preparatory to Pango-ization and gdkimcontext-ization.
Thu Apr 6 19:25:39 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimcontext.c: Move default implementations to real_* vfuncs,
so that we can derive from gtkimcontext in language bindings properly.
Thu Apr 6 16:02:52 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimcontextsimple.[ch]: Use gdk_keyval_to_unicode to gdk_unicode_to_keyval.
Add a compose table including (almost) all the compose combinations
from X. This is 6k of static, shared data as opposed to 50k or so of dynamic
data in the XIM implementation.
* gdk/gdk.h gdk/gdkkeyuni.c gdk/win32/gdkevents-win32.c (gdk_keyval_to_unicode, gdk_unicode_to_keyval):
Moved functions to convert keyvalues from and to unicode here from
the win32 port and made them public.
Wed Apr 5 16:37:29 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkeditable.c (gtk_editable_insert_text): Allow new_text_length == -1.
Wed Apr 5 16:27:45 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimcontext.[ch]: Base class for new input context system
* gtk/gtkimmulticontext.[ch]: Proxy input context that allows
the real input context implementation to be loaded from modules
and switched on the fly.
* gtk/gtkcontextsimple.[ch]: Simple implementation of an input
context that just does direct keysymbol => unicode translation.
* gtk/gtkentry.[ch]: Start switching editing over to using
GtkInputContext. (No handling of preedit yet.)
Wed Apr 5 15:48:41 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktypeutils.h (GTK_CHECK_GET_CLASS): Fix problem with one too
many substitutions. (klass should not be subsituted.)
Wed Apr 5 00:18:14 2000 Owen Taylor <otaylor@redhat.com>
* configure.in: Add checks for Pango
* configure.in docs/Makefile.am: Add test for sgml2html
and allow 'make dist' without building html, but print out
warnings in that case. (For making snapshots)
* gdk/Makefile.am gdk/x11/Makefile.am gtk/Makefile.am:
Add Pango libraries and C flags
* gdk/gdkdraw.c gdk/gdkdrawable.h gdkwindow.c gdk/x11/gdkdrawable-x11.c:
Add function (gdk_draw_layout) to draw a pango layout.
* gdk/gdkpango.h gdk/x11/gdkpango-x11.c: New file with functions
for getting Pango contexts for GDK.
* gtk/gtkeditable.c: Get rid of dead code gtk_editable_parent_set()
* gtk/gtkentry.[ch]: Complete rewrite to use Pango, add bidirectional
editing.
* gtk/gtkentry.c: Hack in simple Hebrew input with direct
keysym => unicode translations. More languages can be added
here, but real input-method support is needed.
* docs/Changes-1.4.txt: Added note about entry behavior.
* gtk/gtkenums.h gtk/gtkwidget.[ch] testgtk.c gtkprivate.h: Add functions
to set the reading direction for a widget and the global direction.
Add test which allows toggling the global direction. Two private
flags are used to store the direction. (GTK_DIRECTION_SET + GTK_DIRECTION_LTR)
* gtk/gtkcheckbutton.c gtk/gtkframe.c gtk/gtkhbbox.c gtk/gtkhbox.c
gtk/gtkradiobutton.c gtk/gtkspinbutton.c gtk/gtktable.c
* gtk/gtk[hv]scale.c gtk/gtkscale.[ch]: Draw numbers using Pango
* gtk/gtklabel.[ch]: Moved to Pango and considerably rewritten. Line breaking,
underlining now handled by Pango.
* gtk/gtkstyle.[ch] gtk/gtkrc.[ch]: Add a PangoFontDescription
to RCStyle and Style. (Having both this and the old font name and GdkFont
is temporary.)
* gtk/gtkwidget.[ch] (gtk_widget_create_pango_{context,layout}): Added
convenience functions for creating contexts and layouts for widgets.
* gtk/testgtk.c: Enhance label tests with multilingual labels.
2000-06-02 03:14:07 +00:00
|
|
|
GdkRectangle window_rect;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region;
|
2000-03-28 01:24:44 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
2000-05-15 16:09:53 +00:00
|
|
|
return;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->input_only || !window->viewable)
|
2000-07-31 17:18:36 +00:00
|
|
|
return;
|
|
|
|
|
Remove all references to offscreen flag which was no longer used.
Thu Jun 1 23:05:13 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Remove all references to
offscreen flag which was no longer used.
* gtk/gtkprivate.h (enum): Remove unused flags and compress.
* gtk/gtkframe.c (gtk_frame_set_label_widget): Check
for non-null label_widget->parent.
* gtk/gtkentry.c: Get rid of code to deal with PangoAttribute
which no longer was used.
* gdk/gdkpango.c (gdk_pango_context_get_info): make static.
* gdk/gdkpango.c (gdk_draw_layout[_line]): Add checks
for null arguments.
* gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): add
check for destroyed windows.
Thu Jun 1 13:48:45 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimmulticontext.c: Add a finalize method and unref
the slave context there.
* gtk/gtkinvisible.[ch]: Make reference counting behavior
identical to GtkWindow.
Thu Jun 1 01:54:11 2000 Owen Taylor <otaylor@redhat.com>
* Makefile.am gdk/gdkpango.c: Copy the layout render function from
pangox to here, so we can write them independent of rendering
system, using GDK primitives.
* gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c
gdk/x11/gdkdrawable-x11.c: Remove draw_layout() from the vtable,
since we have a rendering-system independent implementation in
terms of draw_glyphs().
* gdk/gdkpango.c gdkdrawable.h (gdk_draw_layout_line): New
function to render a single line.
* gdk/x11/gdkpango.c: Move the guts of this file mostly
into ../gdkpango.c, which simplifies things, since we
don't have to deal with raw X gc's.
Fri May 19 04:28:16 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.[ch]: Add get_log_attrs() function to
get the logical attributes for a given GtkTextLine.
Tue May 30 16:05:39 2000 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Track
g_locale_get_codeset() to g_get_codeset() change.
Tue May 30 15:03:19 2000 Owen Taylor <otaylor@redhat.com>
* gtk/testcalendar.c (calendar_font_selection_ok): Use font
descriptions.
* gtk/gtkentry.c (gtk_entry_draw_text): Center text within
the entry.
* gtk/gtkfontsel.c (gtk_font_selection_dialog_init): Start of
redoing (vastly simplifying) for Pango. Still needs quite
a bit of work. (Size selection is currently poor. List of
predefined sizes is not a good idea, since all of these
sizes won't necessarily be distinct.)
Tue May 30 13:50:19 2000 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Handle
CODESET results for LANG=C.
Mon May 29 15:49:10 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.[ch]: Add a 'font_name' declaration to RC
which takes a stringized pango font description;
ignore the older 'font' and 'fontset' declarations.
* gtk/gtkstyle.c gtk/gtkrc.c: Fill in the style->font
field with a GdkFont derived via gdk_font_from_description(),
for compatibility. (Should we just remove it entirely?
Probably too much compatibility breakage, but people
should be migrating to the new Pango stuff as quickly
as possible.)
Mon May 29 15:47:41 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c gtk/gtkclist.c: s/pango_font_unref/g_object_unref/.
Mon May 29 15:44:46 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkcalender.c: Roughly pango-ized. Really needs
redoing; there are some bugs in size allocation right
now, the semi-existant distinction between header / day
fonts was removed, but, with Pango, could actually
be made functional in a nice way.
* gtk/testcalender: Move calender from examples into this
directory as a test program. (We really need to restrcture
testgtk into a whole directory full of tests for every
widget or functionality group, separated into multiple .c
files.)
Mon May 29 15:19:56 2000 Owen Taylor <otaylor@redhat.com>
* gtk/testgtk.c (file_exists): Fix stupid typo that
was keeping RC file from being loaded.
* gtk/testgtkrc gtk/testgtkrc2: Test new pango-ized
RC file font code.
Mon May 29 14:31:27 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.h gdk/x11/gdkfont-x11.c (gdk_font_from_description):
Add function to load a GdkFont from a PangoFontDescription.
Fri May 26 17:16:40 2000 Owen Taylor <otaylor@redhat.com>
* gtk/frame.[ch] gtkaspectframe.c: Make frame widgets able
to have any widget for the label, use a GtkLabel widget
to display the text. (Based partially on a patch from
Anders Carlson.)
(Quite a bit of code reorganization - strip 90% of the
guts out of gtkaspectframe and add a single virtual
func to GtkFrameClass - compute_child_allocation.)
Fri May 26 12:00:02 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkctree.c gtk/gtkclist.[ch]: Pangoized.
(Removed clist->row_center_offset field because caching
it wasn't saving time or code, added private function
_gtk_clist_create_cell_layout()).
Wed May 24 15:59:37 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkaccellabel.c: Pangoized.
* gtk/[hv]ruler.c: Pangoized
Mon May 22 19:23:59 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c (gtk_file_selection_init):
Use gtk_clist_set_column_auto_resize() to remove need
need for manual column width computations.
Mon May 22 18:50:26 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktooltips.[ch]: Replace custom drawing with a GtkLabel,
ensuring Pango correctness, and considerably simplifying the
code.
* gtk/gtklabel.c gtk[hv]scale.c: 1000 => PANGO_SCALE.
* gtk/gtklabel.c (gtk_label_size_request): Fixed incorrect
getting of numbers of lines.
* gtk/gtklabel.c (gtk_label_size_request): Set the requisition
to the actual requested width of the lable, not to the wrap
width we set.
* gtk/gtktextchild.h: Remove extraneous include of gtk/gtk.h.
* gtk/gtktextbtree.c gtk/gtktextbuffer.c gtk/gtktextlayout.c
gtk/gtktextview.c gtk/gtktextview.[ch]: Fix up includes.
* gtk/gtktextview.c: Fix structure inheritance.
* gtk/gtkprogressbar.c: Pangoize.
Mon May 22 15:47:30 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextview.c (gtk_text_view_get_first_para_iter): Encapsulate
in a function.
* gtk/gtktextlayout.c (find_display_line_above): Fixed
bug with computing line tops.
* gtk/gtktextview.c (changed_handler): Fix < , <= confusion.
Thu May 18 18:53:31 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextdisplay.c (gtk_text_layout_draw): Fix up the x_offset
and y_offset coordinates to do what we need now. (The offset between
buffer and layout coordinates has been reintroduced, but is a
bit different than before.)
* gtk/gtktextview.[ch]: No longer inherit from GtkLayout; instead
handle the adjustments ourselves, and scroll as necessary using
the new gdk_window_scroll().
The advantage of this is that when we are incrementally revalidating,
we are essentially rearranging things around the visible portion
of the screen. With the old setup, the visible portion of the
screen was moved around in the layout, so scrolling and redrawing
to track that caused jumping of the display. Since we now
control the scrolling ourselves, we can suppress this and
only redraw when things actually change.
Thu May 18 18:47:25 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextbtree.c (redisplay_mark): We need to invalidate
the region not just redisplay it after-all, since we store the
cursors in the LineDisplay. (Ugly interactions here between
GtkLayout and GtkTextBTree here.)
* gtk/gtktextbtree.c (redisplay_region): Fixed reversed comparison.
Thu May 18 18:43:21 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.h gdk/x11/gdkgeometry-x11.c (gdk_window_scroll):
Added function to scroll contents of a window while keeping the
window constant. Works by XCopyArea or guffaw-scrolling depending
on the details of how the window is set up. (guffaw-scrolling
still needs to be filled in.)
Wed May 17 22:36:53 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextiter.c gtk/gtkmain.c: Add a debug key for the text widget,
move the debugging that was tied to a global variable
to that.
* gtk/gtkmarshal.list: Add NONE:INT,INT,INT
* gtk/gtktextbtree.[ch] gtk/gtktextlayout.c: Keep a separate
validated flag, in line data instead of setting height/width to
-1. This allows us to perform operations with partially invalid
buffer (using the old size for invalid lines) and thus to do
incremental vaidation. Keep height/width aggregates up to date
when deleting text and rebalancing the tree.
* gtk/gtktextbtree.[ch]: Add functions validate a line
(gtk_text_btree_validate_line), and to validate up
to a number of pixels (gtk_text_btree_validate).
* gtk/gtktextlayout.[ch]: Add an ::invalidated signal
that indicates that something is changed and a revalidation
pass is needed. Change ::need_repaint to ::changed, and
make it take old and new yranges instead of a rectangle.
* gtk/gtktextbtree.[ch] gtk/gtktextlayout.[ch]: Move
the line_data_destroy() function from
gtk_text_btree_add_view() to a virtual function in
GtkTextLayout
* gtk/gtktextbtree.[ch]: Remove gtk_text_btree_get_damage_range(),
since we are handling partial repaints in a different fashion
now.
* gtk/gtktextbtree.[ch]: Only repaint the changed portion
of the selection instead of queueing a repaint on the
entire widget.
* gtk/gtktextbuffer.[ch] gtk/gtktextbtree.[ch]: Move
get_selection_bounds() down to btree, make the function
in buffer a wrapper around the btree function.
* gtk/gtktextlayout.[ch]: Add functions to check if the
layout is valid and to recompute either a range of pixels
aroudn a line or a certain total number of pixels.
* gtk/gtktextlayout.[ch]: Cache a single line display;
now that we only redraw the needed portions, the hit rate
for this cache is quite high.
* gtk/gtktextview.[ch]: Keep track of the first paragraph
on the screen so that when re-laying-out the buffer, we can
keep the same place. This requires connecting to ::value_changed
on the adjustments
* gtk/gtktextview.[ch]: Add idle functions to revalidate
the buffer after we receive an ::invalidated signal.
Wed May 17 22:10:47 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtklayout.c (gtk_layout_size_allocate): Set upper
to max of allocation and layout size, not just to the
layout size.
* gtk/gtk[hv]scrollbar.c (gtk_[hv]scrollbar_calc_slider_size):
Invalidate window so it gets redrawn properly.
* gdk/gdkwindow.c (gdk_window_invalidate_rect): Allow rect == NULL
to mean the entire window.
* gdk/gdkevents.h: Move definition for GDK_PRIORITY_REDRAW
into public header.
Mon May 15 14:51:31 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextmark.c (gtk_text_mark_get_name): Add function
to get the name of a mark.
* gtk/gtktextlayout.c (gtk_text_layout_get_line_at_y): Add a function
to find the paragraph from a y position.
Thu May 11 12:57:20 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextbtree.c (gtk_text_btree_node_invalidate_upward): Valid
nodes have width/height >= 0, not > 0.
Tue May 9 21:29:06 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c (gtk_text_layout_get_line_display):
Add a size_only flag, so when we only need the size, we don't create
useless appearance attributes.
* gtk/gtktextview.c (gtk_text_view_ensure_layout): Remove
duplicate setting of font description.
* gtk/gtkscale.c: Use PANGO_SCALE instead of 1000
Wed Apr 26 01:53:23 2000 Owen Taylor <otaylor@redhat.com>
* gtk/Makefile.am (EXTRA_DIST): Add OLD_STAMP into
EXTRA_DIST. It does not work well when the file that
everything depends on is not in the tarball.
Wed Apr 26 00:56:14 2000 Owen Taylor <otaylor@redhat.com>
* gtk/testgtk.c: Some hacks and fixes so that it basically
works when not sitting in the GTK+ build tree.
2000-05-03 Havoc Pennington <hp@redhat.com>
* gtk/gtktextbtree.c (gtk_text_line_next_could_contain_tag):
Properly determine the ordering of the tag root and the current
line within the tree. Previous algorithm only worked if the tag
root's immediate parent was the common root of both the current
line and the tag root.
Wed Apr 26 00:43:00 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.c (set_para_values): Fix some bugs in
alignment.
* gtk/gtktextview.c (gtk_text_view_ensure_layout): Track
the widget text directional dynamically.
* gtk/gtktextview.[ch]: Added functions to get and set default
wrap mode.
Tue Apr 25 23:47:38 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.c (gtk_text_layout_get_iter_location): Fix bug
in cursor location computation.
Tue Apr 25 23:22:59 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtklayout.c (gtk_layout_set_size): Clamp hadjustment/
vadjusment values properly when layout gets smaller.
* gtk/gtktextview.c (need_repaint_handler): Areas being
passed in are far completely inaccurate, and sometimes
too small, so, for now, just queue a redraw on the
whole visible region.
2000-04-25 Havoc Pennington <hp@redhat.com>
* gtk/gtktextbtree.c (summary_destroy): new function to
destroy tag summary nodes
(gtk_text_line_next_could_contain_tag): this function was
totally broken if the line passed in wasn't below the tag
root. Fix it.
(gtk_text_btree_first_could_contain_tag): In the tag == NULL
"wildcard" case, we have to do a linear scan. Blah.
(gtk_text_btree_last_could_contain_tag): In tag == NULL case,
we have to do the linear scan
(tag_removed_cb): When a tag is removed from the tag table,
remove the GtkTextTagInfo node from the btree.
(gtk_text_btree_spew): Implement the spew function, for
our debugging pleasure.
Tue Apr 25 19:40:18 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.c (gtk_text_layout_set_buffer): Fix
a problem with referring to the wrong buffer.
* gtk/gtkentry.c: Fix focus-in/focus-out confusion.
* gtk/gtkrc.c gtk/gtkstyle.c: Moving setting default
font description to gtk_style_new() - otherwise things
don't work without a .gtkrc file.
* gtk/gtktextbuffer.c (gtk_text_buffer_new): Sink the
tags table if we create it ourself, too.
* gdk/gdktypes.h (enum): Move GDK_RELEASE_MASK, since
it was conflicting with XKB modifiers.
* gtk/gtktextview.[ch]: Add simple support for
GtkIMContext.
Mon Apr 24 19:34:18 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c (gtk_entry_move_cursor_visually): Fix problem
with deletion from last commit.
Mon Apr 24 19:29:40 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_create_pango_context): Set the language
in the context from the current locale.
* gtk/gtkentry.c (gtk_entry_size_request): Use language from the
context, not hardcoded value.
* gtk/gtkentry.c (gtk_entry_move_cursor): Make character movement visual,
not logical.
Sun Apr 23 23:39:18 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c gtk/gtktextdisplay.c: Don't handle selections as
attributes - that doesn't handle partial-glyph selection
properly. Instead use new pango_layout_line_get_x_ranges()
functionality to draw the selection.
* gtk/gtkentry.c: Simplify code since pango_layout_line_index_to_x()
now properly handles out-of-range coordinates.
* gtk/gtktextbuffer.c: Emit "mark_set" when the cursor is moved.
* gtk/gtktextiter.h gtk/gtktextiterprivate.h: Make gtk_text_iter_get_line_byte()
public.
* gtk/gtktextlayout.[ch]: Properly set the direction in the PangoContext
for paragraphs opposite to the base direction of the widget.
* gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c: Fixes for alignment.
* gtk/gtktextlayout.c: Don't split segments on marks, since that
causes Arabic words to reshape as you cursor through.
* gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Implement virtual
cursor position when moving vertically with the arrow keys and
scrolling with page-up/page-down. (Arrow keys save only the X,
scrolling saves both X and Y.)
This means you can line-up / line-down or page-up / page-down
without losing your place, and also that moving vertically
with the cursor keys keeps the same X position, not the same
character count:
* gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Make vertical
arrow keys move by display lines, not paragraphs.
Tue Apr 18 14:16:50 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtklayout.c: Make sure that the bin window is at least
as big as the allocation. (Should we also make sure that the
bin window is big enough to completely cover widget->window?)
* gtk/gtktextview.c (gtk_text_view_get_visible_rect): Add
function to get the onscreen rectangle.
* gdk/x11/gdkwindow-x11.c (gdk_window_get_pointer): Correctly account
for offsets in window coordinates.
Sun Apr 16 16:13:27 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c (gtk_entry_get_cursor_locations): Fix index/offset
confusion.
* gtk/gtktextview.c (gtk_text_view_ensure_layout): Set the default direction
from the widget direction.
* gtk/gtktexttag.c gtk/gtktexttagprivate.h (gtk_text_tag_set_arg):
Add a "direction" attribute.
* gtk/gtktextview.c: global s/tkxt/text_view/.
* gtk/testtext.c: Added long block of text in Arabic, to test out
the direction attributes. (Some problems with the shaping system
for arabic become obvious - like the fact the cursor splits words
into unjoined pieces.)
Fri Apr 14 12:54:34 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextdisplay.c (render_layout): Add overstrike handling.
* gtk/gtktextlayout.c: Fix up alignment.
* gtk/testtext.c: Add some tests for centering, wrapping.
Fri Apr 14 09:26:22 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c gdk/x11/gdkdrawable-x11.c:
Add a draw_glyphs() operation to the drawable vtable and gdk_draw_glyphs().
If we wrote GTK+-specific layout-render function this could just replace
the draw_layout() operation in the vtable.
* gtk/gtkentry.c: Move guts of gtk_entry_get_cursor_locations to
pango_layout_get_cursor_pos() and use that function.
* gtk/gtktextchild.[ch]: add gtk_ onto pixmap_segment_new(), since it
is a non-static symbol.
* gtk/gtktextbtree.[ch]: Replace gtk_text_btree_find_line_data_by_y()
with gtk_text_btree_find_line_by_y()
* gtk/gtktextdisplay.c: Rewrote for Pango - uses a custom layout
renderer that handles GtkTextAppearance attributes.
* gtk/gtktexttag.[ch] gtk/gtktexttagprivate.h:
- Move the values in the style that don't affect geometry into a
GtkTextAppearance structure.
- Change underline to take a PangoUnderline and "font" a string
representation of a font description
- Add a "font_desc" attribute which takes a FontDescription structure.
* gtk/gtktextlayout.[ch]:
- Get rid of the display-line list per each line. Instead, we
generate, on demand, a GtkTextLineDisplay structure which]
contains a PangoLayout * and other necesary information
(offsets, cursor locations) for displaying a paragraph.
- Get rid of the code to wrap lines, create display chunks,
etc. Instead, we just go through a paragraph and convert
it into the necessary inputs to a PangoLayout.
- Implement a new attribute type, GtkTextAttrAppearance. This
holds a GtkTextAppearance, and is used to pass colors,
stipple, etc, through from the layout to the display without
having to use lots and lots of individual attributes.
- Reimplement gtk_layout_get_iter_at_pixel() gtk_layout_get_iter_pos()
in terms of PangoLayout functions.
* gtk/gtktextview.c:
- Handle passing the necessary PangoContext to the layout
- Some fixups in painting to deal with the automatic backing store
and offsetting of GTK+-1.4
- Add a style_set handler so that the default style reacts
properly to theme changes.
* gtk/gtktext?*.[ch]: Random code-style fixes.
* gtk/testtext.c: Substitute in languages that Pango handles now for Thai
Mon Apr 10 10:33:45 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktext?*.[ch]: Check in Havoc's port of the Tk text widget,
in original form preparatory to Pango-ization and gdkimcontext-ization.
Thu Apr 6 19:25:39 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimcontext.c: Move default implementations to real_* vfuncs,
so that we can derive from gtkimcontext in language bindings properly.
Thu Apr 6 16:02:52 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimcontextsimple.[ch]: Use gdk_keyval_to_unicode to gdk_unicode_to_keyval.
Add a compose table including (almost) all the compose combinations
from X. This is 6k of static, shared data as opposed to 50k or so of dynamic
data in the XIM implementation.
* gdk/gdk.h gdk/gdkkeyuni.c gdk/win32/gdkevents-win32.c (gdk_keyval_to_unicode, gdk_unicode_to_keyval):
Moved functions to convert keyvalues from and to unicode here from
the win32 port and made them public.
Wed Apr 5 16:37:29 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkeditable.c (gtk_editable_insert_text): Allow new_text_length == -1.
Wed Apr 5 16:27:45 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimcontext.[ch]: Base class for new input context system
* gtk/gtkimmulticontext.[ch]: Proxy input context that allows
the real input context implementation to be loaded from modules
and switched on the fly.
* gtk/gtkcontextsimple.[ch]: Simple implementation of an input
context that just does direct keysymbol => unicode translation.
* gtk/gtkentry.[ch]: Start switching editing over to using
GtkInputContext. (No handling of preedit yet.)
Wed Apr 5 15:48:41 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktypeutils.h (GTK_CHECK_GET_CLASS): Fix problem with one too
many substitutions. (klass should not be subsituted.)
Wed Apr 5 00:18:14 2000 Owen Taylor <otaylor@redhat.com>
* configure.in: Add checks for Pango
* configure.in docs/Makefile.am: Add test for sgml2html
and allow 'make dist' without building html, but print out
warnings in that case. (For making snapshots)
* gdk/Makefile.am gdk/x11/Makefile.am gtk/Makefile.am:
Add Pango libraries and C flags
* gdk/gdkdraw.c gdk/gdkdrawable.h gdkwindow.c gdk/x11/gdkdrawable-x11.c:
Add function (gdk_draw_layout) to draw a pango layout.
* gdk/gdkpango.h gdk/x11/gdkpango-x11.c: New file with functions
for getting Pango contexts for GDK.
* gtk/gtkeditable.c: Get rid of dead code gtk_editable_parent_set()
* gtk/gtkentry.[ch]: Complete rewrite to use Pango, add bidirectional
editing.
* gtk/gtkentry.c: Hack in simple Hebrew input with direct
keysym => unicode translations. More languages can be added
here, but real input-method support is needed.
* docs/Changes-1.4.txt: Added note about entry behavior.
* gtk/gtkenums.h gtk/gtkwidget.[ch] testgtk.c gtkprivate.h: Add functions
to set the reading direction for a widget and the global direction.
Add test which allows toggling the global direction. Two private
flags are used to store the direction. (GTK_DIRECTION_SET + GTK_DIRECTION_LTR)
* gtk/gtkcheckbutton.c gtk/gtkframe.c gtk/gtkhbbox.c gtk/gtkhbox.c
gtk/gtkradiobutton.c gtk/gtkspinbutton.c gtk/gtktable.c
* gtk/gtk[hv]scale.c gtk/gtkscale.[ch]: Draw numbers using Pango
* gtk/gtklabel.[ch]: Moved to Pango and considerably rewritten. Line breaking,
underlining now handled by Pango.
* gtk/gtkstyle.[ch] gtk/gtkrc.[ch]: Add a PangoFontDescription
to RCStyle and Style. (Having both this and the old font name and GdkFont
is temporary.)
* gtk/gtkwidget.[ch] (gtk_widget_create_pango_{context,layout}): Added
convenience functions for creating contexts and layouts for widgets.
* gtk/testgtk.c: Enhance label tests with multilingual labels.
2000-06-02 03:14:07 +00:00
|
|
|
if (!rect)
|
|
|
|
{
|
|
|
|
window_rect.x = 0;
|
|
|
|
window_rect.y = 0;
|
2010-11-22 23:55:39 +00:00
|
|
|
window_rect.width = window->width;
|
|
|
|
window_rect.height = window->height;
|
Remove all references to offscreen flag which was no longer used.
Thu Jun 1 23:05:13 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Remove all references to
offscreen flag which was no longer used.
* gtk/gtkprivate.h (enum): Remove unused flags and compress.
* gtk/gtkframe.c (gtk_frame_set_label_widget): Check
for non-null label_widget->parent.
* gtk/gtkentry.c: Get rid of code to deal with PangoAttribute
which no longer was used.
* gdk/gdkpango.c (gdk_pango_context_get_info): make static.
* gdk/gdkpango.c (gdk_draw_layout[_line]): Add checks
for null arguments.
* gdk/x11/gdkgeometry-x11.c (gdk_window_scroll): add
check for destroyed windows.
Thu Jun 1 13:48:45 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimmulticontext.c: Add a finalize method and unref
the slave context there.
* gtk/gtkinvisible.[ch]: Make reference counting behavior
identical to GtkWindow.
Thu Jun 1 01:54:11 2000 Owen Taylor <otaylor@redhat.com>
* Makefile.am gdk/gdkpango.c: Copy the layout render function from
pangox to here, so we can write them independent of rendering
system, using GDK primitives.
* gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c
gdk/x11/gdkdrawable-x11.c: Remove draw_layout() from the vtable,
since we have a rendering-system independent implementation in
terms of draw_glyphs().
* gdk/gdkpango.c gdkdrawable.h (gdk_draw_layout_line): New
function to render a single line.
* gdk/x11/gdkpango.c: Move the guts of this file mostly
into ../gdkpango.c, which simplifies things, since we
don't have to deal with raw X gc's.
Fri May 19 04:28:16 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.[ch]: Add get_log_attrs() function to
get the logical attributes for a given GtkTextLine.
Tue May 30 16:05:39 2000 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Track
g_locale_get_codeset() to g_get_codeset() change.
Tue May 30 15:03:19 2000 Owen Taylor <otaylor@redhat.com>
* gtk/testcalendar.c (calendar_font_selection_ok): Use font
descriptions.
* gtk/gtkentry.c (gtk_entry_draw_text): Center text within
the entry.
* gtk/gtkfontsel.c (gtk_font_selection_dialog_init): Start of
redoing (vastly simplifying) for Pango. Still needs quite
a bit of work. (Size selection is currently poor. List of
predefined sizes is not a good idea, since all of these
sizes won't necessarily be distinct.)
Tue May 30 13:50:19 2000 Owen Taylor <otaylor@redhat.com>
* gdk/x11/gdkfont-x11.c (gdk_font_charset_for_locale): Handle
CODESET results for LANG=C.
Mon May 29 15:49:10 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkrc.[ch]: Add a 'font_name' declaration to RC
which takes a stringized pango font description;
ignore the older 'font' and 'fontset' declarations.
* gtk/gtkstyle.c gtk/gtkrc.c: Fill in the style->font
field with a GdkFont derived via gdk_font_from_description(),
for compatibility. (Should we just remove it entirely?
Probably too much compatibility breakage, but people
should be migrating to the new Pango stuff as quickly
as possible.)
Mon May 29 15:47:41 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c gtk/gtkclist.c: s/pango_font_unref/g_object_unref/.
Mon May 29 15:44:46 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkcalender.c: Roughly pango-ized. Really needs
redoing; there are some bugs in size allocation right
now, the semi-existant distinction between header / day
fonts was removed, but, with Pango, could actually
be made functional in a nice way.
* gtk/testcalender: Move calender from examples into this
directory as a test program. (We really need to restrcture
testgtk into a whole directory full of tests for every
widget or functionality group, separated into multiple .c
files.)
Mon May 29 15:19:56 2000 Owen Taylor <otaylor@redhat.com>
* gtk/testgtk.c (file_exists): Fix stupid typo that
was keeping RC file from being loaded.
* gtk/testgtkrc gtk/testgtkrc2: Test new pango-ized
RC file font code.
Mon May 29 14:31:27 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkfont.h gdk/x11/gdkfont-x11.c (gdk_font_from_description):
Add function to load a GdkFont from a PangoFontDescription.
Fri May 26 17:16:40 2000 Owen Taylor <otaylor@redhat.com>
* gtk/frame.[ch] gtkaspectframe.c: Make frame widgets able
to have any widget for the label, use a GtkLabel widget
to display the text. (Based partially on a patch from
Anders Carlson.)
(Quite a bit of code reorganization - strip 90% of the
guts out of gtkaspectframe and add a single virtual
func to GtkFrameClass - compute_child_allocation.)
Fri May 26 12:00:02 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkctree.c gtk/gtkclist.[ch]: Pangoized.
(Removed clist->row_center_offset field because caching
it wasn't saving time or code, added private function
_gtk_clist_create_cell_layout()).
Wed May 24 15:59:37 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkaccellabel.c: Pangoized.
* gtk/[hv]ruler.c: Pangoized
Mon May 22 19:23:59 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkfilesel.c (gtk_file_selection_init):
Use gtk_clist_set_column_auto_resize() to remove need
need for manual column width computations.
Mon May 22 18:50:26 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktooltips.[ch]: Replace custom drawing with a GtkLabel,
ensuring Pango correctness, and considerably simplifying the
code.
* gtk/gtklabel.c gtk[hv]scale.c: 1000 => PANGO_SCALE.
* gtk/gtklabel.c (gtk_label_size_request): Fixed incorrect
getting of numbers of lines.
* gtk/gtklabel.c (gtk_label_size_request): Set the requisition
to the actual requested width of the lable, not to the wrap
width we set.
* gtk/gtktextchild.h: Remove extraneous include of gtk/gtk.h.
* gtk/gtktextbtree.c gtk/gtktextbuffer.c gtk/gtktextlayout.c
gtk/gtktextview.c gtk/gtktextview.[ch]: Fix up includes.
* gtk/gtktextview.c: Fix structure inheritance.
* gtk/gtkprogressbar.c: Pangoize.
Mon May 22 15:47:30 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextview.c (gtk_text_view_get_first_para_iter): Encapsulate
in a function.
* gtk/gtktextlayout.c (find_display_line_above): Fixed
bug with computing line tops.
* gtk/gtktextview.c (changed_handler): Fix < , <= confusion.
Thu May 18 18:53:31 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextdisplay.c (gtk_text_layout_draw): Fix up the x_offset
and y_offset coordinates to do what we need now. (The offset between
buffer and layout coordinates has been reintroduced, but is a
bit different than before.)
* gtk/gtktextview.[ch]: No longer inherit from GtkLayout; instead
handle the adjustments ourselves, and scroll as necessary using
the new gdk_window_scroll().
The advantage of this is that when we are incrementally revalidating,
we are essentially rearranging things around the visible portion
of the screen. With the old setup, the visible portion of the
screen was moved around in the layout, so scrolling and redrawing
to track that caused jumping of the display. Since we now
control the scrolling ourselves, we can suppress this and
only redraw when things actually change.
Thu May 18 18:47:25 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextbtree.c (redisplay_mark): We need to invalidate
the region not just redisplay it after-all, since we store the
cursors in the LineDisplay. (Ugly interactions here between
GtkLayout and GtkTextBTree here.)
* gtk/gtktextbtree.c (redisplay_region): Fixed reversed comparison.
Thu May 18 18:43:21 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkwindow.h gdk/x11/gdkgeometry-x11.c (gdk_window_scroll):
Added function to scroll contents of a window while keeping the
window constant. Works by XCopyArea or guffaw-scrolling depending
on the details of how the window is set up. (guffaw-scrolling
still needs to be filled in.)
Wed May 17 22:36:53 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextiter.c gtk/gtkmain.c: Add a debug key for the text widget,
move the debugging that was tied to a global variable
to that.
* gtk/gtkmarshal.list: Add NONE:INT,INT,INT
* gtk/gtktextbtree.[ch] gtk/gtktextlayout.c: Keep a separate
validated flag, in line data instead of setting height/width to
-1. This allows us to perform operations with partially invalid
buffer (using the old size for invalid lines) and thus to do
incremental vaidation. Keep height/width aggregates up to date
when deleting text and rebalancing the tree.
* gtk/gtktextbtree.[ch]: Add functions validate a line
(gtk_text_btree_validate_line), and to validate up
to a number of pixels (gtk_text_btree_validate).
* gtk/gtktextlayout.[ch]: Add an ::invalidated signal
that indicates that something is changed and a revalidation
pass is needed. Change ::need_repaint to ::changed, and
make it take old and new yranges instead of a rectangle.
* gtk/gtktextbtree.[ch] gtk/gtktextlayout.[ch]: Move
the line_data_destroy() function from
gtk_text_btree_add_view() to a virtual function in
GtkTextLayout
* gtk/gtktextbtree.[ch]: Remove gtk_text_btree_get_damage_range(),
since we are handling partial repaints in a different fashion
now.
* gtk/gtktextbtree.[ch]: Only repaint the changed portion
of the selection instead of queueing a repaint on the
entire widget.
* gtk/gtktextbuffer.[ch] gtk/gtktextbtree.[ch]: Move
get_selection_bounds() down to btree, make the function
in buffer a wrapper around the btree function.
* gtk/gtktextlayout.[ch]: Add functions to check if the
layout is valid and to recompute either a range of pixels
aroudn a line or a certain total number of pixels.
* gtk/gtktextlayout.[ch]: Cache a single line display;
now that we only redraw the needed portions, the hit rate
for this cache is quite high.
* gtk/gtktextview.[ch]: Keep track of the first paragraph
on the screen so that when re-laying-out the buffer, we can
keep the same place. This requires connecting to ::value_changed
on the adjustments
* gtk/gtktextview.[ch]: Add idle functions to revalidate
the buffer after we receive an ::invalidated signal.
Wed May 17 22:10:47 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtklayout.c (gtk_layout_size_allocate): Set upper
to max of allocation and layout size, not just to the
layout size.
* gtk/gtk[hv]scrollbar.c (gtk_[hv]scrollbar_calc_slider_size):
Invalidate window so it gets redrawn properly.
* gdk/gdkwindow.c (gdk_window_invalidate_rect): Allow rect == NULL
to mean the entire window.
* gdk/gdkevents.h: Move definition for GDK_PRIORITY_REDRAW
into public header.
Mon May 15 14:51:31 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextmark.c (gtk_text_mark_get_name): Add function
to get the name of a mark.
* gtk/gtktextlayout.c (gtk_text_layout_get_line_at_y): Add a function
to find the paragraph from a y position.
Thu May 11 12:57:20 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextbtree.c (gtk_text_btree_node_invalidate_upward): Valid
nodes have width/height >= 0, not > 0.
Tue May 9 21:29:06 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c (gtk_text_layout_get_line_display):
Add a size_only flag, so when we only need the size, we don't create
useless appearance attributes.
* gtk/gtktextview.c (gtk_text_view_ensure_layout): Remove
duplicate setting of font description.
* gtk/gtkscale.c: Use PANGO_SCALE instead of 1000
Wed Apr 26 01:53:23 2000 Owen Taylor <otaylor@redhat.com>
* gtk/Makefile.am (EXTRA_DIST): Add OLD_STAMP into
EXTRA_DIST. It does not work well when the file that
everything depends on is not in the tarball.
Wed Apr 26 00:56:14 2000 Owen Taylor <otaylor@redhat.com>
* gtk/testgtk.c: Some hacks and fixes so that it basically
works when not sitting in the GTK+ build tree.
2000-05-03 Havoc Pennington <hp@redhat.com>
* gtk/gtktextbtree.c (gtk_text_line_next_could_contain_tag):
Properly determine the ordering of the tag root and the current
line within the tree. Previous algorithm only worked if the tag
root's immediate parent was the common root of both the current
line and the tag root.
Wed Apr 26 00:43:00 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.c (set_para_values): Fix some bugs in
alignment.
* gtk/gtktextview.c (gtk_text_view_ensure_layout): Track
the widget text directional dynamically.
* gtk/gtktextview.[ch]: Added functions to get and set default
wrap mode.
Tue Apr 25 23:47:38 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.c (gtk_text_layout_get_iter_location): Fix bug
in cursor location computation.
Tue Apr 25 23:22:59 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtklayout.c (gtk_layout_set_size): Clamp hadjustment/
vadjusment values properly when layout gets smaller.
* gtk/gtktextview.c (need_repaint_handler): Areas being
passed in are far completely inaccurate, and sometimes
too small, so, for now, just queue a redraw on the
whole visible region.
2000-04-25 Havoc Pennington <hp@redhat.com>
* gtk/gtktextbtree.c (summary_destroy): new function to
destroy tag summary nodes
(gtk_text_line_next_could_contain_tag): this function was
totally broken if the line passed in wasn't below the tag
root. Fix it.
(gtk_text_btree_first_could_contain_tag): In the tag == NULL
"wildcard" case, we have to do a linear scan. Blah.
(gtk_text_btree_last_could_contain_tag): In tag == NULL case,
we have to do the linear scan
(tag_removed_cb): When a tag is removed from the tag table,
remove the GtkTextTagInfo node from the btree.
(gtk_text_btree_spew): Implement the spew function, for
our debugging pleasure.
Tue Apr 25 19:40:18 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextlayout.c (gtk_text_layout_set_buffer): Fix
a problem with referring to the wrong buffer.
* gtk/gtkentry.c: Fix focus-in/focus-out confusion.
* gtk/gtkrc.c gtk/gtkstyle.c: Moving setting default
font description to gtk_style_new() - otherwise things
don't work without a .gtkrc file.
* gtk/gtktextbuffer.c (gtk_text_buffer_new): Sink the
tags table if we create it ourself, too.
* gdk/gdktypes.h (enum): Move GDK_RELEASE_MASK, since
it was conflicting with XKB modifiers.
* gtk/gtktextview.[ch]: Add simple support for
GtkIMContext.
Mon Apr 24 19:34:18 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c (gtk_entry_move_cursor_visually): Fix problem
with deletion from last commit.
Mon Apr 24 19:29:40 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_create_pango_context): Set the language
in the context from the current locale.
* gtk/gtkentry.c (gtk_entry_size_request): Use language from the
context, not hardcoded value.
* gtk/gtkentry.c (gtk_entry_move_cursor): Make character movement visual,
not logical.
Sun Apr 23 23:39:18 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c gtk/gtktextdisplay.c: Don't handle selections as
attributes - that doesn't handle partial-glyph selection
properly. Instead use new pango_layout_line_get_x_ranges()
functionality to draw the selection.
* gtk/gtkentry.c: Simplify code since pango_layout_line_index_to_x()
now properly handles out-of-range coordinates.
* gtk/gtktextbuffer.c: Emit "mark_set" when the cursor is moved.
* gtk/gtktextiter.h gtk/gtktextiterprivate.h: Make gtk_text_iter_get_line_byte()
public.
* gtk/gtktextlayout.[ch]: Properly set the direction in the PangoContext
for paragraphs opposite to the base direction of the widget.
* gtk/gtktextlayout.[ch] gtk/gtktextdisplay.c: Fixes for alignment.
* gtk/gtktextlayout.c: Don't split segments on marks, since that
causes Arabic words to reshape as you cursor through.
* gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Implement virtual
cursor position when moving vertically with the arrow keys and
scrolling with page-up/page-down. (Arrow keys save only the X,
scrolling saves both X and Y.)
This means you can line-up / line-down or page-up / page-down
without losing your place, and also that moving vertically
with the cursor keys keeps the same X position, not the same
character count:
* gtk/gtktextlayout.[ch] gtk/gtktextview.[ch]: Make vertical
arrow keys move by display lines, not paragraphs.
Tue Apr 18 14:16:50 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtklayout.c: Make sure that the bin window is at least
as big as the allocation. (Should we also make sure that the
bin window is big enough to completely cover widget->window?)
* gtk/gtktextview.c (gtk_text_view_get_visible_rect): Add
function to get the onscreen rectangle.
* gdk/x11/gdkwindow-x11.c (gdk_window_get_pointer): Correctly account
for offsets in window coordinates.
Sun Apr 16 16:13:27 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkentry.c (gtk_entry_get_cursor_locations): Fix index/offset
confusion.
* gtk/gtktextview.c (gtk_text_view_ensure_layout): Set the default direction
from the widget direction.
* gtk/gtktexttag.c gtk/gtktexttagprivate.h (gtk_text_tag_set_arg):
Add a "direction" attribute.
* gtk/gtktextview.c: global s/tkxt/text_view/.
* gtk/testtext.c: Added long block of text in Arabic, to test out
the direction attributes. (Some problems with the shaping system
for arabic become obvious - like the fact the cursor splits words
into unjoined pieces.)
Fri Apr 14 12:54:34 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktextdisplay.c (render_layout): Add overstrike handling.
* gtk/gtktextlayout.c: Fix up alignment.
* gtk/testtext.c: Add some tests for centering, wrapping.
Fri Apr 14 09:26:22 2000 Owen Taylor <otaylor@redhat.com>
* gdk/gdkdrawable.h gdk/gdkdraw.c gdk/gdkwindow.c gdk/x11/gdkdrawable-x11.c:
Add a draw_glyphs() operation to the drawable vtable and gdk_draw_glyphs().
If we wrote GTK+-specific layout-render function this could just replace
the draw_layout() operation in the vtable.
* gtk/gtkentry.c: Move guts of gtk_entry_get_cursor_locations to
pango_layout_get_cursor_pos() and use that function.
* gtk/gtktextchild.[ch]: add gtk_ onto pixmap_segment_new(), since it
is a non-static symbol.
* gtk/gtktextbtree.[ch]: Replace gtk_text_btree_find_line_data_by_y()
with gtk_text_btree_find_line_by_y()
* gtk/gtktextdisplay.c: Rewrote for Pango - uses a custom layout
renderer that handles GtkTextAppearance attributes.
* gtk/gtktexttag.[ch] gtk/gtktexttagprivate.h:
- Move the values in the style that don't affect geometry into a
GtkTextAppearance structure.
- Change underline to take a PangoUnderline and "font" a string
representation of a font description
- Add a "font_desc" attribute which takes a FontDescription structure.
* gtk/gtktextlayout.[ch]:
- Get rid of the display-line list per each line. Instead, we
generate, on demand, a GtkTextLineDisplay structure which]
contains a PangoLayout * and other necesary information
(offsets, cursor locations) for displaying a paragraph.
- Get rid of the code to wrap lines, create display chunks,
etc. Instead, we just go through a paragraph and convert
it into the necessary inputs to a PangoLayout.
- Implement a new attribute type, GtkTextAttrAppearance. This
holds a GtkTextAppearance, and is used to pass colors,
stipple, etc, through from the layout to the display without
having to use lots and lots of individual attributes.
- Reimplement gtk_layout_get_iter_at_pixel() gtk_layout_get_iter_pos()
in terms of PangoLayout functions.
* gtk/gtktextview.c:
- Handle passing the necessary PangoContext to the layout
- Some fixups in painting to deal with the automatic backing store
and offsetting of GTK+-1.4
- Add a style_set handler so that the default style reacts
properly to theme changes.
* gtk/gtktext?*.[ch]: Random code-style fixes.
* gtk/testtext.c: Substitute in languages that Pango handles now for Thai
Mon Apr 10 10:33:45 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktext?*.[ch]: Check in Havoc's port of the Tk text widget,
in original form preparatory to Pango-ization and gdkimcontext-ization.
Thu Apr 6 19:25:39 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimcontext.c: Move default implementations to real_* vfuncs,
so that we can derive from gtkimcontext in language bindings properly.
Thu Apr 6 16:02:52 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimcontextsimple.[ch]: Use gdk_keyval_to_unicode to gdk_unicode_to_keyval.
Add a compose table including (almost) all the compose combinations
from X. This is 6k of static, shared data as opposed to 50k or so of dynamic
data in the XIM implementation.
* gdk/gdk.h gdk/gdkkeyuni.c gdk/win32/gdkevents-win32.c (gdk_keyval_to_unicode, gdk_unicode_to_keyval):
Moved functions to convert keyvalues from and to unicode here from
the win32 port and made them public.
Wed Apr 5 16:37:29 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkeditable.c (gtk_editable_insert_text): Allow new_text_length == -1.
Wed Apr 5 16:27:45 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtkimcontext.[ch]: Base class for new input context system
* gtk/gtkimmulticontext.[ch]: Proxy input context that allows
the real input context implementation to be loaded from modules
and switched on the fly.
* gtk/gtkcontextsimple.[ch]: Simple implementation of an input
context that just does direct keysymbol => unicode translation.
* gtk/gtkentry.[ch]: Start switching editing over to using
GtkInputContext. (No handling of preedit yet.)
Wed Apr 5 15:48:41 2000 Owen Taylor <otaylor@redhat.com>
* gtk/gtktypeutils.h (GTK_CHECK_GET_CLASS): Fix problem with one too
many substitutions. (klass should not be subsituted.)
Wed Apr 5 00:18:14 2000 Owen Taylor <otaylor@redhat.com>
* configure.in: Add checks for Pango
* configure.in docs/Makefile.am: Add test for sgml2html
and allow 'make dist' without building html, but print out
warnings in that case. (For making snapshots)
* gdk/Makefile.am gdk/x11/Makefile.am gtk/Makefile.am:
Add Pango libraries and C flags
* gdk/gdkdraw.c gdk/gdkdrawable.h gdkwindow.c gdk/x11/gdkdrawable-x11.c:
Add function (gdk_draw_layout) to draw a pango layout.
* gdk/gdkpango.h gdk/x11/gdkpango-x11.c: New file with functions
for getting Pango contexts for GDK.
* gtk/gtkeditable.c: Get rid of dead code gtk_editable_parent_set()
* gtk/gtkentry.[ch]: Complete rewrite to use Pango, add bidirectional
editing.
* gtk/gtkentry.c: Hack in simple Hebrew input with direct
keysym => unicode translations. More languages can be added
here, but real input-method support is needed.
* docs/Changes-1.4.txt: Added note about entry behavior.
* gtk/gtkenums.h gtk/gtkwidget.[ch] testgtk.c gtkprivate.h: Add functions
to set the reading direction for a widget and the global direction.
Add test which allows toggling the global direction. Two private
flags are used to store the direction. (GTK_DIRECTION_SET + GTK_DIRECTION_LTR)
* gtk/gtkcheckbutton.c gtk/gtkframe.c gtk/gtkhbbox.c gtk/gtkhbox.c
gtk/gtkradiobutton.c gtk/gtkspinbutton.c gtk/gtktable.c
* gtk/gtk[hv]scale.c gtk/gtkscale.[ch]: Draw numbers using Pango
* gtk/gtklabel.[ch]: Moved to Pango and considerably rewritten. Line breaking,
underlining now handled by Pango.
* gtk/gtkstyle.[ch] gtk/gtkrc.[ch]: Add a PangoFontDescription
to RCStyle and Style. (Having both this and the old font name and GdkFont
is temporary.)
* gtk/gtkwidget.[ch] (gtk_widget_create_pango_{context,layout}): Added
convenience functions for creating contexts and layouts for widgets.
* gtk/testgtk.c: Enhance label tests with multilingual labels.
2000-06-02 03:14:07 +00:00
|
|
|
rect = &window_rect;
|
|
|
|
}
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
region = cairo_region_create_rectangle (rect);
|
2009-11-04 13:03:04 +00:00
|
|
|
gdk_window_invalidate_region_full (window, region, invalidate_children, clear_bg);
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (region);
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
|
|
|
|
2009-11-04 13:03:04 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_invalidate_rect:
|
|
|
|
* @window: a #GdkWindow
|
2010-02-19 16:53:17 +00:00
|
|
|
* @rect: (allow-none): rectangle to invalidate or %NULL to invalidate the whole
|
2009-11-04 13:03:04 +00:00
|
|
|
* window
|
|
|
|
* @invalidate_children: whether to also invalidate child windows
|
|
|
|
*
|
|
|
|
* A convenience wrapper around gdk_window_invalidate_region() which
|
|
|
|
* invalidates a rectangular region. See
|
|
|
|
* gdk_window_invalidate_region() for details.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_invalidate_rect (GdkWindow *window,
|
|
|
|
const GdkRectangle *rect,
|
|
|
|
gboolean invalidate_children)
|
|
|
|
{
|
|
|
|
gdk_window_invalidate_rect_full (window, rect, invalidate_children, CLEAR_BG_NONE);
|
|
|
|
}
|
|
|
|
|
2002-02-18 03:29:00 +00:00
|
|
|
static void
|
2008-01-14 14:02:12 +00:00
|
|
|
draw_ugly_color (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
const cairo_region_t *region)
|
2002-02-18 03:29:00 +00:00
|
|
|
{
|
2010-07-17 02:28:40 +00:00
|
|
|
cairo_t *cr;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-07-17 02:28:40 +00:00
|
|
|
cr = gdk_cairo_create (window);
|
|
|
|
/* Draw ugly color all over the newly-invalid region */
|
|
|
|
cairo_set_source_rgb (cr, 50000/65535., 10000/65535., 10000/65535.);
|
|
|
|
gdk_cairo_region (cr, region);
|
|
|
|
cairo_fill (cr);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-07-17 02:28:40 +00:00
|
|
|
cairo_destroy (cr);
|
2002-02-18 03:29:00 +00:00
|
|
|
}
|
|
|
|
|
2009-09-14 11:28:38 +00:00
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_window_add_update_area (GdkWindow *impl_window,
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region)
|
2009-09-14 11:28:38 +00:00
|
|
|
{
|
|
|
|
if (impl_window->update_area)
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_union (impl_window->update_area, region);
|
2009-09-14 11:28:38 +00:00
|
|
|
else
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_add_update_window (impl_window);
|
2010-06-28 12:44:12 +00:00
|
|
|
impl_window->update_area = cairo_region_copy (region);
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_schedule_update (impl_window);
|
2009-09-14 11:28:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-04 13:03:04 +00:00
|
|
|
/* clear_bg controls if the region will be cleared to
|
2010-08-27 13:21:58 +00:00
|
|
|
* the background pattern if the exposure mask is not
|
2009-11-04 13:03:04 +00:00
|
|
|
* set for the window, whereas this might not otherwise be
|
|
|
|
* done (unless necessary to emulate background settings).
|
|
|
|
* Set this to CLEAR_BG_WINCLEARED or CLEAR_BG_ALL if you
|
|
|
|
* need to clear the background, such as when exposing the area beneath a
|
|
|
|
* hidden or moved window, but not when an app requests repaint or when the
|
|
|
|
* windowing system exposes a newly visible area (because then the windowing
|
|
|
|
* system has already cleared the area).
|
|
|
|
*/
|
|
|
|
static void
|
2010-10-01 13:10:52 +00:00
|
|
|
gdk_window_invalidate_maybe_recurse_full (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
const cairo_region_t *region,
|
2010-10-01 13:10:52 +00:00
|
|
|
ClearBg clear_bg,
|
|
|
|
GdkWindowChildFunc child_func,
|
|
|
|
gpointer user_data)
|
2000-03-28 01:24:44 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *impl_window;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *visible_region;
|
2005-03-28 20:28:43 +00:00
|
|
|
GList *tmp_list;
|
2000-03-28 01:24:44 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
Make this compile without framebuffer enabled
2000-06-20 Havoc Pennington <hp@redhat.com>
* modules/linux-fb/Makefile.am: Make this compile
without framebuffer enabled
* gdk/linux-fb/Makefile.am: Add conditional to not build
framebuffer unless specified in configure
* gdk/gdkdraw.c (gdk_draw_drawable): Fix bug where I was getting
the size of the target instead of source if -1 was passed for
width/height
* gdk/x11/gdkgeometry-x11.c (gdk_window_compute_position): Fix
width/height confusion.
2000-06-19 Havoc Pennington <hp@redhat.com>
* gdk/x11/gdkx.h (GDK_WINDOW_XWINDOW): change this to be
GDK_DRAWABLE_XID. In the future, we probably want to make it
faster with G_DISABLE_CHECKS turned on.
2000-06-14 Havoc Pennington <hp@redhat.com>
* gdk/Makefile.am: add gdkpixmap.c
* gdk/gdk.c: s/gdk_window_init/_gdk_windowing_window_init/
s/gdk_image_init/_gdk_windowing_image_init
* gdk/gdkcolor.c: make ref/unref compat wrappers for GObject
ref/unref
* gdk/gdkcolor.h: make GdkColormap a GObject subclass
* gdk/gdkcompat.h: remove GdkWindowType compat, since
GdkWindowType is now non-deprecated;
change gdk_window_get_type() compat to be
gdk_window_get_window_type().
* gdk/gdkdnd.h: make GdkDragContext a GObject.
* gdk/gdkdraw.c, gdk/gdkdraw.h: Convert GdkDrawable to a pure
virtual GObject. Make all functions call into the vtable.
Move gdk_image_put() guts in here. Remove GdkDrawableType
and gdk_drawable_get_type(), these are now GdkWindow-specific.
draw_image, get_depth, get_size, set_colormap, get_colormap,
get_visual added to the vtable.
* gdk/gdkgc.h, gdk/gdkgc.c: Convert GdkGC to a pure virtual
GObject. Virtualize everything.
(gdk_gc_new_with_values): remove check for destroyed window,
because now GdkWindow::create_gc will check this.
(gdk_gc_set_values): New function to set GC values, this
was already implemented but wasn't in the header
* gdk/gdkimage.h, gdk/gdkimage.c: Convert GdkImage to a GObject.
* gdk/gdkinternals.h: Remove _gdk_window_alloc(), remove
_gdk_window_draw_image(), remove _gdk_windowing_window_class,
remove _gdk_window_class; add _gdk_window_impl_get_type() and
_gdk_pixmap_impl_get_type(). Rename gdk_window_init to
_gdk_windowing_window_init, rename gdk_image_init to
_gdk_windowing_image_init.
* gdk/gdkpango.c: Reflect GObject-ification of PangoContext.
(gdk_draw_layout): Remove check for destroyed window,
because all the drawable methods already check it.
* gdk/gdkpixmap.h, gdk/gdkpixmap.c: Convert GdkPixmap to GObject.
Add gdkpixmap.c which contains implementation of GdkDrawable
virtual table (by chaining to a platform-specific implementation
object).
* gdk/gdkprivate.h: Remove GDK_IS_WINDOW, GDK_IS_PIXMAP,
GDK_DRAWABLE_DESTROYED. Add GDK_WINDOW_DESTROYED. Replace
GDK_DRAWABLE_TYPE with GDK_WINDOW_TYPE. Remove GdkDrawablePrivate,
GdkWindowPrivate, GdkImageClass, GdkImagePrivate, GdkGCPrivate,
GdkColormapPrivate.
* gdk/gdktypes.h: #include <glib-object.h>
* gdk/gdkwindow.h, gdk/gdkwindow.c: Convert GdkWindow to GObject.
Move most functionality to platform-specific implementation
object. GdkWindow itself now handles the backing store, then
chains to the platform-specific implementation.
(gdk_window_get_window_type): return GdkWindowType of the window.
(gdk_window_peek_children): New routine, returns the children of
a GdkWindow
(gdk_window_get_children): Was in X11-specific code and did
XQueryTree. Changed to simply return a copy of window->children;
so it can go in cross-platform code.
* gdk/x11/Makefile.am: fix broken MKINSTALLDIRS path
* gdk/x11/gdkcolor-x11.c: implement X-specific parts of
GdkColormap; just changed to use the new private data instead
of casting to GdkColormapPrivate.
* gdk/x11/gdkcursor-x11.c: added a couple typechecks to
gdk_cursor_new().
* gdk/x11/gdkdnd-x11.c: Change the way we access private fields
(private data member in the GObject).
(xdnd_manager_source_filter): Function had broken
error handling, fix it (use gdk_error_trap_push).
* gdk/x11/gdkdrawable-x11.c: This file now implements
a base class for GdkWindowImplX11/GdkPixmapImplX11. This
base class is purely for the convenience of the X port,
and not part of the interface to cross-platform GDK.
* gdk/x11/gdkevents-x11.c: Reflect various renamings.
* gdk/x11/gdkgc-x11.c: Implement a subclass of GdkGC that's
specific to X, and returned by the create_gc virtual method
of GdkDrawableImplX11.
(gdk_x11_gc_set_dashes): Change this to take an array of gint8
rather than gchar, this was also changed in the GdkGC vtable.
(gdk_x11_gc_values_to_xvalues): If GdkGCValues is NULL, or the
mask is 0, return immediately, instead of checking every flag.
This is faster, and keeps us from segfaulting if values is NULL
and the mask contains some nonzero flags.
* gdk/x11/gdkgeometry-x11.c: deal with all the rearranging of
GdkWindow.
* gdk/x11/gdkglobals-x11.c: change type of grab window, since
GdkWindowPrivate is gone.
* gdk/x11/gdkim-x11.c: rename things that got renamed.
* gdk/x11/gdkimage-x11.c: implement in terms of GObject, and
remove the image_put stuff that got transferred to GdkDrawable.
* gdk/x11/gdkinput.c: renamings
* gdk/x11/gdkmain-x11.c: #include <pango/pangox.h>
* gdk/x11/gdkpixmap-x11.c: GObject conversion
* gdk/x11/gdkprivate-x11.h: indentation fixes
* gdk/x11/gdkproperty-x11.c: renamings
* gdk/x11/gdkselection-x11.c: renamings
* gdk/x11/gdkwindow-x11.c: Restructuring and renaming; this now
implements the platform-specific "impl" object.
Moved gdk_window_get_children to gdk/gdkwindow.c
* gdk/x11/gdkx.h: Remove all the private structs and private datas
that no longer exist. Add declaration of GdkGCX11 object here.
Fix all the macros to still work.
* gtk/gtk-boxed.defs: Remove GtkStyle, GdkColormap, GdkWindow,
GdkDragContext from the boxed types since they are now GObjects.
* gtk/gtkstyle.h, gtk/gtkstyle.c: Converted GtkStyle to a GObject,
moved xthickness/ythickness into the instance. GtkStyleClass
functions are now in the standard vtable for GtkStyle, so you have
to create a GObject subclass to write a theme engine.
(gtk_style_copy): fixed a leaked PangoFontDescription
(gtk_style_init): renamed gtk_style_realize, so gtk_style_init
can be the standard GObject function.
* Throughout GTK:
s/style->klass->[xy]thickness/style->[xy]thickness
s/pango_layout_unref/g_object_unref/
* gtk/gtkrc.h, gtk/gtkrc.c: Converted GtkRcStyle to a GObject.
* gtk/gtksocket.c: Use gdk_window_get_user_data() instead of
accessing GDK internals.
* gtk/gtkwidget.c: Use gdk_window_peek_children() instead of
accessing GDK internals.
2000-06-20 21:04:44 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
2000-05-15 16:09:53 +00:00
|
|
|
return;
|
2009-05-27 15:08:09 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->input_only ||
|
|
|
|
!window->viewable ||
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_is_empty (region) ||
|
2010-11-22 23:55:39 +00:00
|
|
|
window->window_type == GDK_WINDOW_ROOT)
|
2000-03-28 01:24:44 +00:00
|
|
|
return;
|
|
|
|
|
2010-10-06 21:42:45 +00:00
|
|
|
visible_region = gdk_window_get_visible_region (window);
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_intersect (visible_region, region);
|
2000-03-28 01:24:44 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
tmp_list = window->children;
|
2005-03-28 20:28:43 +00:00
|
|
|
while (tmp_list)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *child = tmp_list->data;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2005-03-28 20:28:43 +00:00
|
|
|
if (!child->input_only)
|
|
|
|
{
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *child_region;
|
2005-03-28 20:28:43 +00:00
|
|
|
GdkRectangle child_rect;
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
child_rect.x = child->x;
|
|
|
|
child_rect.y = child->y;
|
|
|
|
child_rect.width = child->width;
|
|
|
|
child_rect.height = child->height;
|
2010-06-28 12:44:12 +00:00
|
|
|
child_region = cairo_region_create_rectangle (&child_rect);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2005-03-28 20:28:43 +00:00
|
|
|
/* remove child area from the invalid area of the parent */
|
2007-06-01 12:16:12 +00:00
|
|
|
if (GDK_WINDOW_IS_MAPPED (child) && !child->shaped &&
|
2008-07-18 13:03:42 +00:00
|
|
|
!child->composited &&
|
2009-06-01 10:04:36 +00:00
|
|
|
!gdk_window_is_offscreen (child))
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (visible_region, child_region);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2005-03-28 20:28:43 +00:00
|
|
|
if (child_func && (*child_func) ((GdkWindow *)child, user_data))
|
|
|
|
{
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *tmp = cairo_region_copy (region);
|
2008-01-14 14:02:12 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_translate (tmp, - child_rect.x, - child_rect.y);
|
|
|
|
cairo_region_translate (child_region, - child_rect.x, - child_rect.y);
|
|
|
|
cairo_region_intersect (child_region, tmp);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-11-04 13:03:04 +00:00
|
|
|
gdk_window_invalidate_maybe_recurse_full ((GdkWindow *)child,
|
|
|
|
child_region, clear_bg, child_func, user_data);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (tmp);
|
2005-03-28 20:28:43 +00:00
|
|
|
}
|
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (child_region);
|
2005-03-28 20:28:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tmp_list = tmp_list->next;
|
|
|
|
}
|
2008-12-18 12:36:52 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_window = gdk_window_get_impl_window (window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
if (!cairo_region_is_empty (visible_region) ||
|
2008-12-18 12:36:52 +00:00
|
|
|
/* Even if we're not exposing anything, make sure we process
|
|
|
|
idles for windows with outstanding moves */
|
|
|
|
(impl_window->outstanding_moves != NULL &&
|
|
|
|
impl_window->update_area == NULL))
|
2000-03-28 01:24:44 +00:00
|
|
|
{
|
adapt to handle PangoColor
2001-01-26 Havoc Pennington <hp@redhat.com>
* gtk/gtktextlayout.c (convert_color): adapt to handle PangoColor
* gtk/gtktreeview.c (gtk_tree_view_widget_to_tree_coords): fix to
not offset by TREE_VIEW_HEADER_HEIGHT
(gtk_tree_view_tree_to_widget_coords): fix to not offset by
TREE_VIEW_HEADER_HEIGHT
* configure.in (included_loaders): for me, --with-included-loaders
generates the error "the specified loader yes does not exist",
i.e. the arg defaults to "yes", so change test for value ""
to test for value "yes", and include all loaders in that case.
* gtk/gtkrbtree.c (_gtk_rbtree_get_depth): new function
* gtk/gtktreeview.c (gtk_tree_view_get_cell_rect): fix to properly
handle TREE_VIEW_VERTICAL_SEPARATOR
(gtk_tree_view_bin_expose): fix to consider the row offset as
pointing halfway into vertical separator.
(gtk_tree_view_draw_node_focus_rect): ditto
* gtk/gtkdebug.h, gtk/gtkmain.c (gtk_init_check): Add
--gtk-debug=updates, which causes gdk_window_set_debug_updates
(TRUE) to be called.
* gdk/gdkwindow.c (gdk_window_set_debug_updates): Allow enabling a
debug mode where the invalid region is colored in on invalidate,
so you can see the flicker and know whether your redraw code is
doing a good job.
* gtk/gtktreeview.c (gtk_tree_view_queue_draw_node): Work in
tree window coordinates (clip rect is in tree window coords)
* gtk/Makefile.am: add gtktreednd.[hc]
* gtk/gtkliststore.c: implement gtktreednd interfaces.
* gtk/gtktreednd.c, gtk/gtktreednd.h: New interface to support
drag-and-drop data operations on a model (so we can set up tree
drag-and-drop automatically)
* gtk/testgtk.c: Add a window to change sensitivity in the
GtkLabel test; add a way to change the entry frame in GtkEntry
test
* gtk/gtkentry.c (gtk_entry_set_has_frame):
(gtk_entry_get_has_frame): new functions to remove the frame
around an entry
(gtk_entry_size_request): shrink requisition if no frame
(gtk_entry_draw_focus): don't draw frame if no frame
* gtk/gtkstyle.c (gtk_default_draw_check): draw custom look for
checks inside a cell renderer
(gtk_default_draw_option): ditto for options
* gtk/gtktreeviewcolumn.c (update_button_contents): add/remove
children from the alignment, not the button
(gtk_tree_view_column_init): ref/sink the column, to emulate
GObject refcounting.
* gtk/gtkcellrenderer.c (gtk_cell_renderer_init): ref/sink
* gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
Use theme functions to draw the toggles
* gdk/gdkpango.c (gdk_pango_get_gc): use GdkRGB to alloc colors
* gdk/gdkpango.h, gdk/gdkpango.c: Add GdkPangoAttrStipple and
GdkPangoAttrEmbossed to use in rendering insensitive text
* gdk/gdkpango.c (gdk_draw_layout_line): render new properties
* gtk/gtkstyle.c (gtk_default_draw_layout): handle sensitivity
using new GDK features
2001-01-26 21:12:05 +00:00
|
|
|
if (debug_updates)
|
2009-06-01 10:04:36 +00:00
|
|
|
draw_ugly_color (window, region);
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Convert to impl coords */
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_translate (visible_region, window->abs_x, window->abs_y);
|
2009-11-04 13:03:04 +00:00
|
|
|
|
|
|
|
/* Only invalidate area if app requested expose events or if
|
|
|
|
we need to clear the area (by request or to emulate background
|
|
|
|
clearing for non-native windows or native windows with no support
|
|
|
|
for window backgrounds */
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->event_mask & GDK_EXPOSURE_MASK ||
|
2009-11-04 13:03:04 +00:00
|
|
|
clear_bg == CLEAR_BG_ALL ||
|
2010-08-15 01:27:30 +00:00
|
|
|
clear_bg == CLEAR_BG_WINCLEARED)
|
2009-11-04 13:03:04 +00:00
|
|
|
impl_window_add_update_area (impl_window, visible_region);
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
2009-05-27 15:08:09 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (visible_region);
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
|
|
|
|
2009-11-04 13:03:04 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_invalidate_maybe_recurse:
|
|
|
|
* @window: a #GdkWindow
|
2010-06-28 12:54:37 +00:00
|
|
|
* @region: a #cairo_region_t
|
2009-11-04 13:03:04 +00:00
|
|
|
* @child_func: function to use to decide if to recurse to a child,
|
|
|
|
* %NULL means never recurse.
|
|
|
|
* @user_data: data passed to @child_func
|
|
|
|
*
|
|
|
|
* Adds @region to the update area for @window. The update area is the
|
|
|
|
* region that needs to be redrawn, or "dirty region." The call
|
|
|
|
* gdk_window_process_updates() sends one or more expose events to the
|
|
|
|
* window, which together cover the entire update area. An
|
|
|
|
* application would normally redraw the contents of @window in
|
|
|
|
* response to those expose events.
|
|
|
|
*
|
|
|
|
* GDK will call gdk_window_process_all_updates() on your behalf
|
|
|
|
* whenever your program returns to the main loop and becomes idle, so
|
|
|
|
* normally there's no need to do that manually, you just need to
|
|
|
|
* invalidate regions that you know should be redrawn.
|
|
|
|
*
|
|
|
|
* The @child_func parameter controls whether the region of
|
|
|
|
* each child window that intersects @region will also be invalidated.
|
|
|
|
* Only children for which @child_func returns TRUE will have the area
|
|
|
|
* invalidated.
|
|
|
|
**/
|
|
|
|
void
|
2010-10-01 13:10:52 +00:00
|
|
|
gdk_window_invalidate_maybe_recurse (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
const cairo_region_t *region,
|
2010-10-01 13:10:52 +00:00
|
|
|
GdkWindowChildFunc child_func,
|
|
|
|
gpointer user_data)
|
2009-11-04 13:03:04 +00:00
|
|
|
{
|
|
|
|
gdk_window_invalidate_maybe_recurse_full (window, region, CLEAR_BG_NONE,
|
|
|
|
child_func, user_data);
|
|
|
|
}
|
|
|
|
|
2007-08-08 22:30:26 +00:00
|
|
|
static gboolean
|
|
|
|
true_predicate (GdkWindow *window,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2009-11-04 13:03:04 +00:00
|
|
|
static void
|
|
|
|
gdk_window_invalidate_region_full (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
const cairo_region_t *region,
|
2009-11-04 13:03:04 +00:00
|
|
|
gboolean invalidate_children,
|
|
|
|
ClearBg clear_bg)
|
|
|
|
{
|
|
|
|
gdk_window_invalidate_maybe_recurse_full (window, region, clear_bg,
|
|
|
|
invalidate_children ?
|
|
|
|
true_predicate : (gboolean (*) (GdkWindow *, gpointer))NULL,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
2001-11-04 22:57:03 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_invalidate_region:
|
|
|
|
* @window: a #GdkWindow
|
2010-06-28 12:54:37 +00:00
|
|
|
* @region: a #cairo_region_t
|
2009-06-01 10:04:36 +00:00
|
|
|
* @invalidate_children: %TRUE to also invalidate child windows
|
2001-11-04 22:57:03 +00:00
|
|
|
*
|
|
|
|
* Adds @region to the update area for @window. The update area is the
|
|
|
|
* region that needs to be redrawn, or "dirty region." The call
|
|
|
|
* gdk_window_process_updates() sends one or more expose events to the
|
|
|
|
* window, which together cover the entire update area. An
|
|
|
|
* application would normally redraw the contents of @window in
|
|
|
|
* response to those expose events.
|
|
|
|
*
|
|
|
|
* GDK will call gdk_window_process_all_updates() on your behalf
|
|
|
|
* whenever your program returns to the main loop and becomes idle, so
|
|
|
|
* normally there's no need to do that manually, you just need to
|
|
|
|
* invalidate regions that you know should be redrawn.
|
|
|
|
*
|
|
|
|
* The @invalidate_children parameter controls whether the region of
|
|
|
|
* each child window that intersects @region will also be invalidated.
|
|
|
|
* If %FALSE, then the update area for child windows will remain
|
|
|
|
* unaffected. See gdk_window_invalidate_maybe_recurse if you need
|
|
|
|
* fine grained control over which children are invalidated.
|
|
|
|
**/
|
|
|
|
void
|
2008-01-14 14:02:12 +00:00
|
|
|
gdk_window_invalidate_region (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
const cairo_region_t *region,
|
2008-01-14 14:02:12 +00:00
|
|
|
gboolean invalidate_children)
|
2001-11-04 22:57:03 +00:00
|
|
|
{
|
|
|
|
gdk_window_invalidate_maybe_recurse (window, region,
|
|
|
|
invalidate_children ?
|
2009-06-01 10:04:36 +00:00
|
|
|
true_predicate : (gboolean (*) (GdkWindow *, gpointer))NULL,
|
2001-11-04 22:57:03 +00:00
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/**
|
|
|
|
* _gdk_window_invalidate_for_expose:
|
|
|
|
* @window: a #GdkWindow
|
2010-06-28 12:54:37 +00:00
|
|
|
* @region: a #cairo_region_t
|
2008-07-18 13:03:42 +00:00
|
|
|
*
|
|
|
|
* Adds @region to the update area for @window. The update area is the
|
|
|
|
* region that needs to be redrawn, or "dirty region." The call
|
|
|
|
* gdk_window_process_updates() sends one or more expose events to the
|
|
|
|
* window, which together cover the entire update area. An
|
|
|
|
* application would normally redraw the contents of @window in
|
|
|
|
* response to those expose events.
|
|
|
|
*
|
|
|
|
* GDK will call gdk_window_process_all_updates() on your behalf
|
|
|
|
* whenever your program returns to the main loop and becomes idle, so
|
|
|
|
* normally there's no need to do that manually, you just need to
|
|
|
|
* invalidate regions that you know should be redrawn.
|
|
|
|
*
|
|
|
|
* This version of invalidation is used when you recieve expose events
|
|
|
|
* from the native window system. It exposes the native window, plus
|
|
|
|
* any non-native child windows (but not native child windows, as those would
|
2009-06-01 10:04:36 +00:00
|
|
|
* have gotten their own expose events).
|
2008-07-18 13:03:42 +00:00
|
|
|
**/
|
|
|
|
void
|
|
|
|
_gdk_window_invalidate_for_expose (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2009-08-13 11:13:47 +00:00
|
|
|
GdkWindowRegionMove *move;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *move_region;
|
2009-08-13 11:13:47 +00:00
|
|
|
GList *l;
|
|
|
|
|
|
|
|
/* Any invalidations comming from the windowing system will
|
|
|
|
be in areas that may be moved by outstanding moves,
|
|
|
|
so we need to modify the expose region correspondingly,
|
|
|
|
otherwise we would expose in the wrong place, as the
|
|
|
|
outstanding moves will be copied before we draw the
|
|
|
|
exposes. */
|
2010-11-22 23:55:39 +00:00
|
|
|
for (l = window->outstanding_moves; l != NULL; l = l->next)
|
2009-08-13 11:13:47 +00:00
|
|
|
{
|
|
|
|
move = l->data;
|
|
|
|
|
|
|
|
/* covert to move source region */
|
2010-06-28 12:44:12 +00:00
|
|
|
move_region = cairo_region_copy (move->dest_region);
|
|
|
|
cairo_region_translate (move_region, -move->dx, -move->dy);
|
2009-08-13 11:13:47 +00:00
|
|
|
|
|
|
|
/* Move area of region that intersects with move source
|
|
|
|
by dx, dy of the move*/
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_intersect (move_region, region);
|
|
|
|
cairo_region_subtract (region, move_region);
|
|
|
|
cairo_region_translate (move_region, move->dx, move->dy);
|
|
|
|
cairo_region_union (region, move_region);
|
2009-08-13 11:13:47 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (move_region);
|
2009-08-13 11:13:47 +00:00
|
|
|
}
|
|
|
|
|
2009-11-04 13:03:04 +00:00
|
|
|
gdk_window_invalidate_maybe_recurse_full (window, region, CLEAR_BG_WINCLEARED,
|
|
|
|
(gboolean (*) (GdkWindow *, gpointer))gdk_window_has_no_impl,
|
|
|
|
NULL);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-02-20 05:21:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_update_area:
|
|
|
|
* @window: a #GdkWindow
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-02-20 05:21:44 +00:00
|
|
|
* Transfers ownership of the update area from @window to the caller
|
|
|
|
* of the function. That is, after calling this function, @window will
|
|
|
|
* no longer have an invalid/dirty region; the update area is removed
|
|
|
|
* from @window and handed to you. If a window has no update area,
|
|
|
|
* gdk_window_get_update_area() returns %NULL. You are responsible for
|
2010-06-28 12:44:12 +00:00
|
|
|
* calling cairo_region_destroy() on the returned region if it's non-%NULL.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-02-20 05:21:44 +00:00
|
|
|
* Return value: the update area for @window
|
|
|
|
**/
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *
|
2000-03-28 01:24:44 +00:00
|
|
|
gdk_window_get_update_area (GdkWindow *window)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *impl_window;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *tmp_region;
|
2000-03-28 01:24:44 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_window = gdk_window_get_impl_window (window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (impl_window->update_area)
|
2000-03-28 01:24:44 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
tmp_region = cairo_region_copy (window->clip_region_with_children);
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Convert to impl coords */
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_translate (tmp_region, window->abs_x, window->abs_y);
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_intersect (tmp_region, impl_window->update_area);
|
2000-03-28 01:24:44 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
if (cairo_region_is_empty (tmp_region))
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (tmp_region);
|
2008-07-18 13:03:42 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (impl_window->update_area, tmp_region);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
if (cairo_region_is_empty (impl_window->update_area) &&
|
2008-12-18 13:29:28 +00:00
|
|
|
impl_window->outstanding_moves == NULL)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (impl_window->update_area);
|
2008-07-18 13:03:42 +00:00
|
|
|
impl_window->update_area = NULL;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
gdk_window_remove_update_window ((GdkWindow *)impl_window);
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Convert from impl coords */
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_translate (tmp_region, -window->abs_x, -window->abs_y);
|
2008-07-18 13:03:42 +00:00
|
|
|
return tmp_region;
|
|
|
|
|
|
|
|
}
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2000-05-15 16:09:53 +00:00
|
|
|
/**
|
|
|
|
* _gdk_window_clear_update_area:
|
|
|
|
* @window: a #GdkWindow.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2000-05-15 16:09:53 +00:00
|
|
|
* Internal function to clear the update area for a window. This
|
|
|
|
* is called when the window is hidden or destroyed.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
_gdk_window_clear_update_area (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->update_area)
|
2000-05-15 16:09:53 +00:00
|
|
|
{
|
2008-07-18 13:03:42 +00:00
|
|
|
gdk_window_remove_update_window (window);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_destroy (window->update_area);
|
|
|
|
window->update_area = NULL;
|
2000-05-15 16:09:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_freeze_updates:
|
|
|
|
* @window: a #GdkWindow
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
* Temporarily freezes a window such that it won't receive expose
|
|
|
|
* events. The window will begin receiving expose events again when
|
|
|
|
* gdk_window_thaw_updates() is called. If gdk_window_freeze_updates()
|
|
|
|
* has been called more than once, gdk_window_thaw_updates() must be called
|
|
|
|
* an equal number of times to begin processing exposes.
|
|
|
|
**/
|
2000-03-28 01:24:44 +00:00
|
|
|
void
|
|
|
|
gdk_window_freeze_updates (GdkWindow *window)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *impl_window;
|
2000-03-28 01:24:44 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_window = gdk_window_get_impl_window (window);
|
2008-07-18 13:03:42 +00:00
|
|
|
impl_window->update_freeze_count++;
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_thaw_updates:
|
|
|
|
* @window: a #GdkWindow
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
* Thaws a window frozen with gdk_window_freeze_updates().
|
|
|
|
**/
|
2000-03-28 01:24:44 +00:00
|
|
|
void
|
|
|
|
gdk_window_thaw_updates (GdkWindow *window)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *impl_window;
|
2000-03-28 01:24:44 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_window = gdk_window_get_impl_window (window);
|
2009-02-04 15:36:33 +00:00
|
|
|
|
|
|
|
g_return_if_fail (impl_window->update_freeze_count > 0);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (--impl_window->update_freeze_count == 0)
|
|
|
|
gdk_window_schedule_update (GDK_WINDOW (impl_window));
|
2000-03-28 01:24:44 +00:00
|
|
|
}
|
|
|
|
|
2007-09-12 17:13:24 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_freeze_toplevel_updates_libgtk_only:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Temporarily freezes a window and all its descendants such that it won't
|
|
|
|
* receive expose events. The window will begin receiving expose events
|
|
|
|
* again when gdk_window_thaw_toplevel_updates_libgtk_only() is called. If
|
|
|
|
* gdk_window_freeze_toplevel_updates_libgtk_only()
|
|
|
|
* has been called more than once,
|
|
|
|
* gdk_window_thaw_toplevel_updates_libgtk_only() must be called
|
|
|
|
* an equal number of times to begin processing exposes.
|
|
|
|
*
|
|
|
|
* This function is not part of the GDK public API and is only
|
|
|
|
* for use by GTK+.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_freeze_toplevel_updates_libgtk_only (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
2010-11-22 23:55:39 +00:00
|
|
|
g_return_if_fail (window->window_type != GDK_WINDOW_CHILD);
|
2007-09-12 17:13:24 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->update_and_descendants_freeze_count++;
|
2007-09-12 17:13:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_thaw_toplevel_updates_libgtk_only:
|
|
|
|
* @window: a #GdkWindow
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2007-09-12 17:13:24 +00:00
|
|
|
* Thaws a window frozen with
|
|
|
|
* gdk_window_freeze_toplevel_updates_libgtk_only().
|
|
|
|
*
|
|
|
|
* This function is not part of the GDK public API and is only
|
|
|
|
* for use by GTK+.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_thaw_toplevel_updates_libgtk_only (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
2010-11-22 23:55:39 +00:00
|
|
|
g_return_if_fail (window->window_type != GDK_WINDOW_CHILD);
|
|
|
|
g_return_if_fail (window->update_and_descendants_freeze_count > 0);
|
2007-09-12 17:13:24 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->update_and_descendants_freeze_count--;
|
2007-09-12 17:13:24 +00:00
|
|
|
|
|
|
|
gdk_window_schedule_update (window);
|
|
|
|
}
|
|
|
|
|
2001-02-20 05:21:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_set_debug_updates:
|
|
|
|
* @setting: %TRUE to turn on update debugging
|
|
|
|
*
|
|
|
|
* With update debugging enabled, calls to
|
|
|
|
* gdk_window_invalidate_region() clear the invalidated region of the
|
|
|
|
* screen to a noticeable color, and GDK pauses for a short time
|
|
|
|
* before sending exposes to windows during
|
|
|
|
* gdk_window_process_updates(). The net effect is that you can see
|
|
|
|
* the invalid region for each window and watch redraws as they
|
|
|
|
* occur. This allows you to diagnose inefficiencies in your application.
|
|
|
|
*
|
|
|
|
* In essence, because the GDK rendering model prevents all flicker,
|
|
|
|
* if you are redrawing the same region 400 times you may never
|
|
|
|
* notice, aside from noticing a speed problem. Enabling update
|
|
|
|
* debugging causes GTK to flicker slowly and noticeably, so you can
|
|
|
|
* see exactly what's being redrawn when, in what order.
|
|
|
|
*
|
|
|
|
* The --gtk-debug=updates command line option passed to GTK+ programs
|
|
|
|
* enables this debug option at application startup time. That's
|
|
|
|
* usually more useful than calling gdk_window_set_debug_updates()
|
|
|
|
* yourself, though you might want to use this function to enable
|
|
|
|
* updates sometime after application startup time.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-02-20 05:21:44 +00:00
|
|
|
**/
|
adapt to handle PangoColor
2001-01-26 Havoc Pennington <hp@redhat.com>
* gtk/gtktextlayout.c (convert_color): adapt to handle PangoColor
* gtk/gtktreeview.c (gtk_tree_view_widget_to_tree_coords): fix to
not offset by TREE_VIEW_HEADER_HEIGHT
(gtk_tree_view_tree_to_widget_coords): fix to not offset by
TREE_VIEW_HEADER_HEIGHT
* configure.in (included_loaders): for me, --with-included-loaders
generates the error "the specified loader yes does not exist",
i.e. the arg defaults to "yes", so change test for value ""
to test for value "yes", and include all loaders in that case.
* gtk/gtkrbtree.c (_gtk_rbtree_get_depth): new function
* gtk/gtktreeview.c (gtk_tree_view_get_cell_rect): fix to properly
handle TREE_VIEW_VERTICAL_SEPARATOR
(gtk_tree_view_bin_expose): fix to consider the row offset as
pointing halfway into vertical separator.
(gtk_tree_view_draw_node_focus_rect): ditto
* gtk/gtkdebug.h, gtk/gtkmain.c (gtk_init_check): Add
--gtk-debug=updates, which causes gdk_window_set_debug_updates
(TRUE) to be called.
* gdk/gdkwindow.c (gdk_window_set_debug_updates): Allow enabling a
debug mode where the invalid region is colored in on invalidate,
so you can see the flicker and know whether your redraw code is
doing a good job.
* gtk/gtktreeview.c (gtk_tree_view_queue_draw_node): Work in
tree window coordinates (clip rect is in tree window coords)
* gtk/Makefile.am: add gtktreednd.[hc]
* gtk/gtkliststore.c: implement gtktreednd interfaces.
* gtk/gtktreednd.c, gtk/gtktreednd.h: New interface to support
drag-and-drop data operations on a model (so we can set up tree
drag-and-drop automatically)
* gtk/testgtk.c: Add a window to change sensitivity in the
GtkLabel test; add a way to change the entry frame in GtkEntry
test
* gtk/gtkentry.c (gtk_entry_set_has_frame):
(gtk_entry_get_has_frame): new functions to remove the frame
around an entry
(gtk_entry_size_request): shrink requisition if no frame
(gtk_entry_draw_focus): don't draw frame if no frame
* gtk/gtkstyle.c (gtk_default_draw_check): draw custom look for
checks inside a cell renderer
(gtk_default_draw_option): ditto for options
* gtk/gtktreeviewcolumn.c (update_button_contents): add/remove
children from the alignment, not the button
(gtk_tree_view_column_init): ref/sink the column, to emulate
GObject refcounting.
* gtk/gtkcellrenderer.c (gtk_cell_renderer_init): ref/sink
* gtk/gtkcellrenderertoggle.c (gtk_cell_renderer_toggle_render):
Use theme functions to draw the toggles
* gdk/gdkpango.c (gdk_pango_get_gc): use GdkRGB to alloc colors
* gdk/gdkpango.h, gdk/gdkpango.c: Add GdkPangoAttrStipple and
GdkPangoAttrEmbossed to use in rendering insensitive text
* gdk/gdkpango.c (gdk_draw_layout_line): render new properties
* gtk/gtkstyle.c (gtk_default_draw_layout): handle sensitivity
using new GDK features
2001-01-26 21:12:05 +00:00
|
|
|
void
|
|
|
|
gdk_window_set_debug_updates (gboolean setting)
|
|
|
|
{
|
|
|
|
debug_updates = setting;
|
|
|
|
}
|
2001-02-20 05:21:44 +00:00
|
|
|
|
2001-03-29 21:17:45 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_constrain_size:
|
|
|
|
* @geometry: a #GdkGeometry structure
|
|
|
|
* @flags: a mask indicating what portions of @geometry are set
|
|
|
|
* @width: desired width of window
|
|
|
|
* @height: desired height of the window
|
|
|
|
* @new_width: location to store resulting width
|
|
|
|
* @new_height: location to store resulting height
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
|
|
|
* Constrains a desired width and height according to a
|
2001-03-29 21:17:45 +00:00
|
|
|
* set of geometry hints (such as minimum and maximum size).
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_window_constrain_size (GdkGeometry *geometry,
|
|
|
|
guint flags,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gint *new_width,
|
|
|
|
gint *new_height)
|
|
|
|
{
|
|
|
|
/* This routine is partially borrowed from fvwm.
|
|
|
|
*
|
|
|
|
* Copyright 1993, Robert Nation
|
|
|
|
* You may use this code for any purpose, as long as the original
|
|
|
|
* copyright remains in the source code and all documentation
|
|
|
|
*
|
|
|
|
* which in turn borrows parts of the algorithm from uwm
|
|
|
|
*/
|
|
|
|
gint min_width = 0;
|
|
|
|
gint min_height = 0;
|
|
|
|
gint base_width = 0;
|
|
|
|
gint base_height = 0;
|
|
|
|
gint xinc = 1;
|
|
|
|
gint yinc = 1;
|
|
|
|
gint max_width = G_MAXINT;
|
|
|
|
gint max_height = G_MAXINT;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2001-03-29 21:17:45 +00:00
|
|
|
#define FLOOR(value, base) ( ((gint) ((value) / (base))) * (base) )
|
|
|
|
|
|
|
|
if ((flags & GDK_HINT_BASE_SIZE) && (flags & GDK_HINT_MIN_SIZE))
|
|
|
|
{
|
|
|
|
base_width = geometry->base_width;
|
|
|
|
base_height = geometry->base_height;
|
|
|
|
min_width = geometry->min_width;
|
|
|
|
min_height = geometry->min_height;
|
|
|
|
}
|
|
|
|
else if (flags & GDK_HINT_BASE_SIZE)
|
|
|
|
{
|
|
|
|
base_width = geometry->base_width;
|
|
|
|
base_height = geometry->base_height;
|
|
|
|
min_width = geometry->base_width;
|
|
|
|
min_height = geometry->base_height;
|
|
|
|
}
|
|
|
|
else if (flags & GDK_HINT_MIN_SIZE)
|
|
|
|
{
|
|
|
|
base_width = geometry->min_width;
|
|
|
|
base_height = geometry->min_height;
|
|
|
|
min_width = geometry->min_width;
|
|
|
|
min_height = geometry->min_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & GDK_HINT_MAX_SIZE)
|
|
|
|
{
|
|
|
|
max_width = geometry->max_width ;
|
|
|
|
max_height = geometry->max_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flags & GDK_HINT_RESIZE_INC)
|
|
|
|
{
|
|
|
|
xinc = MAX (xinc, geometry->width_inc);
|
|
|
|
yinc = MAX (yinc, geometry->height_inc);
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2001-03-29 21:17:45 +00:00
|
|
|
/* clamp width and height to min and max values
|
|
|
|
*/
|
|
|
|
width = CLAMP (width, min_width, max_width);
|
|
|
|
height = CLAMP (height, min_height, max_height);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2001-03-29 21:17:45 +00:00
|
|
|
/* shrink to base + N * inc
|
|
|
|
*/
|
|
|
|
width = base_width + FLOOR (width - base_width, xinc);
|
|
|
|
height = base_height + FLOOR (height - base_height, yinc);
|
|
|
|
|
|
|
|
/* constrain aspect ratio, according to:
|
|
|
|
*
|
2009-06-01 10:04:36 +00:00
|
|
|
* width
|
2001-03-29 21:17:45 +00:00
|
|
|
* min_aspect <= -------- <= max_aspect
|
2009-06-01 10:04:36 +00:00
|
|
|
* height
|
2001-03-29 21:17:45 +00:00
|
|
|
*/
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2001-03-29 21:17:45 +00:00
|
|
|
if (flags & GDK_HINT_ASPECT &&
|
|
|
|
geometry->min_aspect > 0 &&
|
|
|
|
geometry->max_aspect > 0)
|
|
|
|
{
|
|
|
|
gint delta;
|
|
|
|
|
|
|
|
if (geometry->min_aspect * height > width)
|
|
|
|
{
|
2003-04-18 19:09:03 +00:00
|
|
|
delta = FLOOR (height - width / geometry->min_aspect, yinc);
|
2001-03-29 21:17:45 +00:00
|
|
|
if (height - delta >= min_height)
|
|
|
|
height -= delta;
|
|
|
|
else
|
2009-06-01 10:04:36 +00:00
|
|
|
{
|
2001-03-29 21:17:45 +00:00
|
|
|
delta = FLOOR (height * geometry->min_aspect - width, xinc);
|
2009-06-01 10:04:36 +00:00
|
|
|
if (width + delta <= max_width)
|
2001-03-29 21:17:45 +00:00
|
|
|
width += delta;
|
|
|
|
}
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2001-03-29 21:17:45 +00:00
|
|
|
if (geometry->max_aspect * height < width)
|
|
|
|
{
|
|
|
|
delta = FLOOR (width - height * geometry->max_aspect, xinc);
|
2009-06-01 10:04:36 +00:00
|
|
|
if (width - delta >= min_width)
|
2001-03-29 21:17:45 +00:00
|
|
|
width -= delta;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delta = FLOOR (width / geometry->max_aspect - height, yinc);
|
|
|
|
if (height + delta <= max_height)
|
|
|
|
height += delta;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#undef FLOOR
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2001-03-29 21:17:45 +00:00
|
|
|
*new_width = width;
|
|
|
|
*new_height = height;
|
|
|
|
}
|
2001-07-05 13:41:34 +00:00
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_pointer:
|
|
|
|
* @window: a #GdkWindow
|
2009-08-18 18:35:10 +00:00
|
|
|
* @x: (out) (allow-none): return location for X coordinate of pointer or %NULL to not
|
2007-06-12 05:34:26 +00:00
|
|
|
* return the X coordinate
|
2009-08-18 18:35:10 +00:00
|
|
|
* @y: (out) (allow-none): return location for Y coordinate of pointer or %NULL to not
|
2007-06-12 05:34:26 +00:00
|
|
|
* return the Y coordinate
|
2009-08-18 18:35:10 +00:00
|
|
|
* @mask: (out) (allow-none): return location for modifier mask or %NULL to not return the
|
2007-06-12 05:34:26 +00:00
|
|
|
* modifier mask
|
2001-10-03 18:19:48 +00:00
|
|
|
*
|
|
|
|
* Obtains the current pointer position and modifier state.
|
2009-06-01 10:04:36 +00:00
|
|
|
* The position is given in coordinates relative to the upper left
|
2006-07-17 04:19:59 +00:00
|
|
|
* corner of @window.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2009-08-18 18:35:10 +00:00
|
|
|
* Return value: (transfer none): the window containing the pointer (as with
|
2002-01-13 20:13:34 +00:00
|
|
|
* gdk_window_at_pointer()), or %NULL if the window containing the
|
|
|
|
* pointer isn't known to GDK
|
2010-05-25 22:38:44 +00:00
|
|
|
*
|
2010-05-27 13:37:19 +00:00
|
|
|
* Deprecated: 3.0: Use gdk_window_get_device_position() instead.
|
2001-10-03 18:19:48 +00:00
|
|
|
**/
|
2001-07-05 13:41:34 +00:00
|
|
|
GdkWindow*
|
|
|
|
gdk_window_get_pointer (GdkWindow *window,
|
|
|
|
gint *x,
|
|
|
|
gint *y,
|
2002-10-07 19:42:49 +00:00
|
|
|
GdkModifierType *mask)
|
2001-07-05 13:41:34 +00:00
|
|
|
{
|
2002-10-07 19:42:49 +00:00
|
|
|
GdkDisplay *display;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
2002-10-07 19:42:49 +00:00
|
|
|
|
2010-08-29 00:08:47 +00:00
|
|
|
display = gdk_window_get_display (window);
|
2002-10-07 19:42:49 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
return gdk_window_get_device_position (window, display->core_pointer, x, y, mask);
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_device_position:
|
|
|
|
* @window: a #GdkWindow.
|
2010-12-20 22:04:44 +00:00
|
|
|
* @device: pointer #GdkDevice to query to.
|
2010-09-07 17:58:36 +00:00
|
|
|
* @x: (out) (allow-none): return location for the X coordinate of @device, or %NULL.
|
|
|
|
* @y: (out) (allow-none): return location for the Y coordinate of @device, or %NULL.
|
|
|
|
* @mask: (out) (allow-none): return location for the modifier mask, or %NULL.
|
2010-05-25 22:38:44 +00:00
|
|
|
*
|
|
|
|
* Obtains the current device position and modifier state.
|
|
|
|
* The position is given in coordinates relative to the upper left
|
|
|
|
* corner of @window.
|
|
|
|
*
|
2010-09-07 17:58:36 +00:00
|
|
|
* Return value: (transfer none): The window underneath @device (as with
|
2010-12-27 17:45:39 +00:00
|
|
|
* gdk_device_get_window_at_position()), or %NULL if the window is not known to GDK.
|
2010-05-25 22:38:44 +00:00
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
**/
|
|
|
|
GdkWindow *
|
|
|
|
gdk_window_get_device_position (GdkWindow *window,
|
|
|
|
GdkDevice *device,
|
|
|
|
gint *x,
|
|
|
|
gint *y,
|
|
|
|
GdkModifierType *mask)
|
|
|
|
{
|
|
|
|
gint tmp_x, tmp_y;
|
|
|
|
GdkModifierType tmp_mask;
|
2011-01-03 16:01:36 +00:00
|
|
|
gboolean normal_child;
|
2002-10-07 19:42:49 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
g_return_val_if_fail (GDK_IS_DEVICE (device), NULL);
|
2010-12-20 22:04:44 +00:00
|
|
|
g_return_val_if_fail (gdk_device_get_source (device) != GDK_SOURCE_KEYBOARD, NULL);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
2011-01-03 16:01:36 +00:00
|
|
|
normal_child = GDK_WINDOW_IMPL_GET_CLASS (window->impl)->get_device_state (window,
|
|
|
|
device,
|
|
|
|
&tmp_x, &tmp_y,
|
|
|
|
&tmp_mask);
|
|
|
|
/* We got the coords on the impl, convert to the window */
|
|
|
|
tmp_x -= window->abs_x;
|
|
|
|
tmp_y -= window->abs_y;
|
2002-10-07 19:42:49 +00:00
|
|
|
|
|
|
|
if (x)
|
|
|
|
*x = tmp_x;
|
|
|
|
if (y)
|
|
|
|
*y = tmp_y;
|
|
|
|
if (mask)
|
|
|
|
*mask = tmp_mask;
|
|
|
|
|
2011-01-03 16:01:36 +00:00
|
|
|
_gdk_display_enable_motion_hints (gdk_window_get_display (window), device);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2011-01-03 16:01:36 +00:00
|
|
|
if (normal_child)
|
|
|
|
return _gdk_window_find_child_at (window, tmp_x, tmp_y);
|
|
|
|
return NULL;
|
2001-07-05 13:41:34 +00:00
|
|
|
}
|
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_at_pointer:
|
2009-08-18 18:35:10 +00:00
|
|
|
* @win_x: (out) (allow-none): return location for origin of the window under the pointer
|
|
|
|
* @win_y: (out) (allow-none): return location for origin of the window under the pointer
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2002-01-13 20:13:34 +00:00
|
|
|
* Obtains the window underneath the mouse pointer, returning the
|
|
|
|
* location of that window in @win_x, @win_y. Returns %NULL if the
|
docs/reference/gtk/tmpl/gtkfontseldlg.sgml, gdk/gdkwindow.c,
Sat Oct 5 16:47:03 2002 Soeren Sandmann <sandmann@daimi.au.dk>
* docs/reference/gtk/tmpl/gtkfontseldlg.sgml, gdk/gdkwindow.c,
gdk/x11/gdkwindow-x11.c, gtk/gtkfontsel.h, gtk/gtkimcontext.c,
gtk/gtktreeview.c, gtk/gtktreeviewcolumn.c
Documentation fixes:
#75170, Dan Winship;
#73220, Havoc Pennington;
#70742, Boris Shingarov;
#72007, Alexey A. Malyshev
2002-10-05 15:09:29 +00:00
|
|
|
* window under the mouse pointer is not known to GDK (if the window
|
|
|
|
* belongs to another application and a #GdkWindow hasn't been created
|
|
|
|
* for it with gdk_window_foreign_new())
|
2002-04-25 22:29:14 +00:00
|
|
|
*
|
|
|
|
* NOTE: For multihead-aware widgets or applications use
|
2002-10-07 19:42:49 +00:00
|
|
|
* gdk_display_get_window_at_pointer() instead.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2009-08-18 18:35:10 +00:00
|
|
|
* Return value: (transfer none): window under the mouse pointer
|
2010-05-25 22:38:44 +00:00
|
|
|
*
|
2010-12-27 17:45:39 +00:00
|
|
|
* Deprecated: 3.0: Use gdk_device_get_window_at_position() instead.
|
2001-10-03 18:19:48 +00:00
|
|
|
**/
|
2001-07-05 13:41:34 +00:00
|
|
|
GdkWindow*
|
|
|
|
gdk_window_at_pointer (gint *win_x,
|
|
|
|
gint *win_y)
|
|
|
|
{
|
2002-10-07 19:42:49 +00:00
|
|
|
return gdk_display_get_window_at_pointer (gdk_display_get_default (), win_x, win_y);
|
2001-07-05 13:41:34 +00:00
|
|
|
}
|
Make gdkx.h the only installed header from gdk/x11. All structures in
Fri Sep 7 11:51:44 2001 Owen Taylor <otaylor@redhat.com>
Make gdkx.h the only installed header from gdk/x11.
All structures in gdk/x11 are opaque.
* gdk/x11/Makefile.am gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h:
Don't install gdk{drawable,pixmap,window}-x11.h.
* gdk/x11/{gdkcolormap-x11.c, gdkfont-x11.c, gdkx.h, gdkvisual-x11.c:
Move GdkColormapPrivateX11, GdkFontPrivateX GdkImagePrivateX11,
GdkVisualClass into C files.
* gdk/gdkpixmap-x11.[ch]: Make gdk_pixmap_impl_get_type() static.
* gdk/x11/{gdkcolor-x11.c, gdkcursor-x11.c, gdkdrawable-x11.c,
gdkfont-x11.c, gdkgc-x11.c, gdkx.h, gdkimage-x11,gdkvisual-x11.c}
Add public functions to replace previously exported direct
structure access.
gdk_x11_colormap_get_{xdisplay,xcolormap}
gdk_x11_cursor_get_{xdisplay,xcursor},
gdk_x11_drawable_get_{xdisplay,xcursor,gdk_x11_visual_get_xvisual,
gdk_x11_font_get_{xdisplay,xfont}, gdk_x11_image_get_{xdisplay,ximage},
gdk_x11_gc_get_{xdisplay,ximage}
* gdk/gdkprivate.h gdk/gdkinternals.h: Move GdkColorInfo,
GdkEventFilter, GdkClientFilter, GdkFontPrivate to gdkinternals.
Fix a number of variables and functions that were exported
"accidentally" from GDK.
* gdk/**.[ch]: gdk => _gdk for gdk_visual_init,
gdk_events_init, gdk_input_init, gdk_dnd_init, gdk_image_exit,
gdk_input_exit, gdk_windowing_exit, gdk_event_func, gdk_event_data,
gdk_event_notify, gdk_queued_events, gdk_queued_tail,
gdk_event_new, gdk_events_queue, gdk_events_unqueue,
gdk_event_queue_find_first, gdk_event_queue_remove_link,
gdk_event_queue_append, gdk_event_button_generate,
gdk_debug_flags, gdk_default_filters, gdk_parent_root.
* gdk/x11/{gdkevents-x11.c, gdkglobals-x11.c, gdkimage-x11.c,
gdkmain-x11.c, gdkprivate-x11.h, gdk/x11/gdkwindow-x11.c}:
gdk => _gdk for gdk_event_mask_table, gkd_nevent_masks,
gdk_wm_window_protocols, gdk_leader_window, gdk_xgrab_window,
gdk_use_xshm, gdk_input_ignore_core.
* gdk/x11/xsettings-common.h (xsettings_list_insert): Add
#defines to namespace functions into the private _gdk_
namespace.
* gdk/gdkwindow.[ch] gdk/x11/gdkx.h: Add gdk_get_default_root_window ()
to replace gdk_parent_root exported variable. Adjust and
deprecate GDK_ROOT_PARENT().
* demos/{testpixbuf-drawable.c,testpixbuf-save.c}: Fix
GDK_ROOT_PARENT usage, remove includes of port-specific
headers.
* gdk/{win32,x11,fb}/gdkinput*.[ch]: s/gdk/_gdk/ for
_gdk_input_gxid_host, _gdk_input_gxid_port, _gdk_input_ignore_core,
gdk_input_devices, _gdk_input_windows, gdk_init_input_core.
* gdk/x11/{gdkevents-x11.,c gdkglobals-x11.c, gdkmain-x11.c}
docs/Changes-2.0.txt: Remove gdk_wm_protocols,
gdk_wm_delete_window functions, gdk_wm_take_focus,
use gdk_atom_intern() instead.
* gdk/linux-fb/{gdkselection-fb.c, gdkmain-fb.c, gdkprivatefb.h}
gdk/win32/{gdkselection-win32.c, gdkmgdkwin32.h, gdkprivate-win32.h}
gdk/x11/{gdkselection-x11.c gdkx.h, gtkprivate-x11.h}
gtk/gtkselection.c
Unexport gdk_selection_property, just use
gdk_atom_intern ("GDK_SELECTION").
* gdk/x11/{gdkprivate-x11.h,gdkdrawable-x11h,gdkgc-x11.c,gdkx.h}:
Unexport gdk_drawable_impl_x11_get_type, gdk_gc_x11_get_type,
GDK_GC_X11 cast macros, GdkGCX11 structures, GdkCursorPrivate,
GdkVisualprivate, gdk_x11_gc_flush.
Make a number of public exports of variables into functions
to increase encapsulation.
* gdk/gdkinternals.h gdk/gdkinput.h gdk/gdkevents.h
gdk/linux-fb/gdkmouse-fb.c: gdk_core_pointer => _gdk_core_pointer,
move to gdkinternals.h. Add gdk_device_get_core_pointer ().
* gdk/gdkprivate.h gdk/gdkpango.c gdk/gdkinternals.h
docs/Changes-2.0.txt: Unexport gdk_parent_root, gdk_error_code,
gdk_error_warnings.
* gdk/x11/{gdkcolormap-x11.c, gdkmain-x11.c, gdkx.h}
docs/Changes-2.0.txt:
s/gdk_screen/_gdk_screen/, add gdk_x11_get_default_screen()
s/gdk_root_window/_gdk_root_window/, add gdk_x11_get_default_root_xwindow()
Add gdk_x11_get_default_xdisplay().
* gdk/gdk.h gdk/gdk.c linux-fb/gdkfb.h linux-fb/gdkglobals-fb.c
win32/gdkwin32.h x11/gdkglobals-x11.c gdk/x11/gdkmain-x11.c
gdk/x11/gdkx.h: gdk/gdk.def: Add gdk_get/set_program_class,
Don't export gdk_progclass, move --class command line
option and handling to common portion of GDK.
Miscellaneous fixes:
* gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): Fix
g_return_val_if_fail that should have been g_return_if_fail.
* gdk/gdkinternals.h gdk/gdkprivate.h: Move
gdk_synthesize_window_state() to the semi-public gdkprivate.h.
* gtk/gtkdnd.c (_gtk_drag_source_handle_event): Remove uneeded
X11 dependency.
* gdk/linux-fb/gdkmain-fb.c gdk/win32/gdkmain-win32.c gdk/TODO:
Remove unused gdk_key_repeat_disable/restore.
* linux-fb/gdkglobals-fb.c win32/gdkglobals-win32.c
x11/gdkglobals-x11.c x11/gdkprivate-x11.h gdk/gdk.def:
Remove unused gdk_null_window_warnings variable.
* gdk/Makefile.am (DIST_SUBDIRS) nanox/*: cvs remove nanox;
it can be retrieved from the repository; it is too far
from functional to be worth having people check out;
it would be easier to start from scratch, I suspect.
* gdk/x11/gdkpixmap-x11.c: Fix lvalue usage of GDK_PIXMAP_XID().
* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
Fix some accidentally global variables and unused global variables.
* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
Fix some accidentally global variables and unused global variables.
Add some space for future expansion to multihead.
* gdk/gdkdrawable.h: Add four reserved function pointers
for future expansion of GdkDrawableClass.
* gtk/gtkwindow.h gtk/gtkinvisible.h: Add reserved pointer
where we can put a GdkScreen * later.
2001-09-07 21:50:20 +00:00
|
|
|
|
2001-10-03 18:19:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_get_default_root_window:
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2001-10-03 18:19:48 +00:00
|
|
|
* Obtains the root window (parent all other windows are inside)
|
|
|
|
* for the default display and screen.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2010-11-24 19:13:09 +00:00
|
|
|
* Return value: (transfer none): the default root window
|
2001-10-03 18:19:48 +00:00
|
|
|
**/
|
Make gdkx.h the only installed header from gdk/x11. All structures in
Fri Sep 7 11:51:44 2001 Owen Taylor <otaylor@redhat.com>
Make gdkx.h the only installed header from gdk/x11.
All structures in gdk/x11 are opaque.
* gdk/x11/Makefile.am gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h:
Don't install gdk{drawable,pixmap,window}-x11.h.
* gdk/x11/{gdkcolormap-x11.c, gdkfont-x11.c, gdkx.h, gdkvisual-x11.c:
Move GdkColormapPrivateX11, GdkFontPrivateX GdkImagePrivateX11,
GdkVisualClass into C files.
* gdk/gdkpixmap-x11.[ch]: Make gdk_pixmap_impl_get_type() static.
* gdk/x11/{gdkcolor-x11.c, gdkcursor-x11.c, gdkdrawable-x11.c,
gdkfont-x11.c, gdkgc-x11.c, gdkx.h, gdkimage-x11,gdkvisual-x11.c}
Add public functions to replace previously exported direct
structure access.
gdk_x11_colormap_get_{xdisplay,xcolormap}
gdk_x11_cursor_get_{xdisplay,xcursor},
gdk_x11_drawable_get_{xdisplay,xcursor,gdk_x11_visual_get_xvisual,
gdk_x11_font_get_{xdisplay,xfont}, gdk_x11_image_get_{xdisplay,ximage},
gdk_x11_gc_get_{xdisplay,ximage}
* gdk/gdkprivate.h gdk/gdkinternals.h: Move GdkColorInfo,
GdkEventFilter, GdkClientFilter, GdkFontPrivate to gdkinternals.
Fix a number of variables and functions that were exported
"accidentally" from GDK.
* gdk/**.[ch]: gdk => _gdk for gdk_visual_init,
gdk_events_init, gdk_input_init, gdk_dnd_init, gdk_image_exit,
gdk_input_exit, gdk_windowing_exit, gdk_event_func, gdk_event_data,
gdk_event_notify, gdk_queued_events, gdk_queued_tail,
gdk_event_new, gdk_events_queue, gdk_events_unqueue,
gdk_event_queue_find_first, gdk_event_queue_remove_link,
gdk_event_queue_append, gdk_event_button_generate,
gdk_debug_flags, gdk_default_filters, gdk_parent_root.
* gdk/x11/{gdkevents-x11.c, gdkglobals-x11.c, gdkimage-x11.c,
gdkmain-x11.c, gdkprivate-x11.h, gdk/x11/gdkwindow-x11.c}:
gdk => _gdk for gdk_event_mask_table, gkd_nevent_masks,
gdk_wm_window_protocols, gdk_leader_window, gdk_xgrab_window,
gdk_use_xshm, gdk_input_ignore_core.
* gdk/x11/xsettings-common.h (xsettings_list_insert): Add
#defines to namespace functions into the private _gdk_
namespace.
* gdk/gdkwindow.[ch] gdk/x11/gdkx.h: Add gdk_get_default_root_window ()
to replace gdk_parent_root exported variable. Adjust and
deprecate GDK_ROOT_PARENT().
* demos/{testpixbuf-drawable.c,testpixbuf-save.c}: Fix
GDK_ROOT_PARENT usage, remove includes of port-specific
headers.
* gdk/{win32,x11,fb}/gdkinput*.[ch]: s/gdk/_gdk/ for
_gdk_input_gxid_host, _gdk_input_gxid_port, _gdk_input_ignore_core,
gdk_input_devices, _gdk_input_windows, gdk_init_input_core.
* gdk/x11/{gdkevents-x11.,c gdkglobals-x11.c, gdkmain-x11.c}
docs/Changes-2.0.txt: Remove gdk_wm_protocols,
gdk_wm_delete_window functions, gdk_wm_take_focus,
use gdk_atom_intern() instead.
* gdk/linux-fb/{gdkselection-fb.c, gdkmain-fb.c, gdkprivatefb.h}
gdk/win32/{gdkselection-win32.c, gdkmgdkwin32.h, gdkprivate-win32.h}
gdk/x11/{gdkselection-x11.c gdkx.h, gtkprivate-x11.h}
gtk/gtkselection.c
Unexport gdk_selection_property, just use
gdk_atom_intern ("GDK_SELECTION").
* gdk/x11/{gdkprivate-x11.h,gdkdrawable-x11h,gdkgc-x11.c,gdkx.h}:
Unexport gdk_drawable_impl_x11_get_type, gdk_gc_x11_get_type,
GDK_GC_X11 cast macros, GdkGCX11 structures, GdkCursorPrivate,
GdkVisualprivate, gdk_x11_gc_flush.
Make a number of public exports of variables into functions
to increase encapsulation.
* gdk/gdkinternals.h gdk/gdkinput.h gdk/gdkevents.h
gdk/linux-fb/gdkmouse-fb.c: gdk_core_pointer => _gdk_core_pointer,
move to gdkinternals.h. Add gdk_device_get_core_pointer ().
* gdk/gdkprivate.h gdk/gdkpango.c gdk/gdkinternals.h
docs/Changes-2.0.txt: Unexport gdk_parent_root, gdk_error_code,
gdk_error_warnings.
* gdk/x11/{gdkcolormap-x11.c, gdkmain-x11.c, gdkx.h}
docs/Changes-2.0.txt:
s/gdk_screen/_gdk_screen/, add gdk_x11_get_default_screen()
s/gdk_root_window/_gdk_root_window/, add gdk_x11_get_default_root_xwindow()
Add gdk_x11_get_default_xdisplay().
* gdk/gdk.h gdk/gdk.c linux-fb/gdkfb.h linux-fb/gdkglobals-fb.c
win32/gdkwin32.h x11/gdkglobals-x11.c gdk/x11/gdkmain-x11.c
gdk/x11/gdkx.h: gdk/gdk.def: Add gdk_get/set_program_class,
Don't export gdk_progclass, move --class command line
option and handling to common portion of GDK.
Miscellaneous fixes:
* gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): Fix
g_return_val_if_fail that should have been g_return_if_fail.
* gdk/gdkinternals.h gdk/gdkprivate.h: Move
gdk_synthesize_window_state() to the semi-public gdkprivate.h.
* gtk/gtkdnd.c (_gtk_drag_source_handle_event): Remove uneeded
X11 dependency.
* gdk/linux-fb/gdkmain-fb.c gdk/win32/gdkmain-win32.c gdk/TODO:
Remove unused gdk_key_repeat_disable/restore.
* linux-fb/gdkglobals-fb.c win32/gdkglobals-win32.c
x11/gdkglobals-x11.c x11/gdkprivate-x11.h gdk/gdk.def:
Remove unused gdk_null_window_warnings variable.
* gdk/Makefile.am (DIST_SUBDIRS) nanox/*: cvs remove nanox;
it can be retrieved from the repository; it is too far
from functional to be worth having people check out;
it would be easier to start from scratch, I suspect.
* gdk/x11/gdkpixmap-x11.c: Fix lvalue usage of GDK_PIXMAP_XID().
* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
Fix some accidentally global variables and unused global variables.
* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
Fix some accidentally global variables and unused global variables.
Add some space for future expansion to multihead.
* gdk/gdkdrawable.h: Add four reserved function pointers
for future expansion of GdkDrawableClass.
* gtk/gtkwindow.h gtk/gtkinvisible.h: Add reserved pointer
where we can put a GdkScreen * later.
2001-09-07 21:50:20 +00:00
|
|
|
GdkWindow *
|
|
|
|
gdk_get_default_root_window (void)
|
|
|
|
{
|
2002-06-20 23:59:27 +00:00
|
|
|
return gdk_screen_get_root_window (gdk_screen_get_default ());
|
Make gdkx.h the only installed header from gdk/x11. All structures in
Fri Sep 7 11:51:44 2001 Owen Taylor <otaylor@redhat.com>
Make gdkx.h the only installed header from gdk/x11.
All structures in gdk/x11 are opaque.
* gdk/x11/Makefile.am gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h:
Don't install gdk{drawable,pixmap,window}-x11.h.
* gdk/x11/{gdkcolormap-x11.c, gdkfont-x11.c, gdkx.h, gdkvisual-x11.c:
Move GdkColormapPrivateX11, GdkFontPrivateX GdkImagePrivateX11,
GdkVisualClass into C files.
* gdk/gdkpixmap-x11.[ch]: Make gdk_pixmap_impl_get_type() static.
* gdk/x11/{gdkcolor-x11.c, gdkcursor-x11.c, gdkdrawable-x11.c,
gdkfont-x11.c, gdkgc-x11.c, gdkx.h, gdkimage-x11,gdkvisual-x11.c}
Add public functions to replace previously exported direct
structure access.
gdk_x11_colormap_get_{xdisplay,xcolormap}
gdk_x11_cursor_get_{xdisplay,xcursor},
gdk_x11_drawable_get_{xdisplay,xcursor,gdk_x11_visual_get_xvisual,
gdk_x11_font_get_{xdisplay,xfont}, gdk_x11_image_get_{xdisplay,ximage},
gdk_x11_gc_get_{xdisplay,ximage}
* gdk/gdkprivate.h gdk/gdkinternals.h: Move GdkColorInfo,
GdkEventFilter, GdkClientFilter, GdkFontPrivate to gdkinternals.
Fix a number of variables and functions that were exported
"accidentally" from GDK.
* gdk/**.[ch]: gdk => _gdk for gdk_visual_init,
gdk_events_init, gdk_input_init, gdk_dnd_init, gdk_image_exit,
gdk_input_exit, gdk_windowing_exit, gdk_event_func, gdk_event_data,
gdk_event_notify, gdk_queued_events, gdk_queued_tail,
gdk_event_new, gdk_events_queue, gdk_events_unqueue,
gdk_event_queue_find_first, gdk_event_queue_remove_link,
gdk_event_queue_append, gdk_event_button_generate,
gdk_debug_flags, gdk_default_filters, gdk_parent_root.
* gdk/x11/{gdkevents-x11.c, gdkglobals-x11.c, gdkimage-x11.c,
gdkmain-x11.c, gdkprivate-x11.h, gdk/x11/gdkwindow-x11.c}:
gdk => _gdk for gdk_event_mask_table, gkd_nevent_masks,
gdk_wm_window_protocols, gdk_leader_window, gdk_xgrab_window,
gdk_use_xshm, gdk_input_ignore_core.
* gdk/x11/xsettings-common.h (xsettings_list_insert): Add
#defines to namespace functions into the private _gdk_
namespace.
* gdk/gdkwindow.[ch] gdk/x11/gdkx.h: Add gdk_get_default_root_window ()
to replace gdk_parent_root exported variable. Adjust and
deprecate GDK_ROOT_PARENT().
* demos/{testpixbuf-drawable.c,testpixbuf-save.c}: Fix
GDK_ROOT_PARENT usage, remove includes of port-specific
headers.
* gdk/{win32,x11,fb}/gdkinput*.[ch]: s/gdk/_gdk/ for
_gdk_input_gxid_host, _gdk_input_gxid_port, _gdk_input_ignore_core,
gdk_input_devices, _gdk_input_windows, gdk_init_input_core.
* gdk/x11/{gdkevents-x11.,c gdkglobals-x11.c, gdkmain-x11.c}
docs/Changes-2.0.txt: Remove gdk_wm_protocols,
gdk_wm_delete_window functions, gdk_wm_take_focus,
use gdk_atom_intern() instead.
* gdk/linux-fb/{gdkselection-fb.c, gdkmain-fb.c, gdkprivatefb.h}
gdk/win32/{gdkselection-win32.c, gdkmgdkwin32.h, gdkprivate-win32.h}
gdk/x11/{gdkselection-x11.c gdkx.h, gtkprivate-x11.h}
gtk/gtkselection.c
Unexport gdk_selection_property, just use
gdk_atom_intern ("GDK_SELECTION").
* gdk/x11/{gdkprivate-x11.h,gdkdrawable-x11h,gdkgc-x11.c,gdkx.h}:
Unexport gdk_drawable_impl_x11_get_type, gdk_gc_x11_get_type,
GDK_GC_X11 cast macros, GdkGCX11 structures, GdkCursorPrivate,
GdkVisualprivate, gdk_x11_gc_flush.
Make a number of public exports of variables into functions
to increase encapsulation.
* gdk/gdkinternals.h gdk/gdkinput.h gdk/gdkevents.h
gdk/linux-fb/gdkmouse-fb.c: gdk_core_pointer => _gdk_core_pointer,
move to gdkinternals.h. Add gdk_device_get_core_pointer ().
* gdk/gdkprivate.h gdk/gdkpango.c gdk/gdkinternals.h
docs/Changes-2.0.txt: Unexport gdk_parent_root, gdk_error_code,
gdk_error_warnings.
* gdk/x11/{gdkcolormap-x11.c, gdkmain-x11.c, gdkx.h}
docs/Changes-2.0.txt:
s/gdk_screen/_gdk_screen/, add gdk_x11_get_default_screen()
s/gdk_root_window/_gdk_root_window/, add gdk_x11_get_default_root_xwindow()
Add gdk_x11_get_default_xdisplay().
* gdk/gdk.h gdk/gdk.c linux-fb/gdkfb.h linux-fb/gdkglobals-fb.c
win32/gdkwin32.h x11/gdkglobals-x11.c gdk/x11/gdkmain-x11.c
gdk/x11/gdkx.h: gdk/gdk.def: Add gdk_get/set_program_class,
Don't export gdk_progclass, move --class command line
option and handling to common portion of GDK.
Miscellaneous fixes:
* gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): Fix
g_return_val_if_fail that should have been g_return_if_fail.
* gdk/gdkinternals.h gdk/gdkprivate.h: Move
gdk_synthesize_window_state() to the semi-public gdkprivate.h.
* gtk/gtkdnd.c (_gtk_drag_source_handle_event): Remove uneeded
X11 dependency.
* gdk/linux-fb/gdkmain-fb.c gdk/win32/gdkmain-win32.c gdk/TODO:
Remove unused gdk_key_repeat_disable/restore.
* linux-fb/gdkglobals-fb.c win32/gdkglobals-win32.c
x11/gdkglobals-x11.c x11/gdkprivate-x11.h gdk/gdk.def:
Remove unused gdk_null_window_warnings variable.
* gdk/Makefile.am (DIST_SUBDIRS) nanox/*: cvs remove nanox;
it can be retrieved from the repository; it is too far
from functional to be worth having people check out;
it would be easier to start from scratch, I suspect.
* gdk/x11/gdkpixmap-x11.c: Fix lvalue usage of GDK_PIXMAP_XID().
* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
Fix some accidentally global variables and unused global variables.
* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
Fix some accidentally global variables and unused global variables.
Add some space for future expansion to multihead.
* gdk/gdkdrawable.h: Add four reserved function pointers
for future expansion of GdkDrawableClass.
* gtk/gtkwindow.h gtk/gtkinvisible.h: Add reserved pointer
where we can put a GdkScreen * later.
2001-09-07 21:50:20 +00:00
|
|
|
}
|
|
|
|
|
2009-01-19 12:07:02 +00:00
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
get_all_native_children (GdkWindow *window,
|
2009-01-19 12:07:02 +00:00
|
|
|
GList **native)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *child;
|
2009-01-19 12:07:02 +00:00
|
|
|
GList *l;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
for (l = window->children; l != NULL; l = l->next)
|
2009-01-19 12:07:02 +00:00
|
|
|
{
|
|
|
|
child = l->data;
|
|
|
|
|
|
|
|
if (gdk_window_has_impl (child))
|
|
|
|
*native = g_list_prepend (*native, child);
|
|
|
|
else
|
|
|
|
get_all_native_children (child, native);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
static inline void
|
|
|
|
gdk_window_raise_internal (GdkWindow *window)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *parent = window->parent;
|
|
|
|
GdkWindow *above;
|
2009-01-19 12:07:02 +00:00
|
|
|
GList *native_children;
|
|
|
|
GList *l, listhead;
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
if (parent)
|
|
|
|
{
|
|
|
|
parent->children = g_list_remove (parent->children, window);
|
|
|
|
parent->children = g_list_prepend (parent->children, window);
|
|
|
|
}
|
2009-01-19 09:40:13 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2009-01-19 12:07:02 +00:00
|
|
|
/* Just do native raise for toplevels */
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_is_toplevel (window) ||
|
2009-08-24 13:18:10 +00:00
|
|
|
/* The restack_under codepath should work correctly even if the parent
|
|
|
|
is native, but it relies on the order of ->children to be correct,
|
|
|
|
and some apps like SWT reorder the x windows without gdks knowledge,
|
|
|
|
so we use raise directly in order to make these behave as before
|
|
|
|
when using native windows */
|
2010-11-22 23:55:39 +00:00
|
|
|
(gdk_window_has_impl (window) && gdk_window_has_impl (parent)))
|
2009-01-19 12:07:02 +00:00
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->raise (window);
|
2009-01-19 12:07:02 +00:00
|
|
|
}
|
2010-11-22 23:55:39 +00:00
|
|
|
else if (gdk_window_has_impl (window))
|
2009-01-19 12:07:02 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
above = find_native_sibling_above (parent, window);
|
2009-01-19 12:07:02 +00:00
|
|
|
if (above)
|
|
|
|
{
|
|
|
|
listhead.data = window;
|
|
|
|
listhead.next = NULL;
|
|
|
|
listhead.prev = NULL;
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->restack_under ((GdkWindow *)above,
|
2009-08-31 08:44:11 +00:00
|
|
|
&listhead);
|
2009-01-19 12:07:02 +00:00
|
|
|
}
|
|
|
|
else
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->raise (window);
|
2009-01-19 12:07:02 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
native_children = NULL;
|
2010-11-22 23:55:39 +00:00
|
|
|
get_all_native_children (window, &native_children);
|
2009-01-19 12:07:02 +00:00
|
|
|
if (native_children != NULL)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
above = find_native_sibling_above (parent, window);
|
2009-01-19 12:07:02 +00:00
|
|
|
|
|
|
|
if (above)
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class->restack_under (above, native_children);
|
2009-01-19 12:07:02 +00:00
|
|
|
else
|
|
|
|
{
|
2009-06-24 18:59:29 +00:00
|
|
|
/* Right order, since native_children is bottom-topmost first */
|
2009-01-19 12:07:02 +00:00
|
|
|
for (l = native_children; l != NULL; l = l->next)
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->raise (l->data);
|
2009-01-19 12:07:02 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-19 12:07:02 +00:00
|
|
|
g_list_free (native_children);
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-19 12:07:02 +00:00
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2009-08-11 09:30:55 +00:00
|
|
|
/* Returns TRUE If the native window was mapped or unmapped */
|
|
|
|
static gboolean
|
2010-11-22 23:55:39 +00:00
|
|
|
set_viewable (GdkWindow *w,
|
2009-07-18 18:29:50 +00:00
|
|
|
gboolean val)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *child;
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2009-07-18 18:29:50 +00:00
|
|
|
GList *l;
|
|
|
|
|
2009-08-11 09:30:55 +00:00
|
|
|
if (w->viewable == val)
|
|
|
|
return FALSE;
|
|
|
|
|
2009-07-18 18:29:50 +00:00
|
|
|
w->viewable = val;
|
|
|
|
|
2009-07-20 20:19:35 +00:00
|
|
|
if (val)
|
|
|
|
recompute_visible_regions (w, FALSE, FALSE);
|
|
|
|
|
2009-07-18 18:29:50 +00:00
|
|
|
for (l = w->children; l != NULL; l = l->next)
|
|
|
|
{
|
|
|
|
child = l->data;
|
|
|
|
|
|
|
|
if (GDK_WINDOW_IS_MAPPED (child) &&
|
|
|
|
child->window_type != GDK_WINDOW_FOREIGN)
|
|
|
|
set_viewable (child, val);
|
|
|
|
}
|
2009-08-11 09:30:55 +00:00
|
|
|
|
2009-08-28 10:10:49 +00:00
|
|
|
if (!_gdk_native_windows &&
|
|
|
|
gdk_window_has_impl (w) &&
|
2009-08-11 09:30:55 +00:00
|
|
|
w->window_type != GDK_WINDOW_FOREIGN &&
|
2009-08-31 08:59:21 +00:00
|
|
|
!gdk_window_is_toplevel (w))
|
2009-08-11 09:30:55 +00:00
|
|
|
{
|
|
|
|
/* For most native windows we show/hide them not when they are
|
|
|
|
* mapped/unmapped, because that may not produce the correct results.
|
|
|
|
* For instance, if a native window have a non-native parent which is
|
|
|
|
* hidden, but its native parent is viewable then showing the window
|
|
|
|
* would make it viewable to X but its not viewable wrt the non-native
|
|
|
|
* hierarchy. In order to handle this we track the gdk side viewability
|
|
|
|
* and only map really viewable windows.
|
|
|
|
*
|
|
|
|
* There are two exceptions though:
|
|
|
|
*
|
|
|
|
* For foreign windows we don't want ever change the mapped state
|
|
|
|
* except when explicitly done via gdk_window_show/hide, as this may
|
|
|
|
* cause problems for client owning the foreign window when its window
|
|
|
|
* is suddenly mapped or unmapped.
|
|
|
|
*
|
|
|
|
* For toplevel windows embedded in a foreign window (e.g. a plug)
|
|
|
|
* we sometimes synthesize a map of a window, but the native
|
|
|
|
* window is really shown by the embedder, so we don't want to
|
|
|
|
* do the show ourselves. We can't really tell this case from the normal
|
|
|
|
* toplevel show as such toplevels are seen by gdk as parents of the
|
|
|
|
* root window, so we make an exception for all toplevels.
|
2009-08-28 10:10:49 +00:00
|
|
|
*
|
|
|
|
* Also, when in GDK_NATIVE_WINDOW mode we never need to play games
|
|
|
|
* like this, so we just always show/hide directly.
|
2009-08-11 09:30:55 +00:00
|
|
|
*/
|
|
|
|
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (w->impl);
|
2009-08-11 09:30:55 +00:00
|
|
|
if (val)
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->show ((GdkWindow *)w, FALSE);
|
2009-08-11 09:30:55 +00:00
|
|
|
else
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->hide ((GdkWindow *)w);
|
2009-08-11 09:30:55 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
2009-07-18 18:29:50 +00:00
|
|
|
}
|
|
|
|
|
2009-08-11 09:30:55 +00:00
|
|
|
/* Returns TRUE If the native window was mapped or unmapped */
|
|
|
|
gboolean
|
2009-07-18 18:29:50 +00:00
|
|
|
_gdk_window_update_viewable (GdkWindow *window)
|
|
|
|
{
|
|
|
|
gboolean viewable;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->window_type == GDK_WINDOW_FOREIGN ||
|
|
|
|
window->window_type == GDK_WINDOW_ROOT)
|
2009-07-18 18:29:50 +00:00
|
|
|
viewable = TRUE;
|
2010-11-22 23:55:39 +00:00
|
|
|
else if (gdk_window_is_toplevel (window) ||
|
|
|
|
window->parent->viewable)
|
|
|
|
viewable = GDK_WINDOW_IS_MAPPED (window);
|
2009-07-18 18:29:50 +00:00
|
|
|
else
|
|
|
|
viewable = FALSE;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return set_viewable (window, viewable);
|
2009-07-18 18:29:50 +00:00
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
static void
|
|
|
|
gdk_window_show_internal (GdkWindow *window, gboolean raise)
|
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2009-08-11 09:30:55 +00:00
|
|
|
gboolean was_mapped, was_viewable;
|
|
|
|
gboolean did_show;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->destroyed)
|
2008-07-18 13:03:42 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
was_mapped = GDK_WINDOW_IS_MAPPED (window);
|
2010-11-22 23:55:39 +00:00
|
|
|
was_viewable = window->viewable;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (raise)
|
2009-01-19 09:40:13 +00:00
|
|
|
/* Keep children in (reverse) stacking order */
|
|
|
|
gdk_window_raise_internal (window);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window))
|
2008-12-18 10:30:10 +00:00
|
|
|
{
|
2008-12-18 13:29:28 +00:00
|
|
|
if (!was_mapped)
|
2008-12-18 10:30:10 +00:00
|
|
|
gdk_synthesize_window_state (window,
|
|
|
|
GDK_WINDOW_STATE_WITHDRAWN,
|
|
|
|
0);
|
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
else
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
window->state = 0;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2009-08-11 09:30:55 +00:00
|
|
|
did_show = _gdk_window_update_viewable (window);
|
2009-07-18 18:29:50 +00:00
|
|
|
|
2009-08-11 09:30:55 +00:00
|
|
|
/* If it was already viewable the backend show op won't be called, call it
|
|
|
|
again to ensure things happen right if the mapped tracking was not right
|
|
|
|
for e.g. a foreign window.
|
|
|
|
Dunno if this is strictly needed but its what happened pre-csw.
|
|
|
|
Also show if not done by gdk_window_update_viewable. */
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window) && (was_viewable || !did_show))
|
2009-08-31 08:44:11 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
|
|
|
impl_class->show (window, !did_show ? was_mapped : TRUE);
|
2009-08-31 08:44:11 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (!was_mapped && !gdk_window_has_impl (window))
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->event_mask & GDK_STRUCTURE_MASK)
|
|
|
|
_gdk_make_event (window, GDK_MAP, NULL, FALSE);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->parent && window->parent->event_mask & GDK_SUBSTRUCTURE_MASK)
|
|
|
|
_gdk_make_event (window, GDK_MAP, NULL, FALSE);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2009-05-26 18:53:48 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (!was_mapped || raise)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (window, TRUE, FALSE);
|
2009-05-26 18:53:48 +00:00
|
|
|
|
|
|
|
/* If any decendants became visible we need to send visibility notify */
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_update_visibility_recursively (window, NULL);
|
2009-05-26 18:53:48 +00:00
|
|
|
|
2008-12-18 13:29:28 +00:00
|
|
|
if (gdk_window_is_viewable (window))
|
|
|
|
{
|
2009-06-18 18:58:13 +00:00
|
|
|
_gdk_synthesize_crossing_events_for_geometry_change (window);
|
2009-11-04 13:03:04 +00:00
|
|
|
gdk_window_invalidate_rect_full (window, NULL, TRUE, CLEAR_BG_ALL);
|
2008-12-18 13:29:28 +00:00
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
}
|
2009-05-26 18:53:48 +00:00
|
|
|
|
2008-06-27 14:27:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_show_unraised:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Shows a #GdkWindow onscreen, but does not modify its stacking
|
|
|
|
* order. In contrast, gdk_window_show() will raise the window
|
|
|
|
* to the top of the window stack.
|
|
|
|
*
|
|
|
|
* On the X11 platform, in Xlib terms, this function calls
|
|
|
|
* XMapWindow() (it also updates some internal GDK state, which means
|
|
|
|
* that you can't really use XMapWindow() directly on a GDK window).
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_window_show_unraised (GdkWindow *window)
|
|
|
|
{
|
2008-07-18 13:03:42 +00:00
|
|
|
gdk_window_show_internal (window, FALSE);
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_raise:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Raises @window to the top of the Z-order (stacking order), so that
|
|
|
|
* other windows with the same parent window appear below @window.
|
|
|
|
* This is true whether or not the windows are visible.
|
|
|
|
*
|
|
|
|
* If @window is a toplevel, the window manager may choose to deny the
|
|
|
|
* request to move the window in the Z-order, gdk_window_raise() only
|
|
|
|
* requests the restack, does not guarantee it.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_window_raise (GdkWindow *window)
|
|
|
|
{
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *old_region, *new_region;
|
2008-06-27 14:27:44 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->destroyed)
|
2008-06-27 14:27:44 +00:00
|
|
|
return;
|
|
|
|
|
2009-09-14 11:44:09 +00:00
|
|
|
gdk_window_flush_if_exposing (window);
|
|
|
|
|
2009-08-10 13:35:33 +00:00
|
|
|
old_region = NULL;
|
|
|
|
if (gdk_window_is_viewable (window) &&
|
2010-11-22 23:55:39 +00:00
|
|
|
!window->input_only)
|
|
|
|
old_region = cairo_region_copy (window->clip_region);
|
2009-08-10 13:35:33 +00:00
|
|
|
|
2008-06-27 14:27:44 +00:00
|
|
|
/* Keep children in (reverse) stacking order */
|
|
|
|
gdk_window_raise_internal (window);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (window, TRUE, FALSE);
|
2008-12-18 13:29:28 +00:00
|
|
|
|
2009-08-10 13:35:33 +00:00
|
|
|
if (old_region)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
new_region = cairo_region_copy (window->clip_region);
|
2009-08-10 13:35:33 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (new_region, old_region);
|
2009-11-04 13:03:04 +00:00
|
|
|
gdk_window_invalidate_region_full (window, new_region, TRUE, CLEAR_BG_ALL);
|
2009-08-10 13:35:33 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (old_region);
|
|
|
|
cairo_region_destroy (new_region);
|
2009-08-10 13:35:33 +00:00
|
|
|
}
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_window_lower_internal (GdkWindow *window)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *parent = window->parent;
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *above;
|
2009-01-19 13:41:08 +00:00
|
|
|
GList *native_children;
|
|
|
|
GList *l, listhead;
|
2008-06-27 14:27:44 +00:00
|
|
|
|
|
|
|
if (parent)
|
|
|
|
{
|
|
|
|
parent->children = g_list_remove (parent->children, window);
|
|
|
|
parent->children = g_list_append (parent->children, window);
|
|
|
|
}
|
2009-01-19 09:40:13 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2009-01-19 13:41:08 +00:00
|
|
|
/* Just do native lower for toplevels */
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_is_toplevel (window) ||
|
2009-08-24 13:18:10 +00:00
|
|
|
/* The restack_under codepath should work correctly even if the parent
|
|
|
|
is native, but it relies on the order of ->children to be correct,
|
|
|
|
and some apps like SWT reorder the x windows without gdks knowledge,
|
|
|
|
so we use lower directly in order to make these behave as before
|
|
|
|
when using native windows */
|
2010-11-22 23:55:39 +00:00
|
|
|
(gdk_window_has_impl (window) && gdk_window_has_impl (parent)))
|
2009-01-19 13:41:08 +00:00
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->lower (window);
|
2009-01-19 13:41:08 +00:00
|
|
|
}
|
2010-11-22 23:55:39 +00:00
|
|
|
else if (gdk_window_has_impl (window))
|
2009-01-19 13:41:08 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
above = find_native_sibling_above (parent, window);
|
2009-01-19 13:41:08 +00:00
|
|
|
if (above)
|
|
|
|
{
|
|
|
|
listhead.data = window;
|
|
|
|
listhead.next = NULL;
|
|
|
|
listhead.prev = NULL;
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->restack_under ((GdkWindow *)above, &listhead);
|
2009-01-19 13:41:08 +00:00
|
|
|
}
|
|
|
|
else
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->raise (window);
|
2009-01-19 13:41:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
native_children = NULL;
|
2010-11-22 23:55:39 +00:00
|
|
|
get_all_native_children (window, &native_children);
|
2009-01-19 13:41:08 +00:00
|
|
|
if (native_children != NULL)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
above = find_native_sibling_above (parent, window);
|
2009-01-19 13:41:08 +00:00
|
|
|
|
|
|
|
if (above)
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->restack_under ((GdkWindow *)above,
|
2009-08-31 08:44:11 +00:00
|
|
|
native_children);
|
2009-01-19 13:41:08 +00:00
|
|
|
else
|
|
|
|
{
|
2009-06-24 18:59:29 +00:00
|
|
|
/* Right order, since native_children is bottom-topmost first */
|
2009-01-19 13:41:08 +00:00
|
|
|
for (l = native_children; l != NULL; l = l->next)
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->raise (l->data);
|
2009-01-19 13:41:08 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-19 13:41:08 +00:00
|
|
|
g_list_free (native_children);
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-19 13:41:08 +00:00
|
|
|
}
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_invalidate_in_parent (GdkWindow *private)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
GdkRectangle r, child;
|
|
|
|
|
2009-08-31 08:59:21 +00:00
|
|
|
if (gdk_window_is_toplevel (private))
|
2008-07-18 13:03:42 +00:00
|
|
|
return;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* get the visible rectangle of the parent */
|
|
|
|
r.x = r.y = 0;
|
|
|
|
r.width = private->parent->width;
|
|
|
|
r.height = private->parent->height;
|
|
|
|
|
|
|
|
child.x = private->x;
|
|
|
|
child.y = private->y;
|
|
|
|
child.width = private->width;
|
|
|
|
child.height = private->height;
|
|
|
|
gdk_rectangle_intersect (&r, &child, &r);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_invalidate_rect_full (private->parent, &r, TRUE, CLEAR_BG_ALL);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-27 14:27:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_lower:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Lowers @window to the bottom of the Z-order (stacking order), so that
|
|
|
|
* other windows with the same parent window appear above @window.
|
|
|
|
* This is true whether or not the other windows are visible.
|
|
|
|
*
|
|
|
|
* If @window is a toplevel, the window manager may choose to deny the
|
|
|
|
* request to move the window in the Z-order, gdk_window_lower() only
|
|
|
|
* requests the restack, does not guarantee it.
|
|
|
|
*
|
|
|
|
* Note that gdk_window_show() raises the window again, so don't call this
|
|
|
|
* function before gdk_window_show(). (Try gdk_window_show_unraised().)
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_window_lower (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->destroyed)
|
2008-06-27 14:27:44 +00:00
|
|
|
return;
|
|
|
|
|
2009-09-14 11:44:09 +00:00
|
|
|
gdk_window_flush_if_exposing (window);
|
|
|
|
|
2008-06-27 14:27:44 +00:00
|
|
|
/* Keep children in (reverse) stacking order */
|
|
|
|
gdk_window_lower_internal (window);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (window, TRUE, FALSE);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-06-18 18:58:13 +00:00
|
|
|
_gdk_synthesize_crossing_events_for_geometry_change (window);
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_invalidate_in_parent (window);
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
2009-09-02 21:38:55 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_restack:
|
|
|
|
* @window: a #GdkWindow
|
2010-02-19 16:53:17 +00:00
|
|
|
* @sibling: (allow-none): a #GdkWindow that is a sibling of @window, or %NULL
|
2009-09-02 21:38:55 +00:00
|
|
|
* @above: a boolean
|
|
|
|
*
|
|
|
|
* Changes the position of @window in the Z-order (stacking order), so that
|
|
|
|
* it is above @sibling (if @above is %TRUE) or below @sibling (if @above is
|
|
|
|
* %FALSE).
|
|
|
|
*
|
|
|
|
* If @sibling is %NULL, then this either raises (if @above is %TRUE) or
|
|
|
|
* lowers the window.
|
|
|
|
*
|
|
|
|
* If @window is a toplevel, the window manager may choose to deny the
|
|
|
|
* request to move the window in the Z-order, gdk_window_restack() only
|
|
|
|
* requests the restack, does not guarantee it.
|
|
|
|
*
|
|
|
|
* Since: 2.18
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_window_restack (GdkWindow *window,
|
|
|
|
GdkWindow *sibling,
|
|
|
|
gboolean above)
|
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *parent;
|
|
|
|
GdkWindow *above_native;
|
2009-09-02 21:38:55 +00:00
|
|
|
GList *sibling_link;
|
|
|
|
GList *native_children;
|
|
|
|
GList *l, listhead;
|
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
g_return_if_fail (sibling == NULL || GDK_IS_WINDOW (sibling));
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->destroyed)
|
2009-09-02 21:38:55 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (sibling == NULL)
|
|
|
|
{
|
|
|
|
if (above)
|
|
|
|
gdk_window_raise (window);
|
|
|
|
else
|
|
|
|
gdk_window_lower (window);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-09-14 11:44:09 +00:00
|
|
|
gdk_window_flush_if_exposing (window);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_is_toplevel (window))
|
2009-09-02 21:38:55 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
g_return_if_fail (gdk_window_is_toplevel (sibling));
|
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->restack_toplevel (window, sibling, above);
|
2009-09-02 21:38:55 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
parent = window->parent;
|
2009-09-02 21:38:55 +00:00
|
|
|
if (parent)
|
|
|
|
{
|
|
|
|
sibling_link = g_list_find (parent->children, sibling);
|
|
|
|
g_return_if_fail (sibling_link != NULL);
|
|
|
|
if (sibling_link == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
parent->children = g_list_remove (parent->children, window);
|
|
|
|
if (above)
|
|
|
|
parent->children = g_list_insert_before (parent->children,
|
|
|
|
sibling_link,
|
|
|
|
window);
|
|
|
|
else
|
|
|
|
parent->children = g_list_insert_before (parent->children,
|
|
|
|
sibling_link->next,
|
|
|
|
window);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
|
|
|
if (gdk_window_has_impl (window))
|
2009-09-02 21:38:55 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
above_native = find_native_sibling_above (parent, window);
|
2009-09-02 21:38:55 +00:00
|
|
|
if (above_native)
|
|
|
|
{
|
|
|
|
listhead.data = window;
|
|
|
|
listhead.next = NULL;
|
|
|
|
listhead.prev = NULL;
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class->restack_under (above_native, &listhead);
|
2009-09-02 21:38:55 +00:00
|
|
|
}
|
|
|
|
else
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->raise (window);
|
2009-09-02 21:38:55 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
native_children = NULL;
|
2010-11-22 23:55:39 +00:00
|
|
|
get_all_native_children (window, &native_children);
|
2009-09-02 21:38:55 +00:00
|
|
|
if (native_children != NULL)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
above_native = find_native_sibling_above (parent, window);
|
2009-09-02 21:38:55 +00:00
|
|
|
if (above_native)
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class->restack_under (above_native,
|
2009-09-02 21:38:55 +00:00
|
|
|
native_children);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Right order, since native_children is bottom-topmost first */
|
|
|
|
for (l = native_children; l != NULL; l = l->next)
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->raise (l->data);
|
2009-09-02 21:38:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
g_list_free (native_children);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (window, TRUE, FALSE);
|
2009-09-02 21:38:55 +00:00
|
|
|
|
|
|
|
_gdk_synthesize_crossing_events_for_geometry_change (window);
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_invalidate_in_parent (window);
|
2009-09-02 21:38:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-27 14:27:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_show:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Like gdk_window_show_unraised(), but also raises the window to the
|
|
|
|
* top of the window stack (moves the window to the front of the
|
|
|
|
* Z-order).
|
|
|
|
*
|
|
|
|
* This function maps a window so it's visible onscreen. Its opposite
|
|
|
|
* is gdk_window_hide().
|
|
|
|
*
|
|
|
|
* When implementing a #GtkWidget, you should call this function on the widget's
|
|
|
|
* #GdkWindow as part of the "map" method.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_window_show (GdkWindow *window)
|
|
|
|
{
|
2008-07-18 13:03:42 +00:00
|
|
|
gdk_window_show_internal (window, TRUE);
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_hide:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* For toplevel windows, withdraws them, so they will no longer be
|
|
|
|
* known to the window manager; for all windows, unmaps them, so
|
|
|
|
* they won't be displayed. Normally done automatically as
|
|
|
|
* part of gtk_widget_hide().
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_window_hide (GdkWindow *window)
|
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2009-08-11 09:30:55 +00:00
|
|
|
gboolean was_mapped, did_hide;
|
2008-06-27 14:27:44 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->destroyed)
|
2008-06-27 14:27:44 +00:00
|
|
|
return;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
was_mapped = GDK_WINDOW_IS_MAPPED (window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window))
|
2008-12-18 10:30:10 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
if (GDK_WINDOW_IS_MAPPED (window))
|
2009-06-01 10:04:36 +00:00
|
|
|
gdk_synthesize_window_state (window,
|
|
|
|
0,
|
|
|
|
GDK_WINDOW_STATE_WITHDRAWN);
|
2008-12-18 10:30:10 +00:00
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
else if (was_mapped)
|
|
|
|
{
|
|
|
|
GdkDisplay *display;
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkDeviceManager *device_manager;
|
|
|
|
GList *devices, *d;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
/* May need to break grabs on children */
|
2010-08-29 00:08:47 +00:00
|
|
|
display = gdk_window_get_display (window);
|
2010-05-25 22:38:44 +00:00
|
|
|
device_manager = gdk_display_get_device_manager (display);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
/* Get all devices */
|
|
|
|
devices = gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_MASTER);
|
|
|
|
devices = g_list_concat (devices, gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_SLAVE));
|
|
|
|
devices = g_list_concat (devices, gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_FLOATING));
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
for (d = devices; d; d = d->next)
|
|
|
|
{
|
|
|
|
GdkDevice *device = d->data;
|
|
|
|
|
2010-12-13 19:05:59 +00:00
|
|
|
if (_gdk_display_end_device_grab (display,
|
|
|
|
device,
|
|
|
|
_gdk_display_get_next_serial (display),
|
2010-05-25 22:38:44 +00:00
|
|
|
window,
|
|
|
|
TRUE))
|
|
|
|
gdk_device_ungrab (device, GDK_CURRENT_TIME);
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->state = GDK_WINDOW_STATE_WITHDRAWN;
|
2010-05-25 22:38:44 +00:00
|
|
|
g_list_free (devices);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2009-08-11 09:30:55 +00:00
|
|
|
did_hide = _gdk_window_update_viewable (window);
|
2009-07-18 18:29:50 +00:00
|
|
|
|
2009-08-11 09:30:55 +00:00
|
|
|
/* Hide foreign window as those are not handled by update_viewable. */
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window) && (!did_hide))
|
2009-08-31 08:44:11 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->hide (window);
|
2009-08-31 08:44:11 +00:00
|
|
|
}
|
2009-05-26 18:53:48 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (window, TRUE, FALSE);
|
2009-05-26 18:53:48 +00:00
|
|
|
|
|
|
|
/* all decendants became non-visible, we need to send visibility notify */
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_update_visibility_recursively (window, NULL);
|
2009-05-26 18:53:48 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (was_mapped && !gdk_window_has_impl (window))
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->event_mask & GDK_STRUCTURE_MASK)
|
|
|
|
_gdk_make_event (window, GDK_UNMAP, NULL, FALSE);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->parent && window->parent->event_mask & GDK_SUBSTRUCTURE_MASK)
|
|
|
|
_gdk_make_event (window, GDK_UNMAP, NULL, FALSE);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
_gdk_synthesize_crossing_events_for_geometry_change (window->parent);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-18 13:29:28 +00:00
|
|
|
/* Invalidate the rect */
|
2009-11-03 13:41:36 +00:00
|
|
|
if (was_mapped)
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_invalidate_in_parent (window);
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_withdraw:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* Withdraws a window (unmaps it and asks the window manager to forget about it).
|
|
|
|
* This function is not really useful as gdk_window_hide() automatically
|
|
|
|
* withdraws toplevel windows before hiding them.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_withdraw (GdkWindow *window)
|
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2008-07-18 13:03:42 +00:00
|
|
|
gboolean was_mapped;
|
2008-06-27 14:27:44 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->destroyed)
|
2008-06-27 14:27:44 +00:00
|
|
|
return;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
was_mapped = GDK_WINDOW_IS_MAPPED (window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window))
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->withdraw (window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (was_mapped)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->event_mask & GDK_STRUCTURE_MASK)
|
|
|
|
_gdk_make_event (window, GDK_UNMAP, NULL, FALSE);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->parent && window->parent->event_mask & GDK_SUBSTRUCTURE_MASK)
|
|
|
|
_gdk_make_event (window, GDK_UNMAP, NULL, FALSE);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
_gdk_synthesize_crossing_events_for_geometry_change (window->parent);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (window, TRUE, FALSE);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_events:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @event_mask: event mask for @window
|
|
|
|
*
|
|
|
|
* The event mask for a window determines which events will be reported
|
2010-05-25 22:38:44 +00:00
|
|
|
* for that window from all master input devices. For example, an event mask
|
|
|
|
* including #GDK_BUTTON_PRESS_MASK means the window should report button
|
|
|
|
* press events. The event mask is the bitwise OR of values from the
|
|
|
|
* #GdkEventMask enumeration.
|
2008-06-27 14:27:44 +00:00
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_events (GdkWindow *window,
|
|
|
|
GdkEventMask event_mask)
|
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2009-01-23 12:04:44 +00:00
|
|
|
GdkDisplay *display;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-06-27 14:27:44 +00:00
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->destroyed)
|
2008-06-27 14:27:44 +00:00
|
|
|
return;
|
|
|
|
|
2009-01-23 12:04:44 +00:00
|
|
|
/* If motion hint is disabled, enable motion events again */
|
2010-08-29 00:08:47 +00:00
|
|
|
display = gdk_window_get_display (window);
|
2010-11-22 23:55:39 +00:00
|
|
|
if ((window->event_mask & GDK_POINTER_MOTION_HINT_MASK) &&
|
2009-01-23 12:04:44 +00:00
|
|
|
!(event_mask & GDK_POINTER_MOTION_HINT_MASK))
|
2010-05-25 22:38:44 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GList *devices = window->devices_inside;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
|
|
while (devices)
|
|
|
|
{
|
|
|
|
_gdk_display_enable_motion_hints (display, (GdkDevice *) devices->data);
|
|
|
|
devices = devices->next;
|
|
|
|
}
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->event_mask = event_mask;
|
2009-02-04 10:22:54 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window))
|
2009-08-31 08:44:11 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->set_events (window,
|
2010-11-22 23:55:39 +00:00
|
|
|
get_native_event_mask (window));
|
2009-08-31 08:44:11 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_get_events:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
2010-05-25 22:38:44 +00:00
|
|
|
* Gets the event mask for @window for all master input devices. See
|
|
|
|
* gdk_window_set_events().
|
2008-06-27 14:27:44 +00:00
|
|
|
*
|
|
|
|
* Return value: event mask for @window
|
|
|
|
**/
|
|
|
|
GdkEventMask
|
|
|
|
gdk_window_get_events (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), 0);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->destroyed)
|
2008-06-27 14:27:44 +00:00
|
|
|
return 0;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->event_mask;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_set_device_events:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @device: #GdkDevice to enable events for.
|
|
|
|
* @event_mask: event mask for @window
|
|
|
|
*
|
|
|
|
* Sets the event mask for a given device (Normally a floating device, not
|
|
|
|
* attached to any visible pointer) to @window. For example, an event mask
|
|
|
|
* including #GDK_BUTTON_PRESS_MASK means the window should report button
|
|
|
|
* press events. The event mask is the bitwise OR of values from the
|
|
|
|
* #GdkEventMask enumeration.
|
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_device_events (GdkWindow *window,
|
|
|
|
GdkDevice *device,
|
|
|
|
GdkEventMask event_mask)
|
|
|
|
{
|
|
|
|
GdkEventMask device_mask;
|
|
|
|
GdkDisplay *display;
|
|
|
|
GdkWindow *native;
|
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
g_return_if_fail (GDK_IS_DEVICE (device));
|
|
|
|
|
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* If motion hint is disabled, enable motion events again */
|
2010-08-29 00:08:47 +00:00
|
|
|
display = gdk_window_get_display (window);
|
2010-11-22 23:55:39 +00:00
|
|
|
if ((window->event_mask & GDK_POINTER_MOTION_HINT_MASK) &&
|
2010-05-25 22:38:44 +00:00
|
|
|
!(event_mask & GDK_POINTER_MOTION_HINT_MASK))
|
|
|
|
_gdk_display_enable_motion_hints (display, device);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (G_UNLIKELY (!window->device_events))
|
|
|
|
window->device_events = g_hash_table_new (NULL, NULL);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
|
|
if (event_mask == 0)
|
|
|
|
{
|
|
|
|
/* FIXME: unsetting events on a master device
|
2010-11-22 23:55:39 +00:00
|
|
|
* would restore window->event_mask
|
2010-05-25 22:38:44 +00:00
|
|
|
*/
|
2010-11-22 23:55:39 +00:00
|
|
|
g_hash_table_remove (window->device_events, device);
|
2010-05-25 22:38:44 +00:00
|
|
|
}
|
|
|
|
else
|
2010-11-22 23:55:39 +00:00
|
|
|
g_hash_table_insert (window->device_events, device,
|
2010-05-25 22:38:44 +00:00
|
|
|
GINT_TO_POINTER (event_mask));
|
|
|
|
|
|
|
|
if (_gdk_native_windows)
|
|
|
|
native = window;
|
|
|
|
else
|
|
|
|
native = gdk_window_get_toplevel (window);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
while (gdk_window_is_offscreen (native))
|
2010-05-25 22:38:44 +00:00
|
|
|
{
|
|
|
|
native = gdk_offscreen_window_get_embedder (native);
|
|
|
|
|
|
|
|
if (native == NULL ||
|
|
|
|
(!_gdk_window_has_impl (native) &&
|
|
|
|
!gdk_window_is_viewable (native)))
|
|
|
|
return;
|
|
|
|
|
|
|
|
native = gdk_window_get_toplevel (native);
|
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
device_mask = get_native_device_event_mask (window, device);
|
2010-05-25 22:38:44 +00:00
|
|
|
GDK_DEVICE_GET_CLASS (device)->select_window_events (device, native, device_mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_get_device_events:
|
|
|
|
* @window: a #GdkWindow.
|
|
|
|
* @device: a #GdkDevice.
|
|
|
|
*
|
|
|
|
* Returns the event mask for @window corresponding to an specific device.
|
|
|
|
*
|
|
|
|
* Returns: device event mask for @window
|
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
**/
|
|
|
|
GdkEventMask
|
|
|
|
gdk_window_get_device_events (GdkWindow *window,
|
|
|
|
GdkDevice *device)
|
|
|
|
{
|
|
|
|
GdkEventMask mask;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), 0);
|
|
|
|
g_return_val_if_fail (GDK_IS_DEVICE (device), 0);
|
|
|
|
|
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return 0;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (!window->device_events)
|
2010-05-25 22:38:44 +00:00
|
|
|
return 0;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
mask = GPOINTER_TO_INT (g_hash_table_lookup (window->device_events, device));
|
2010-05-25 22:38:44 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
/* FIXME: device could be controlled by window->event_mask */
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
|
|
return mask;
|
|
|
|
}
|
|
|
|
|
2009-01-20 22:03:16 +00:00
|
|
|
static void
|
|
|
|
gdk_window_move_resize_toplevel (GdkWindow *window,
|
|
|
|
gboolean with_move,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *old_region, *new_region;
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2009-01-20 22:03:16 +00:00
|
|
|
gboolean expose;
|
|
|
|
int old_x, old_y, old_abs_x, old_abs_y;
|
|
|
|
int dx, dy;
|
|
|
|
gboolean is_resize;
|
|
|
|
|
|
|
|
expose = FALSE;
|
|
|
|
old_region = NULL;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
old_x = window->x;
|
|
|
|
old_y = window->y;
|
2009-01-20 22:03:16 +00:00
|
|
|
|
|
|
|
is_resize = (width != -1) || (height != -1);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-07-10 22:28:18 +00:00
|
|
|
if (gdk_window_is_viewable (window) &&
|
2010-11-22 23:55:39 +00:00
|
|
|
!window->input_only)
|
2009-01-20 22:03:16 +00:00
|
|
|
{
|
|
|
|
expose = TRUE;
|
2010-11-22 23:55:39 +00:00
|
|
|
old_region = cairo_region_copy (window->clip_region);
|
2009-01-20 22:03:16 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->move_resize (window, with_move, x, y, width, height);
|
2009-01-20 22:03:16 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
dx = window->x - old_x;
|
|
|
|
dy = window->y - old_y;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
old_abs_x = window->abs_x;
|
|
|
|
old_abs_y = window->abs_y;
|
2009-01-20 22:03:16 +00:00
|
|
|
|
|
|
|
/* Avoid recomputing for pure toplevel moves, for performance reasons */
|
|
|
|
if (is_resize)
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (window, TRUE, FALSE);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-20 22:03:16 +00:00
|
|
|
if (expose)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
new_region = cairo_region_copy (window->clip_region);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-20 22:03:16 +00:00
|
|
|
/* This is the newly exposed area (due to any resize),
|
|
|
|
* X will expose it, but lets do that without the
|
|
|
|
* roundtrip
|
|
|
|
*/
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (new_region, old_region);
|
2009-11-04 13:03:04 +00:00
|
|
|
gdk_window_invalidate_region_full (window, new_region, TRUE, CLEAR_BG_WINCLEARED);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (old_region);
|
|
|
|
cairo_region_destroy (new_region);
|
2009-01-20 22:03:16 +00:00
|
|
|
}
|
|
|
|
|
2009-06-18 18:58:13 +00:00
|
|
|
_gdk_synthesize_crossing_events_for_geometry_change (window);
|
2009-01-20 22:03:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
move_native_children (GdkWindow *private)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
GList *l;
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *child;
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
for (l = private->children; l; l = l->next)
|
|
|
|
{
|
|
|
|
child = l->data;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (child->impl != private->impl)
|
2009-08-31 08:44:11 +00:00
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (child->impl);
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class->move_resize (child, TRUE,
|
2009-08-31 08:44:11 +00:00
|
|
|
child->x, child->y,
|
|
|
|
child->width, child->height);
|
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
else
|
|
|
|
move_native_children (child);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-20 22:03:16 +00:00
|
|
|
static gboolean
|
2010-11-22 23:55:39 +00:00
|
|
|
collect_native_child_region_helper (GdkWindow *window,
|
2010-11-24 13:36:45 +00:00
|
|
|
GdkWindowImpl *impl,
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t **region,
|
2009-01-20 22:03:16 +00:00
|
|
|
int x_offset,
|
|
|
|
int y_offset)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *child;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *tmp;
|
2009-01-20 22:03:16 +00:00
|
|
|
GList *l;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-20 22:03:16 +00:00
|
|
|
for (l = window->children; l != NULL; l = l->next)
|
|
|
|
{
|
|
|
|
child = l->data;
|
|
|
|
|
2009-07-18 19:53:15 +00:00
|
|
|
if (!GDK_WINDOW_IS_MAPPED (child) || child->input_only)
|
|
|
|
continue;
|
|
|
|
|
2009-01-20 22:03:16 +00:00
|
|
|
if (child->impl != impl)
|
|
|
|
{
|
2010-06-28 12:44:12 +00:00
|
|
|
tmp = cairo_region_copy (child->clip_region);
|
|
|
|
cairo_region_translate (tmp,
|
2009-01-20 22:03:16 +00:00
|
|
|
x_offset + child->x,
|
|
|
|
y_offset + child->y);
|
|
|
|
if (*region == NULL)
|
|
|
|
*region = tmp;
|
|
|
|
else
|
|
|
|
{
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_union (*region, tmp);
|
|
|
|
cairo_region_destroy (tmp);
|
2009-01-20 22:03:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
collect_native_child_region_helper (child, impl, region,
|
|
|
|
x_offset + child->x,
|
|
|
|
y_offset + child->y);
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-20 22:03:16 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-06-28 12:54:37 +00:00
|
|
|
static cairo_region_t *
|
2010-11-22 23:55:39 +00:00
|
|
|
collect_native_child_region (GdkWindow *window,
|
2009-01-21 12:44:39 +00:00
|
|
|
gboolean include_this)
|
2009-01-20 22:03:16 +00:00
|
|
|
{
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-07-18 19:53:15 +00:00
|
|
|
if (include_this && gdk_window_has_impl (window) && window->viewable)
|
2010-06-28 12:44:12 +00:00
|
|
|
return cairo_region_copy (window->clip_region);
|
2009-01-20 22:03:16 +00:00
|
|
|
|
|
|
|
region = NULL;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-20 22:03:16 +00:00
|
|
|
collect_native_child_region_helper (window, window->impl, ®ion, 0, 0);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-20 22:03:16 +00:00
|
|
|
return region;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
static void
|
|
|
|
gdk_window_move_resize_internal (GdkWindow *window,
|
|
|
|
gboolean with_move,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *old_region, *new_region, *copy_area;
|
|
|
|
cairo_region_t *old_native_child_region, *new_native_child_region;
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *impl_window;
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2008-07-18 13:03:42 +00:00
|
|
|
gboolean expose;
|
|
|
|
int old_x, old_y, old_abs_x, old_abs_y;
|
|
|
|
int dx, dy;
|
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->destroyed)
|
2008-07-18 13:03:42 +00:00
|
|
|
return;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_is_toplevel (window))
|
2009-01-20 22:03:16 +00:00
|
|
|
{
|
|
|
|
gdk_window_move_resize_toplevel (window, with_move, x, y, width, height);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-09-14 11:09:07 +00:00
|
|
|
/* Bail early if no change */
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->width == width &&
|
|
|
|
window->height == height &&
|
2009-09-14 11:09:07 +00:00
|
|
|
(!with_move ||
|
2010-11-22 23:55:39 +00:00
|
|
|
(window->x == x &&
|
|
|
|
window->y == y)))
|
2009-09-14 11:09:07 +00:00
|
|
|
return;
|
|
|
|
|
2009-09-14 11:44:09 +00:00
|
|
|
gdk_window_flush_if_exposing (window);
|
|
|
|
|
2009-01-20 22:03:16 +00:00
|
|
|
/* Handle child windows */
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
expose = FALSE;
|
|
|
|
old_region = NULL;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_window = gdk_window_get_impl_window (window);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
old_x = window->x;
|
|
|
|
old_y = window->y;
|
2009-01-19 14:44:09 +00:00
|
|
|
|
2009-07-18 19:53:15 +00:00
|
|
|
old_native_child_region = NULL;
|
2009-07-10 22:28:18 +00:00
|
|
|
if (gdk_window_is_viewable (window) &&
|
2010-11-22 23:55:39 +00:00
|
|
|
!window->input_only)
|
2009-01-19 14:44:09 +00:00
|
|
|
{
|
|
|
|
expose = TRUE;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
old_region = cairo_region_copy (window->clip_region);
|
2009-01-19 14:44:09 +00:00
|
|
|
/* Adjust region to parent window coords */
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_translate (old_region, window->x, window->y);
|
2009-01-20 22:03:16 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
old_native_child_region = collect_native_child_region (window, TRUE);
|
2009-07-18 19:53:15 +00:00
|
|
|
if (old_native_child_region)
|
|
|
|
{
|
|
|
|
/* Adjust region to parent window coords */
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_translate (old_native_child_region, window->x, window->y);
|
2009-07-18 19:53:15 +00:00
|
|
|
|
|
|
|
/* Any native window move will immediately copy stuff to the destination, which may overwrite a
|
|
|
|
* source or destination for a delayed GdkWindowRegionMove. So, we need
|
|
|
|
* to flush those here for the parent window and all overlapped subwindows
|
|
|
|
* of it. And we need to do this before setting the new clips as those will be
|
|
|
|
* affecting this.
|
|
|
|
*/
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_flush_recursive (window->parent);
|
2009-07-18 19:53:15 +00:00
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-20 22:03:16 +00:00
|
|
|
/* Set the new position and size */
|
|
|
|
if (with_move)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
window->x = x;
|
|
|
|
window->y = y;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2009-01-20 22:03:16 +00:00
|
|
|
if (!(width < 0 && height < 0))
|
|
|
|
{
|
|
|
|
if (width < 1)
|
|
|
|
width = 1;
|
2010-11-22 23:55:39 +00:00
|
|
|
window->width = width;
|
2009-01-20 22:03:16 +00:00
|
|
|
if (height < 1)
|
|
|
|
height = 1;
|
2010-11-22 23:55:39 +00:00
|
|
|
window->height = height;
|
2009-01-20 22:03:16 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
dx = window->x - old_x;
|
|
|
|
dy = window->y - old_y;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
old_abs_x = window->abs_x;
|
|
|
|
old_abs_y = window->abs_y;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (window, TRUE, FALSE);
|
2009-01-20 22:03:16 +00:00
|
|
|
|
|
|
|
new_native_child_region = NULL;
|
|
|
|
if (old_native_child_region)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
new_native_child_region = collect_native_child_region (window, TRUE);
|
2009-01-20 22:03:16 +00:00
|
|
|
/* Adjust region to parent window coords */
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_translate (new_native_child_region, window->x, window->y);
|
2009-01-20 22:03:16 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window))
|
2009-01-20 22:03:16 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2009-08-31 08:44:11 +00:00
|
|
|
|
2009-01-20 22:03:16 +00:00
|
|
|
/* Do the actual move after recomputing things, as this will have set the shape to
|
|
|
|
the now correct one, thus avoiding copying regions that should not be copied. */
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->move_resize (window, TRUE,
|
2010-11-22 23:55:39 +00:00
|
|
|
window->x, window->y,
|
|
|
|
window->width, window->height);
|
2009-01-20 22:03:16 +00:00
|
|
|
}
|
2010-11-22 23:55:39 +00:00
|
|
|
else if (old_abs_x != window->abs_x ||
|
|
|
|
old_abs_y != window->abs_y)
|
|
|
|
move_native_children (window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (expose)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
new_region = cairo_region_copy (window->clip_region);
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Adjust region to parent window coords */
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_translate (new_region, window->x, window->y);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
/* copy_area:
|
|
|
|
* Part of the data at the new location can be copied from the
|
|
|
|
* old location, this area is the intersection of the old region
|
|
|
|
* moved as the copy will move it and then intersected with
|
|
|
|
* the new region.
|
|
|
|
*
|
|
|
|
* new_region:
|
|
|
|
* Everything in the old and new regions that is not copied must be
|
2009-06-01 10:04:36 +00:00
|
|
|
* invalidated (including children) as this is newly exposed
|
2008-07-18 13:03:42 +00:00
|
|
|
*/
|
2010-06-28 12:44:12 +00:00
|
|
|
copy_area = cairo_region_copy (new_region);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_union (new_region, old_region);
|
2009-01-20 22:03:16 +00:00
|
|
|
|
|
|
|
if (old_native_child_region)
|
|
|
|
{
|
|
|
|
/* Don't copy from inside native children, as this is copied by
|
|
|
|
* the native window move.
|
|
|
|
*/
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (old_region, old_native_child_region);
|
2009-01-20 22:03:16 +00:00
|
|
|
}
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_translate (old_region, dx, dy);
|
2009-01-20 22:03:16 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_intersect (copy_area, old_region);
|
2009-01-20 22:03:16 +00:00
|
|
|
|
|
|
|
if (new_native_child_region)
|
|
|
|
{
|
|
|
|
/* Don't copy any bits that would cause a read from the moved
|
|
|
|
native windows, as we can't read that data */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_translate (new_native_child_region, dx, dy);
|
|
|
|
cairo_region_subtract (copy_area, new_native_child_region);
|
|
|
|
cairo_region_translate (new_native_child_region, -dx, -dy);
|
2009-01-20 22:03:16 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (new_region, copy_area);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
/* Convert old region to impl coords */
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_translate (old_region, -dx + window->abs_x - window->x, -dy + window->abs_y - window->y);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2008-12-09 12:33:26 +00:00
|
|
|
/* convert from parent coords to impl */
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_translate (copy_area, window->abs_x - window->x, window->abs_y - window->y);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-02-08 12:35:17 +00:00
|
|
|
move_region_on_impl (impl_window, copy_area, dx, dy); /* takes ownership of copy_area */
|
2008-12-09 12:33:26 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Invalidate affected part in the parent window
|
|
|
|
* (no higher window should be affected)
|
|
|
|
* We also invalidate any children in that area, which could include
|
|
|
|
* this window if it still overlaps that area.
|
|
|
|
*/
|
2009-11-03 13:47:31 +00:00
|
|
|
if (old_native_child_region)
|
|
|
|
{
|
|
|
|
/* No need to expose the region that the native window move copies */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_translate (old_native_child_region, dx, dy);
|
|
|
|
cairo_region_intersect (old_native_child_region, new_native_child_region);
|
|
|
|
cairo_region_subtract (new_region, old_native_child_region);
|
2009-11-03 13:47:31 +00:00
|
|
|
}
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_invalidate_region_full (window->parent, new_region, TRUE, CLEAR_BG_ALL);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (old_region);
|
|
|
|
cairo_region_destroy (new_region);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2009-01-20 22:03:16 +00:00
|
|
|
if (old_native_child_region)
|
|
|
|
{
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (old_native_child_region);
|
|
|
|
cairo_region_destroy (new_native_child_region);
|
2009-01-20 22:03:16 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-06-18 18:58:13 +00:00
|
|
|
_gdk_synthesize_crossing_events_for_geometry_change (window);
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
|
2008-06-27 14:27:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_move:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @x: X coordinate relative to window's parent
|
|
|
|
* @y: Y coordinate relative to window's parent
|
|
|
|
*
|
|
|
|
* Repositions a window relative to its parent window.
|
|
|
|
* For toplevel windows, window managers may ignore or modify the move;
|
|
|
|
* you should probably use gtk_window_move() on a #GtkWindow widget
|
|
|
|
* anyway, instead of using GDK functions. For child windows,
|
|
|
|
* the move will reliably succeed.
|
|
|
|
*
|
|
|
|
* If you're also planning to resize the window, use gdk_window_move_resize()
|
|
|
|
* to both move and resize simultaneously, for a nicer visual effect.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_move (GdkWindow *window,
|
|
|
|
gint x,
|
|
|
|
gint y)
|
|
|
|
{
|
2008-07-18 13:03:42 +00:00
|
|
|
gdk_window_move_resize_internal (window, TRUE, x, y, -1, -1);
|
|
|
|
}
|
2008-06-27 14:27:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_resize:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @width: new width of the window
|
|
|
|
* @height: new height of the window
|
|
|
|
*
|
|
|
|
* Resizes @window; for toplevel windows, asks the window manager to resize
|
|
|
|
* the window. The window manager may not allow the resize. When using GTK+,
|
|
|
|
* use gtk_window_resize() instead of this low-level GDK function.
|
|
|
|
*
|
|
|
|
* Windows may not be resized below 1x1.
|
|
|
|
*
|
|
|
|
* If you're also planning to move the window, use gdk_window_move_resize()
|
|
|
|
* to both move and resize simultaneously, for a nicer visual effect.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_resize (GdkWindow *window,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
2008-07-18 13:03:42 +00:00
|
|
|
gdk_window_move_resize_internal (window, FALSE, 0, 0, width, height);
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_move_resize:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @x: new X position relative to window's parent
|
|
|
|
* @y: new Y position relative to window's parent
|
|
|
|
* @width: new width
|
|
|
|
* @height: new height
|
|
|
|
*
|
|
|
|
* Equivalent to calling gdk_window_move() and gdk_window_resize(),
|
|
|
|
* except that both operations are performed at once, avoiding strange
|
|
|
|
* visual effects. (i.e. the user may be able to see the window first
|
|
|
|
* move, then resize, if you don't use gdk_window_move_resize().)
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_move_resize (GdkWindow *window,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
2008-07-18 13:03:42 +00:00
|
|
|
gdk_window_move_resize_internal (window, TRUE, x, y, width, height);
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_scroll:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @dx: Amount to scroll in the X direction
|
|
|
|
* @dy: Amount to scroll in the Y direction
|
|
|
|
*
|
|
|
|
* Scroll the contents of @window, both pixels and children, by the
|
|
|
|
* given amount. @window itself does not move. Portions of the window
|
|
|
|
* that the scroll operation brings in from offscreen areas are
|
|
|
|
* invalidated. The invalidated region may be bigger than what would
|
|
|
|
* strictly be necessary.
|
|
|
|
*
|
|
|
|
* For X11, a minimum area will be invalidated if the window has no
|
|
|
|
* subwindows, or if the edges of the window's parent do not extend
|
|
|
|
* beyond the edges of the window. In other cases, a multi-step process
|
|
|
|
* is used to scroll the window which may produce temporary visual
|
|
|
|
* artifacts and unnecessary invalidations.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_scroll (GdkWindow *window,
|
|
|
|
gint dx,
|
|
|
|
gint dy)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *impl_window;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *copy_area, *noncopy_area;
|
|
|
|
cairo_region_t *old_native_child_region, *new_native_child_region;
|
2008-07-18 13:03:42 +00:00
|
|
|
GList *tmp_list;
|
2008-06-27 14:27:44 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
|
|
|
if (dx == 0 && dy == 0)
|
|
|
|
return;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->destroyed)
|
2008-06-27 14:27:44 +00:00
|
|
|
return;
|
|
|
|
|
2009-09-14 11:44:09 +00:00
|
|
|
gdk_window_flush_if_exposing (window);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
old_native_child_region = collect_native_child_region (window, FALSE);
|
2009-01-21 12:44:39 +00:00
|
|
|
if (old_native_child_region)
|
|
|
|
{
|
|
|
|
/* Any native window move will immediately copy stuff to the destination, which may overwrite a
|
|
|
|
* source or destination for a delayed GdkWindowRegionMove. So, we need
|
|
|
|
* to flush those here for the window and all overlapped subwindows
|
|
|
|
* of it. And we need to do this before setting the new clips as those will be
|
|
|
|
* affecting this.
|
|
|
|
*/
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_flush_recursive (window);
|
2009-01-21 12:44:39 +00:00
|
|
|
}
|
|
|
|
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* First move all child windows, without causing invalidation */
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
tmp_list = window->children;
|
2008-07-18 13:03:42 +00:00
|
|
|
while (tmp_list)
|
|
|
|
{
|
|
|
|
GdkWindow *child = GDK_WINDOW (tmp_list->data);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-18 10:43:57 +00:00
|
|
|
/* Just update the positions, the bits will move with the copy */
|
2010-11-22 23:55:39 +00:00
|
|
|
child->x += dx;
|
|
|
|
child->y += dy;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
tmp_list = tmp_list->next;
|
|
|
|
}
|
2008-12-18 10:43:57 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (window, FALSE, TRUE);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-01-21 12:44:39 +00:00
|
|
|
new_native_child_region = NULL;
|
|
|
|
if (old_native_child_region)
|
2010-11-22 23:55:39 +00:00
|
|
|
new_native_child_region = collect_native_child_region (window, FALSE);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
move_native_children (window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Then copy the actual bits of the window w/ child windows */
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_window = gdk_window_get_impl_window (window);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
/* Calculate the area that can be gotten by copying the old area */
|
2010-11-22 23:55:39 +00:00
|
|
|
copy_area = cairo_region_copy (window->clip_region);
|
2009-01-21 12:44:39 +00:00
|
|
|
if (old_native_child_region)
|
|
|
|
{
|
|
|
|
/* Don't copy from inside native children, as this is copied by
|
|
|
|
* the native window move.
|
|
|
|
*/
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (copy_area, old_native_child_region);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-21 12:44:39 +00:00
|
|
|
/* Don't copy any bits that would cause a read from the moved
|
|
|
|
native windows, as we can't read that data */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (copy_area, new_native_child_region);
|
2009-01-21 12:44:39 +00:00
|
|
|
}
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_translate (copy_area, dx, dy);
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_intersect (copy_area, window->clip_region);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
/* And the rest need to be invalidated */
|
2010-11-22 23:55:39 +00:00
|
|
|
noncopy_area = cairo_region_copy (window->clip_region);
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_subtract (noncopy_area, copy_area);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2008-12-09 12:33:26 +00:00
|
|
|
/* convert from window coords to impl */
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_translate (copy_area, window->abs_x, window->abs_y);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-02-08 12:35:17 +00:00
|
|
|
move_region_on_impl (impl_window, copy_area, dx, dy); /* takes ownership of copy_area */
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Invalidate not copied regions */
|
2009-11-03 13:47:31 +00:00
|
|
|
if (old_native_child_region)
|
|
|
|
{
|
|
|
|
/* No need to expose the region that the native window move copies */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_translate (old_native_child_region, dx, dy);
|
|
|
|
cairo_region_intersect (old_native_child_region, new_native_child_region);
|
|
|
|
cairo_region_subtract (noncopy_area, old_native_child_region);
|
2009-11-03 13:47:31 +00:00
|
|
|
}
|
2009-11-04 13:03:04 +00:00
|
|
|
gdk_window_invalidate_region_full (window, noncopy_area, TRUE, CLEAR_BG_ALL);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (noncopy_area);
|
2009-01-21 12:44:39 +00:00
|
|
|
|
|
|
|
if (old_native_child_region)
|
|
|
|
{
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (old_native_child_region);
|
|
|
|
cairo_region_destroy (new_native_child_region);
|
2009-01-21 12:44:39 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-06-18 18:58:13 +00:00
|
|
|
_gdk_synthesize_crossing_events_for_geometry_change (window);
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_move_region:
|
|
|
|
* @window: a #GdkWindow
|
2010-06-28 12:54:37 +00:00
|
|
|
* @region: The #cairo_region_t to move
|
2008-06-27 14:27:44 +00:00
|
|
|
* @dx: Amount to move in the X direction
|
|
|
|
* @dy: Amount to move in the Y direction
|
|
|
|
*
|
|
|
|
* Move the part of @window indicated by @region by @dy pixels in the Y
|
|
|
|
* direction and @dx pixels in the X direction. The portions of @region
|
|
|
|
* that not covered by the new position of @region are invalidated.
|
|
|
|
*
|
|
|
|
* Child windows are not moved.
|
|
|
|
*
|
|
|
|
* Since: 2.8
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_window_move_region (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
const cairo_region_t *region,
|
2008-06-27 14:27:44 +00:00
|
|
|
gint dx,
|
|
|
|
gint dy)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *impl_window;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *nocopy_area;
|
|
|
|
cairo_region_t *copy_area;
|
2008-06-27 14:27:44 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
g_return_if_fail (region != NULL);
|
|
|
|
|
|
|
|
if (dx == 0 && dy == 0)
|
|
|
|
return;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->destroyed)
|
2008-06-27 14:27:44 +00:00
|
|
|
return;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_window = gdk_window_get_impl_window (window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* compute source regions */
|
2010-06-28 12:44:12 +00:00
|
|
|
copy_area = cairo_region_copy (region);
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_intersect (copy_area, window->clip_region_with_children);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
/* compute destination regions */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_translate (copy_area, dx, dy);
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_intersect (copy_area, window->clip_region_with_children);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-08-13 11:32:17 +00:00
|
|
|
/* Invalidate parts of the region (source and dest) not covered
|
|
|
|
by the copy */
|
2010-06-28 12:44:12 +00:00
|
|
|
nocopy_area = cairo_region_copy (region);
|
|
|
|
cairo_region_translate (nocopy_area, dx, dy);
|
|
|
|
cairo_region_union (nocopy_area, region);
|
|
|
|
cairo_region_subtract (nocopy_area, copy_area);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2008-12-09 12:33:26 +00:00
|
|
|
/* convert from window coords to impl */
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_translate (copy_area, window->abs_x, window->abs_y);
|
2009-02-08 12:35:17 +00:00
|
|
|
move_region_on_impl (impl_window, copy_area, dx, dy); /* Takes ownership of copy_area */
|
2009-08-13 11:32:17 +00:00
|
|
|
|
2009-11-04 13:03:04 +00:00
|
|
|
gdk_window_invalidate_region_full (window, nocopy_area, FALSE, CLEAR_BG_ALL);
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (nocopy_area);
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_background:
|
|
|
|
* @window: a #GdkWindow
|
2010-08-15 11:49:30 +00:00
|
|
|
* @color: a #GdkColor
|
2008-06-27 14:27:44 +00:00
|
|
|
*
|
|
|
|
* Sets the background color of @window. (However, when using GTK+,
|
|
|
|
* set the background of a widget with gtk_widget_modify_bg() - if
|
|
|
|
* you're an application - or gtk_style_set_background() - if you're
|
|
|
|
* implementing a custom widget.)
|
|
|
|
*
|
2010-08-15 11:49:30 +00:00
|
|
|
* See also gdk_window_set_background_pattern().
|
2008-06-27 14:27:44 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_window_set_background (GdkWindow *window,
|
|
|
|
const GdkColor *color)
|
|
|
|
{
|
2010-08-15 11:49:30 +00:00
|
|
|
cairo_pattern_t *pattern;
|
2008-06-27 14:27:44 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-08-15 11:49:30 +00:00
|
|
|
pattern = cairo_pattern_create_rgb (color->red / 65535.,
|
|
|
|
color->green / 65535.,
|
|
|
|
color->blue / 65535.);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-08-15 11:49:30 +00:00
|
|
|
gdk_window_set_background_pattern (window, pattern);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-08-15 11:49:30 +00:00
|
|
|
cairo_pattern_destroy (pattern);
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-10-21 13:26:40 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_set_background_rgba:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @rgba: a #GdkRGBA color
|
|
|
|
*
|
|
|
|
* Sets the background color of @window.
|
|
|
|
*
|
|
|
|
* See also gdk_window_set_background_pattern().
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_background_rgba (GdkWindow *window,
|
|
|
|
GdkRGBA *rgba)
|
|
|
|
{
|
|
|
|
cairo_pattern_t *pattern;
|
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
g_return_if_fail (rgba != NULL);
|
|
|
|
|
|
|
|
pattern = cairo_pattern_create_rgba (rgba->red, rgba->green,
|
|
|
|
rgba->blue, rgba->alpha);
|
|
|
|
|
|
|
|
gdk_window_set_background_pattern (window, pattern);
|
|
|
|
|
|
|
|
cairo_pattern_destroy (pattern);
|
|
|
|
}
|
|
|
|
|
2008-06-27 14:27:44 +00:00
|
|
|
/**
|
2010-08-15 11:49:30 +00:00
|
|
|
* gdk_window_set_background_pattern:
|
2008-06-27 14:27:44 +00:00
|
|
|
* @window: a #GdkWindow
|
2010-08-15 11:49:30 +00:00
|
|
|
* @pattern: (allow-none): a pattern to use, or %NULL
|
2008-06-27 14:27:44 +00:00
|
|
|
*
|
2010-08-15 11:49:30 +00:00
|
|
|
* Sets the background of @window.
|
2008-06-27 14:27:44 +00:00
|
|
|
*
|
2010-08-15 11:49:30 +00:00
|
|
|
* A background of %NULL means that the window will inherit its
|
|
|
|
* background form its parent window.
|
2008-06-27 14:27:44 +00:00
|
|
|
*
|
|
|
|
* The windowing system will normally fill a window with its background
|
2010-09-20 10:14:25 +00:00
|
|
|
* when the window is obscured then exposed.
|
2008-06-27 14:27:44 +00:00
|
|
|
*/
|
|
|
|
void
|
2010-08-15 11:49:30 +00:00
|
|
|
gdk_window_set_background_pattern (GdkWindow *window,
|
|
|
|
cairo_pattern_t *pattern)
|
2008-06-27 14:27:44 +00:00
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-08-15 11:49:30 +00:00
|
|
|
if (pattern)
|
|
|
|
cairo_pattern_reference (pattern);
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->background)
|
|
|
|
cairo_pattern_destroy (window->background);
|
|
|
|
window->background = pattern;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window) &&
|
|
|
|
!window->input_only)
|
2009-08-31 08:44:11 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindowImplClass *impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->set_background (window, pattern);
|
2009-08-31 08:44:11 +00:00
|
|
|
}
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
2010-08-15 21:50:02 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_background_pattern:
|
|
|
|
* @window: a window
|
|
|
|
*
|
|
|
|
* Gets the pattern used to clear the background on @window. If @window
|
|
|
|
* does not have its own background and reuses the parent's, %NULL is
|
|
|
|
* returned and you'll have to query it yourself.
|
|
|
|
*
|
|
|
|
* Returns: The pattern to use for the background or %NULL to use the
|
|
|
|
* parent's background.
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
**/
|
|
|
|
cairo_pattern_t *
|
|
|
|
gdk_window_get_background_pattern (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->background;
|
2010-08-15 21:50:02 +00:00
|
|
|
}
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
static void
|
|
|
|
update_cursor_foreach (GdkDisplay *display,
|
|
|
|
GdkDevice *device,
|
|
|
|
GdkPointerWindowInfo *pointer_info,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GdkWindow *window = user_data;
|
|
|
|
|
|
|
|
if (_gdk_native_windows ||
|
2010-11-22 23:55:39 +00:00
|
|
|
window->window_type == GDK_WINDOW_ROOT ||
|
|
|
|
window->window_type == GDK_WINDOW_FOREIGN)
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_device_cursor (window, device, window->cursor);
|
2010-05-25 22:38:44 +00:00
|
|
|
else if (_gdk_window_event_parent_of (window, pointer_info->window_under_pointer))
|
|
|
|
update_cursor (display, device);
|
|
|
|
}
|
|
|
|
|
2009-07-16 06:16:01 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_cursor:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Retrieves a #GdkCursor pointer for the cursor currently set on the
|
|
|
|
* specified #GdkWindow, or %NULL. If the return value is %NULL then
|
|
|
|
* there is no custom cursor set on the specified window, and it is
|
|
|
|
* using the cursor for its parent window.
|
|
|
|
*
|
2009-07-30 10:10:45 +00:00
|
|
|
* Return value: a #GdkCursor, or %NULL. The returned object is owned
|
|
|
|
* by the #GdkWindow and should not be unreferenced directly. Use
|
|
|
|
* gdk_window_set_cursor() to unset the cursor of the window
|
|
|
|
*
|
2009-07-16 06:16:01 +00:00
|
|
|
* Since: 2.18
|
|
|
|
*/
|
|
|
|
GdkCursor *
|
|
|
|
gdk_window_get_cursor (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->cursor;
|
2009-07-16 06:16:01 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 14:27:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_set_cursor:
|
|
|
|
* @window: a #GdkWindow
|
2010-06-27 14:39:02 +00:00
|
|
|
* @cursor: (allow-none): a cursor
|
2008-06-27 14:27:44 +00:00
|
|
|
*
|
2010-05-25 22:38:44 +00:00
|
|
|
* Sets the default mouse pointer for a #GdkWindow. Use gdk_cursor_new_for_display()
|
2010-08-27 13:21:58 +00:00
|
|
|
* or gdk_cursor_new_from_pixbuf() to create the cursor. To make the cursor
|
2009-06-01 10:04:36 +00:00
|
|
|
* invisible, use %GDK_BLANK_CURSOR. Passing %NULL for the @cursor argument
|
|
|
|
* to gdk_window_set_cursor() means that @window will use the cursor of its
|
2009-01-20 02:27:57 +00:00
|
|
|
* parent window. Most windows should use this default.
|
2008-06-27 14:27:44 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_window_set_cursor (GdkWindow *window,
|
|
|
|
GdkCursor *cursor)
|
|
|
|
{
|
2008-12-15 13:02:52 +00:00
|
|
|
GdkDisplay *display;
|
2008-06-27 14:27:44 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-08-29 00:08:47 +00:00
|
|
|
display = gdk_window_get_display (window);
|
2008-06-27 14:27:44 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->cursor)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-12-20 02:23:44 +00:00
|
|
|
g_object_unref (window->cursor);
|
2010-11-22 23:55:39 +00:00
|
|
|
window->cursor = NULL;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!GDK_WINDOW_DESTROYED (window))
|
|
|
|
{
|
|
|
|
if (cursor)
|
2010-12-20 02:23:44 +00:00
|
|
|
window->cursor = g_object_ref (cursor);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
_gdk_display_pointer_info_foreach (display,
|
|
|
|
update_cursor_foreach,
|
|
|
|
window);
|
2009-07-16 06:16:01 +00:00
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (window), "cursor");
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_device_cursor:
|
|
|
|
* @window: a #GdkWindow.
|
2010-12-20 22:04:44 +00:00
|
|
|
* @device: a master, pointer #GdkDevice.
|
2010-05-25 22:38:44 +00:00
|
|
|
*
|
|
|
|
* Retrieves a #GdkCursor pointer for the @device currently set on the
|
|
|
|
* specified #GdkWindow, or %NULL. If the return value is %NULL then
|
|
|
|
* there is no custom cursor set on the specified window, and it is
|
|
|
|
* using the cursor for its parent window.
|
|
|
|
*
|
|
|
|
* Returns: a #GdkCursor, or %NULL. The returned object is owned
|
|
|
|
* by the #GdkWindow and should not be unreferenced directly. Use
|
|
|
|
* gdk_window_set_cursor() to unset the cursor of the window
|
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
**/
|
|
|
|
GdkCursor *
|
|
|
|
gdk_window_get_device_cursor (GdkWindow *window,
|
|
|
|
GdkDevice *device)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
g_return_val_if_fail (GDK_IS_DEVICE (device), NULL);
|
2010-12-20 22:04:44 +00:00
|
|
|
g_return_val_if_fail (gdk_device_get_source (device) != GDK_SOURCE_KEYBOARD, NULL);
|
|
|
|
g_return_val_if_fail (gdk_device_get_device_type (device) == GDK_DEVICE_TYPE_MASTER, NULL);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return g_hash_table_lookup (window->device_cursor, device);
|
2010-05-25 22:38:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_device_cursor:
|
|
|
|
* @window: a #Gdkwindow
|
2010-12-20 22:04:44 +00:00
|
|
|
* @device: a master, pointer #GdkDevice
|
2010-05-25 22:38:44 +00:00
|
|
|
* @cursor: a #GdkCursor
|
|
|
|
*
|
|
|
|
* Sets a specific #GdkCursor for a given device when it gets inside @window.
|
2010-08-27 13:21:58 +00:00
|
|
|
* Use gdk_cursor_new_for_display() or gdk_cursor_new_from_pixbuf() to create
|
2010-05-25 22:38:44 +00:00
|
|
|
* the cursor. To make the cursor invisible, use %GDK_BLANK_CURSOR. Passing
|
|
|
|
* %NULL for the @cursor argument to gdk_window_set_cursor() means that
|
|
|
|
* @window will use the cursor of its parent window. Most windows should
|
|
|
|
* use this default.
|
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_device_cursor (GdkWindow *window,
|
|
|
|
GdkDevice *device,
|
|
|
|
GdkCursor *cursor)
|
|
|
|
{
|
|
|
|
GdkDisplay *display;
|
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
2010-05-26 11:22:25 +00:00
|
|
|
g_return_if_fail (GDK_IS_DEVICE (device));
|
2010-12-20 22:04:44 +00:00
|
|
|
g_return_if_fail (gdk_device_get_source (device) != GDK_SOURCE_KEYBOARD);
|
|
|
|
g_return_if_fail (gdk_device_get_device_type (device) == GDK_DEVICE_TYPE_MASTER);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
2010-08-29 00:08:47 +00:00
|
|
|
display = gdk_window_get_display (window);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
|
|
if (!cursor)
|
2010-11-22 23:55:39 +00:00
|
|
|
g_hash_table_remove (window->device_cursor, device);
|
2010-05-25 22:38:44 +00:00
|
|
|
else
|
2010-12-20 02:23:44 +00:00
|
|
|
g_hash_table_replace (window->device_cursor, device, g_object_ref (cursor));
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
|
|
if (!GDK_WINDOW_DESTROYED (window))
|
|
|
|
{
|
|
|
|
GdkPointerWindowInfo *pointer_info;
|
|
|
|
|
|
|
|
pointer_info = _gdk_display_get_pointer_info (display, device);
|
|
|
|
|
|
|
|
if (_gdk_window_event_parent_of (window, pointer_info->window_under_pointer))
|
|
|
|
update_cursor (display, device);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-27 14:27:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_geometry:
|
|
|
|
* @window: a #GdkWindow
|
2010-12-04 13:55:11 +00:00
|
|
|
* @x: (out) (allow-none): return location for X coordinate of window (relative to its parent)
|
|
|
|
* @y: (out) (allow-none): return location for Y coordinate of window (relative to its parent)
|
|
|
|
* @width: (out) (allow-none): return location for width of window
|
|
|
|
* @height: (out) (allow-none): return location for height of window
|
2008-06-27 14:27:44 +00:00
|
|
|
*
|
|
|
|
* Any of the return location arguments to this function may be %NULL,
|
|
|
|
* if you aren't interested in getting the value of that field.
|
|
|
|
*
|
|
|
|
* The X and Y coordinates returned are relative to the parent window
|
|
|
|
* of @window, which for toplevels usually means relative to the
|
|
|
|
* window decorations (titlebar, etc.) rather than relative to the
|
|
|
|
* root window (screen-size background window).
|
|
|
|
*
|
|
|
|
* On the X11 platform, the geometry is obtained from the X server,
|
|
|
|
* so reflects the latest position of @window; this may be out-of-sync
|
|
|
|
* with the position of @window delivered in the most-recently-processed
|
|
|
|
* #GdkEventConfigure. gdk_window_get_position() in contrast gets the
|
|
|
|
* position from the most recent configure event.
|
|
|
|
*
|
|
|
|
* <note>
|
|
|
|
* If @window is not a toplevel, it is <emphasis>much</emphasis> better
|
2010-09-20 10:53:46 +00:00
|
|
|
* to call gdk_window_get_position(), gdk_window_get_width() and
|
|
|
|
* gdk_window_get_height() instead, because it avoids the roundtrip to
|
|
|
|
* the X server and because these functions support the full 32-bit
|
|
|
|
* coordinate space, whereas gdk_window_get_geometry() is restricted to
|
|
|
|
* the 16-bit coordinates of X11.
|
2008-06-27 14:27:44 +00:00
|
|
|
*</note>
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_get_geometry (GdkWindow *window,
|
|
|
|
gint *x,
|
|
|
|
gint *y,
|
|
|
|
gint *width,
|
2010-12-05 13:36:59 +00:00
|
|
|
gint *height)
|
2008-06-27 14:27:44 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *parent;
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2008-06-27 14:27:44 +00:00
|
|
|
|
|
|
|
if (!window)
|
|
|
|
{
|
|
|
|
GDK_NOTE (MULTIHEAD,
|
|
|
|
g_message ("gdk_window_get_geometry(): Window needs "
|
2009-06-01 10:04:36 +00:00
|
|
|
"to be non-NULL to be multi head safe"));
|
2008-06-27 14:27:44 +00:00
|
|
|
window = gdk_screen_get_root_window ((gdk_screen_get_default ()));
|
|
|
|
}
|
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
|
|
|
if (!GDK_WINDOW_DESTROYED (window))
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window))
|
2009-08-16 20:24:00 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->get_geometry (window, x, y,
|
2010-12-05 13:40:35 +00:00
|
|
|
width, height);
|
2009-08-16 20:24:00 +00:00
|
|
|
/* This reports the position wrt to the native parent, we need to convert
|
|
|
|
it to be relative to the client side parent */
|
2010-11-22 23:55:39 +00:00
|
|
|
parent = window->parent;
|
2009-08-17 14:59:47 +00:00
|
|
|
if (parent && !gdk_window_has_impl (parent))
|
2009-08-16 20:24:00 +00:00
|
|
|
{
|
2009-08-27 11:34:00 +00:00
|
|
|
if (x)
|
|
|
|
*x -= parent->abs_x;
|
|
|
|
if (y)
|
|
|
|
*y -= parent->abs_y;
|
2009-08-16 20:24:00 +00:00
|
|
|
}
|
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
else
|
|
|
|
{
|
2010-04-15 10:59:44 +00:00
|
|
|
if (x)
|
2010-11-22 23:55:39 +00:00
|
|
|
*x = window->x;
|
2010-04-15 10:59:44 +00:00
|
|
|
if (y)
|
2010-11-22 23:55:39 +00:00
|
|
|
*y = window->y;
|
2008-07-18 13:03:42 +00:00
|
|
|
if (width)
|
2010-11-22 23:55:39 +00:00
|
|
|
*width = window->width;
|
2008-07-18 13:03:42 +00:00
|
|
|
if (height)
|
2010-11-22 23:55:39 +00:00
|
|
|
*height = window->height;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-20 09:10:37 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_width:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Returns the width of the given @window.
|
|
|
|
*
|
|
|
|
* On the X11 platform the returned size is the size reported in the
|
|
|
|
* most-recently-processed configure event, rather than the current
|
|
|
|
* size on the X server.
|
2010-09-28 00:59:08 +00:00
|
|
|
*
|
2010-09-20 09:10:37 +00:00
|
|
|
* Returns: The width of @window
|
2010-09-28 00:59:08 +00:00
|
|
|
*
|
|
|
|
* Since: 2.24
|
2010-09-20 09:10:37 +00:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
gdk_window_get_width (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), 0);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->width;
|
2010-09-20 09:10:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_get_height:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Returns the height of the given @window.
|
|
|
|
*
|
|
|
|
* On the X11 platform the returned size is the size reported in the
|
|
|
|
* most-recently-processed configure event, rather than the current
|
|
|
|
* size on the X server.
|
2010-09-28 00:59:08 +00:00
|
|
|
*
|
2010-09-20 09:10:37 +00:00
|
|
|
* Returns: The height of @window
|
2010-09-28 00:59:08 +00:00
|
|
|
*
|
|
|
|
* Since: 2.24
|
2010-09-20 09:10:37 +00:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
gdk_window_get_height (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), 0);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->height;
|
2010-09-20 09:10:37 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 14:27:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_origin:
|
|
|
|
* @window: a #GdkWindow
|
2010-12-04 13:55:11 +00:00
|
|
|
* @x: (out) (allow-none): return location for X coordinate
|
|
|
|
* @y: (out) (allow-none): return location for Y coordinate
|
2008-06-27 14:27:44 +00:00
|
|
|
*
|
|
|
|
* Obtains the position of a window in root window coordinates.
|
|
|
|
* (Compare with gdk_window_get_position() and
|
|
|
|
* gdk_window_get_geometry() which return the position of a window
|
|
|
|
* relative to its parent window.)
|
|
|
|
*
|
|
|
|
* Return value: not meaningful, ignore
|
|
|
|
*/
|
|
|
|
gint
|
|
|
|
gdk_window_get_origin (GdkWindow *window,
|
|
|
|
gint *x,
|
|
|
|
gint *y)
|
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2008-06-27 14:27:44 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), 0);
|
|
|
|
|
2009-06-30 07:30:53 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
{
|
|
|
|
if (x)
|
|
|
|
*x = 0;
|
|
|
|
if (y)
|
|
|
|
*y = 0;
|
|
|
|
return 0;
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->get_root_coords (window,
|
2010-11-22 23:55:39 +00:00
|
|
|
window->abs_x,
|
|
|
|
window->abs_y,
|
2009-08-31 08:44:11 +00:00
|
|
|
x, y);
|
2008-06-27 14:27:44 +00:00
|
|
|
|
2009-06-08 15:03:47 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_get_root_coords:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @x: X coordinate in window
|
|
|
|
* @y: Y coordinate in window
|
|
|
|
* @root_x: return location for X coordinate
|
|
|
|
* @root_y: return location for Y coordinate
|
|
|
|
*
|
|
|
|
* Obtains the position of a window position in root
|
|
|
|
* window coordinates. This is similar to
|
|
|
|
* gdk_window_get_origin() but allows you go pass
|
|
|
|
* in any position in the window, not just the origin.
|
2009-12-17 18:17:22 +00:00
|
|
|
*
|
|
|
|
* Since: 2.18
|
2009-06-08 15:03:47 +00:00
|
|
|
*/
|
2009-06-30 07:30:53 +00:00
|
|
|
void
|
2009-06-08 15:03:47 +00:00
|
|
|
gdk_window_get_root_coords (GdkWindow *window,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint *root_x,
|
|
|
|
gint *root_y)
|
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2009-06-08 15:03:47 +00:00
|
|
|
|
2009-07-01 08:11:15 +00:00
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
2009-06-08 15:03:47 +00:00
|
|
|
|
2009-06-30 07:30:53 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
{
|
|
|
|
if (x)
|
|
|
|
*root_x = x;
|
|
|
|
if (y)
|
|
|
|
*root_y = y;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class->get_root_coords (window,
|
2010-11-22 23:55:39 +00:00
|
|
|
x + window->abs_x,
|
|
|
|
y + window->abs_y,
|
2009-08-31 08:44:11 +00:00
|
|
|
root_x, root_y);
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
2010-04-15 10:59:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_coords_to_parent:
|
|
|
|
* @window: a child window
|
|
|
|
* @x: X coordinate in child's coordinate system
|
|
|
|
* @y: Y coordinate in child's coordinate system
|
2010-05-25 15:54:16 +00:00
|
|
|
* @parent_x: (out) (allow-none): return location for X coordinate
|
|
|
|
* in parent's coordinate system, or %NULL
|
|
|
|
* @parent_y: (out) (allow-none): return location for Y coordinate
|
|
|
|
* in parent's coordinate system, or %NULL
|
2010-04-15 10:59:44 +00:00
|
|
|
*
|
|
|
|
* Transforms window coordinates from a child window to its parent
|
|
|
|
* window, where the parent window is the normal parent as returned by
|
|
|
|
* gdk_window_get_parent() for normal windows, and the window's
|
|
|
|
* embedder as returned by gdk_offscreen_window_get_embedder() for
|
|
|
|
* offscreen windows.
|
|
|
|
*
|
|
|
|
* For normal windows, calling this function is equivalent to adding
|
|
|
|
* the return values of gdk_window_get_position() to the child coordinates.
|
|
|
|
* For offscreen windows however (which can be arbitrarily transformed),
|
|
|
|
* this function calls the GdkWindow::to-embedder: signal to translate
|
|
|
|
* the coordinates.
|
|
|
|
*
|
|
|
|
* You should always use this function when writing generic code that
|
|
|
|
* walks up a window hierarchy.
|
|
|
|
*
|
|
|
|
* See also: gdk_window_coords_from_parent()
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_coords_to_parent (GdkWindow *window,
|
|
|
|
gdouble x,
|
|
|
|
gdouble y,
|
|
|
|
gdouble *parent_x,
|
|
|
|
gdouble *parent_y)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_is_offscreen (window))
|
2010-04-15 10:59:44 +00:00
|
|
|
{
|
|
|
|
gdouble px, py;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
to_embedder (window, x, y, &px, &py);
|
2010-04-15 10:59:44 +00:00
|
|
|
|
|
|
|
if (parent_x)
|
|
|
|
*parent_x = px;
|
|
|
|
|
|
|
|
if (parent_y)
|
|
|
|
*parent_y = py;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (parent_x)
|
2010-11-22 23:55:39 +00:00
|
|
|
*parent_x = x + window->x;
|
2010-04-15 10:59:44 +00:00
|
|
|
|
|
|
|
if (parent_y)
|
2010-11-22 23:55:39 +00:00
|
|
|
*parent_y = y + window->y;
|
2010-04-15 10:59:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_coords_from_parent:
|
|
|
|
* @window: a child window
|
|
|
|
* @parent_x: X coordinate in parent's coordinate system
|
|
|
|
* @parent_y: Y coordinate in parent's coordinate system
|
2010-05-25 15:54:16 +00:00
|
|
|
* @x: (out) (allow-none): return location for X coordinate in child's coordinate system
|
|
|
|
* @y: (out) (allow-none): return location for Y coordinate in child's coordinate system
|
2010-04-15 10:59:44 +00:00
|
|
|
*
|
|
|
|
* Transforms window coordinates from a parent window to a child
|
|
|
|
* window, where the parent window is the normal parent as returned by
|
|
|
|
* gdk_window_get_parent() for normal windows, and the window's
|
|
|
|
* embedder as returned by gdk_offscreen_window_get_embedder() for
|
|
|
|
* offscreen windows.
|
|
|
|
*
|
|
|
|
* For normal windows, calling this function is equivalent to subtracting
|
|
|
|
* the return values of gdk_window_get_position() from the parent coordinates.
|
|
|
|
* For offscreen windows however (which can be arbitrarily transformed),
|
|
|
|
* this function calls the GdkWindow::from-embedder: signal to translate
|
|
|
|
* the coordinates.
|
|
|
|
*
|
|
|
|
* You should always use this function when writing generic code that
|
|
|
|
* walks down a window hierarchy.
|
|
|
|
*
|
|
|
|
* See also: gdk_window_coords_to_parent()
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_coords_from_parent (GdkWindow *window,
|
|
|
|
gdouble parent_x,
|
|
|
|
gdouble parent_y,
|
|
|
|
gdouble *x,
|
|
|
|
gdouble *y)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_is_offscreen (window))
|
2010-04-15 10:59:44 +00:00
|
|
|
{
|
|
|
|
gdouble cx, cy;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
from_embedder (window, parent_x, parent_y, &cx, &cy);
|
2010-04-15 10:59:44 +00:00
|
|
|
|
|
|
|
if (x)
|
|
|
|
*x = cx;
|
|
|
|
|
|
|
|
if (y)
|
|
|
|
*y = cy;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (x)
|
2010-11-22 23:55:39 +00:00
|
|
|
*x = parent_x - window->x;
|
2010-04-15 10:59:44 +00:00
|
|
|
|
|
|
|
if (y)
|
2010-11-22 23:55:39 +00:00
|
|
|
*y = parent_y - window->y;
|
2010-04-15 10:59:44 +00:00
|
|
|
}
|
|
|
|
}
|
2008-12-06 21:43:01 +00:00
|
|
|
|
2008-06-27 14:27:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_shape_combine_region:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @shape_region: region of window to be non-transparent
|
|
|
|
* @offset_x: X position of @shape_region in @window coordinates
|
|
|
|
* @offset_y: Y position of @shape_region in @window coordinates
|
|
|
|
*
|
|
|
|
* Makes pixels in @window outside @shape_region be transparent,
|
2010-08-14 04:46:25 +00:00
|
|
|
* so that the window may be nonrectangular.
|
2008-06-27 14:27:44 +00:00
|
|
|
*
|
|
|
|
* If @shape_region is %NULL, the shape will be unset, so the whole
|
|
|
|
* window will be opaque again. @offset_x and @offset_y are ignored
|
|
|
|
* if @shape_region is %NULL.
|
|
|
|
*
|
|
|
|
* On the X11 platform, this uses an X server extension which is
|
|
|
|
* widely available on most common platforms, but not available on
|
|
|
|
* very old X servers, and occasionally the implementation will be
|
|
|
|
* buggy. On servers without the shape extension, this function
|
|
|
|
* will do nothing.
|
|
|
|
*
|
|
|
|
* This function works on both toplevel and child windows.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_window_shape_combine_region (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
const cairo_region_t *shape_region,
|
2009-06-01 10:04:36 +00:00
|
|
|
gint offset_x,
|
|
|
|
gint offset_y)
|
2008-06-27 14:27:44 +00:00
|
|
|
{
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *old_region, *new_region, *diff;
|
2008-06-27 14:27:44 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2008-12-16 19:09:20 +00:00
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return;
|
|
|
|
|
2010-12-15 03:21:39 +00:00
|
|
|
if (!window->shape && shape_region == NULL)
|
|
|
|
return;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->shaped = (shape_region != NULL);
|
2008-12-16 19:09:20 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->shape)
|
|
|
|
cairo_region_destroy (window->shape);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-16 14:09:39 +00:00
|
|
|
old_region = NULL;
|
2009-07-20 21:18:41 +00:00
|
|
|
if (GDK_WINDOW_IS_MAPPED (window))
|
2010-11-22 23:55:39 +00:00
|
|
|
old_region = cairo_region_copy (window->clip_region);
|
2008-12-16 19:09:20 +00:00
|
|
|
|
|
|
|
if (shape_region)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
window->shape = cairo_region_copy (shape_region);
|
|
|
|
cairo_region_translate (window->shape, offset_x, offset_y);
|
2008-12-16 19:09:20 +00:00
|
|
|
}
|
|
|
|
else
|
2010-11-22 23:55:39 +00:00
|
|
|
window->shape = NULL;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (window, TRUE, FALSE);
|
2009-01-16 14:09:39 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window) &&
|
|
|
|
!should_apply_clip_as_shape (window))
|
|
|
|
apply_shape (window, window->shape);
|
2009-08-27 16:04:07 +00:00
|
|
|
|
2009-01-16 14:09:39 +00:00
|
|
|
if (old_region)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
new_region = cairo_region_copy (window->clip_region);
|
2009-01-16 14:09:39 +00:00
|
|
|
|
|
|
|
/* New area in the window, needs invalidation */
|
2010-06-28 12:44:12 +00:00
|
|
|
diff = cairo_region_copy (new_region);
|
|
|
|
cairo_region_subtract (diff, old_region);
|
2009-01-16 14:09:39 +00:00
|
|
|
|
2009-11-04 13:03:04 +00:00
|
|
|
gdk_window_invalidate_region_full (window, diff, TRUE, CLEAR_BG_ALL);
|
2009-01-16 14:09:39 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (diff);
|
2009-01-16 14:09:39 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (!gdk_window_is_toplevel (window))
|
2009-01-16 14:09:39 +00:00
|
|
|
{
|
|
|
|
/* New area in the non-root parent window, needs invalidation */
|
2010-06-28 12:44:12 +00:00
|
|
|
diff = cairo_region_copy (old_region);
|
|
|
|
cairo_region_subtract (diff, new_region);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-16 14:09:39 +00:00
|
|
|
/* Adjust region to parent window coords */
|
2010-11-22 23:55:39 +00:00
|
|
|
cairo_region_translate (diff, window->x, window->y);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_invalidate_region_full (window->parent, diff, TRUE, CLEAR_BG_ALL);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (diff);
|
2009-01-16 14:09:39 +00:00
|
|
|
}
|
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_destroy (new_region);
|
|
|
|
cairo_region_destroy (old_region);
|
2009-01-16 14:09:39 +00:00
|
|
|
}
|
2008-12-16 19:09:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_child_shapes (GdkWindow *window,
|
|
|
|
gboolean merge)
|
|
|
|
{
|
|
|
|
GdkRectangle r;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region;
|
2008-12-16 19:09:20 +00:00
|
|
|
|
|
|
|
r.x = 0;
|
|
|
|
r.y = 0;
|
2010-11-22 23:55:39 +00:00
|
|
|
r.width = window->width;
|
|
|
|
r.height = window->height;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
region = cairo_region_create_rectangle (&r);
|
2010-11-22 23:55:39 +00:00
|
|
|
remove_child_area (window, NULL, FALSE, region);
|
2008-12-16 19:09:20 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (merge && window->shape)
|
|
|
|
cairo_region_subtract (region, window->shape);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-16 19:09:20 +00:00
|
|
|
gdk_window_shape_combine_region (window, region, 0, 0);
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_child_shapes:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Sets the shape mask of @window to the union of shape masks
|
|
|
|
* for all children of @window, ignoring the shape mask of @window
|
|
|
|
* itself. Contrast with gdk_window_merge_child_shapes() which includes
|
|
|
|
* the shape mask of @window in the masks to be merged.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_child_shapes (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2008-12-16 19:09:20 +00:00
|
|
|
do_child_shapes (window, FALSE);
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_merge_child_shapes:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Merges the shape masks for any child windows into the
|
|
|
|
* shape mask for @window. i.e. the union of all masks
|
|
|
|
* for @window and its children will become the new mask
|
2010-08-14 04:46:25 +00:00
|
|
|
* for @window. See gdk_window_shape_combine_region().
|
2008-06-27 14:27:44 +00:00
|
|
|
*
|
|
|
|
* This function is distinct from gdk_window_set_child_shapes()
|
|
|
|
* because it includes @window's shape mask in the set of shapes to
|
|
|
|
* be merged.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_window_merge_child_shapes (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
2008-12-16 19:09:20 +00:00
|
|
|
do_child_shapes (window, TRUE);
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
2008-12-17 10:24:46 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_input_shape_combine_region:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @shape_region: region of window to be non-transparent
|
|
|
|
* @offset_x: X position of @shape_region in @window coordinates
|
|
|
|
* @offset_y: Y position of @shape_region in @window coordinates
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2008-12-17 10:24:46 +00:00
|
|
|
* Like gdk_window_shape_combine_region(), but the shape applies
|
|
|
|
* only to event handling. Mouse events which happen while
|
2009-06-01 10:04:36 +00:00
|
|
|
* the pointer position corresponds to an unset bit in the
|
2008-12-17 10:24:46 +00:00
|
|
|
* mask will be passed on the window below @window.
|
|
|
|
*
|
|
|
|
* An input shape is typically used with RGBA windows.
|
2009-06-01 10:04:36 +00:00
|
|
|
* The alpha channel of the window defines which pixels are
|
2008-12-17 10:24:46 +00:00
|
|
|
* invisible and allows for nicely antialiased borders,
|
|
|
|
* and the input shape controls where the window is
|
|
|
|
* "clickable".
|
|
|
|
*
|
|
|
|
* On the X11 platform, this requires version 1.1 of the
|
|
|
|
* shape extension.
|
|
|
|
*
|
|
|
|
* On the Win32 platform, this functionality is not present and the
|
|
|
|
* function does nothing.
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
*/
|
2009-06-01 10:04:36 +00:00
|
|
|
void
|
2008-12-17 10:24:46 +00:00
|
|
|
gdk_window_input_shape_combine_region (GdkWindow *window,
|
2010-06-28 12:54:37 +00:00
|
|
|
const cairo_region_t *shape_region,
|
2008-12-17 10:24:46 +00:00
|
|
|
gint offset_x,
|
|
|
|
gint offset_y)
|
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2008-12-17 10:24:46 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->input_shape)
|
|
|
|
cairo_region_destroy (window->input_shape);
|
2008-12-17 10:24:46 +00:00
|
|
|
|
|
|
|
if (shape_region)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
window->input_shape = cairo_region_copy (shape_region);
|
|
|
|
cairo_region_translate (window->input_shape, offset_x, offset_y);
|
2008-12-17 10:24:46 +00:00
|
|
|
}
|
|
|
|
else
|
2010-11-22 23:55:39 +00:00
|
|
|
window->input_shape = NULL;
|
2008-12-17 10:24:46 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window))
|
2009-08-31 08:44:11 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
|
|
|
impl_class->input_shape_combine_region (window, window->input_shape, 0, 0);
|
2009-08-31 08:44:11 +00:00
|
|
|
}
|
2008-12-17 10:24:46 +00:00
|
|
|
|
|
|
|
/* Pointer may have e.g. moved outside window due to the input mask change */
|
2009-06-18 18:58:13 +00:00
|
|
|
_gdk_synthesize_crossing_events_for_geometry_change (window);
|
2008-12-17 10:24:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_child_input_shapes (GdkWindow *window,
|
|
|
|
gboolean merge)
|
|
|
|
{
|
|
|
|
GdkRectangle r;
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *region;
|
2008-12-17 10:24:46 +00:00
|
|
|
|
|
|
|
r.x = 0;
|
|
|
|
r.y = 0;
|
2010-11-22 23:55:39 +00:00
|
|
|
r.width = window->width;
|
|
|
|
r.height = window->height;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
region = cairo_region_create_rectangle (&r);
|
2010-11-22 23:55:39 +00:00
|
|
|
remove_child_area (window, NULL, TRUE, region);
|
2008-12-17 10:24:46 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (merge && window->shape)
|
|
|
|
cairo_region_subtract (region, window->shape);
|
|
|
|
if (merge && window->input_shape)
|
|
|
|
cairo_region_subtract (region, window->input_shape);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-17 10:24:46 +00:00
|
|
|
gdk_window_input_shape_combine_region (window, region, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_child_input_shapes:
|
|
|
|
* @window: a #GdkWindow
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2008-12-17 10:24:46 +00:00
|
|
|
* Sets the input shape mask of @window to the union of input shape masks
|
|
|
|
* for all children of @window, ignoring the input shape mask of @window
|
|
|
|
* itself. Contrast with gdk_window_merge_child_input_shapes() which includes
|
|
|
|
* the input shape mask of @window in the masks to be merged.
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
**/
|
2009-06-01 10:04:36 +00:00
|
|
|
void
|
2008-12-17 10:24:46 +00:00
|
|
|
gdk_window_set_child_input_shapes (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-17 10:24:46 +00:00
|
|
|
do_child_input_shapes (window, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_merge_child_input_shapes:
|
|
|
|
* @window: a #GdkWindow
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2008-12-17 10:24:46 +00:00
|
|
|
* Merges the input shape masks for any child windows into the
|
|
|
|
* input shape mask for @window. i.e. the union of all input masks
|
|
|
|
* for @window and its children will become the new input mask
|
2010-08-14 04:46:25 +00:00
|
|
|
* for @window. See gdk_window_input_shape_combine_region().
|
2008-12-17 10:24:46 +00:00
|
|
|
*
|
|
|
|
* This function is distinct from gdk_window_set_child_input_shapes()
|
2009-06-01 10:04:36 +00:00
|
|
|
* because it includes @window's input shape mask in the set of
|
2008-12-17 10:24:46 +00:00
|
|
|
* shapes to be merged.
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
**/
|
2009-06-01 10:04:36 +00:00
|
|
|
void
|
2008-12-17 10:24:46 +00:00
|
|
|
gdk_window_merge_child_input_shapes (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-17 10:24:46 +00:00
|
|
|
do_child_input_shapes (window, TRUE);
|
|
|
|
}
|
|
|
|
|
2008-06-27 14:27:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_static_gravities:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @use_static: %TRUE to turn on static gravity
|
|
|
|
*
|
|
|
|
* Set the bit gravity of the given window to static, and flag it so
|
|
|
|
* all children get static subwindow gravity. This is used if you are
|
|
|
|
* implementing scary features that involve deep knowledge of the
|
|
|
|
* windowing system. Don't worry about it unless you have to.
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if the server supports static gravity
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gdk_window_set_static_gravities (GdkWindow *window,
|
|
|
|
gboolean use_static)
|
|
|
|
{
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2008-06-27 14:27:44 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_has_impl (window))
|
2009-08-31 08:44:11 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
2010-11-22 19:42:00 +00:00
|
|
|
return impl_class->set_static_gravities (window, use_static);
|
2009-08-31 08:44:11 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
return FALSE;
|
2008-06-27 14:27:44 +00:00
|
|
|
}
|
|
|
|
|
2010-05-25 15:54:16 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_composited:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
*
|
|
|
|
* Determines whether @window is composited.
|
|
|
|
*
|
|
|
|
* See gdk_window_set_composited().
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the window is composited.
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gdk_window_get_composited (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->composited;
|
2010-05-25 15:54:16 +00:00
|
|
|
}
|
|
|
|
|
2007-06-01 12:16:12 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_set_composited:
|
|
|
|
* @window: a #GdkWindow
|
2007-06-04 17:01:14 +00:00
|
|
|
* @composited: %TRUE to set the window as composited
|
2007-06-01 12:16:12 +00:00
|
|
|
*
|
2009-06-01 10:04:36 +00:00
|
|
|
* Sets a #GdkWindow as composited, or unsets it. Composited
|
|
|
|
* windows do not automatically have their contents drawn to
|
|
|
|
* the screen. Drawing is redirected to an offscreen buffer
|
|
|
|
* and an expose event is emitted on the parent of the composited
|
2007-06-04 17:01:14 +00:00
|
|
|
* window. It is the responsibility of the parent's expose handler
|
|
|
|
* to manually merge the off-screen content onto the screen in
|
2007-06-01 12:16:12 +00:00
|
|
|
* whatever way it sees fit. See <xref linkend="composited-window-example"/>
|
|
|
|
* for an example.
|
|
|
|
*
|
|
|
|
* It only makes sense for child windows to be composited; see
|
|
|
|
* gdk_window_set_opacity() if you need translucent toplevel
|
|
|
|
* windows.
|
|
|
|
*
|
|
|
|
* An additional effect of this call is that the area of this
|
|
|
|
* window is no longer clipped from regions marked for
|
|
|
|
* invalidation on its parent. Draws done on the parent
|
|
|
|
* window are also no longer clipped by the child.
|
|
|
|
*
|
|
|
|
* This call is only supported on some systems (currently,
|
2009-06-01 10:04:36 +00:00
|
|
|
* only X11 with new enough Xcomposite and Xdamage extensions).
|
2007-06-01 12:16:12 +00:00
|
|
|
* You must call gdk_display_supports_composite() to check if
|
|
|
|
* setting a window as composited is supported before
|
|
|
|
* attempting to do so.
|
|
|
|
*
|
|
|
|
* Since: 2.12
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_window_set_composited (GdkWindow *window,
|
2009-06-01 10:04:36 +00:00
|
|
|
gboolean composited)
|
2007-06-01 12:16:12 +00:00
|
|
|
{
|
|
|
|
GdkDisplay *display;
|
2010-12-10 17:54:43 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2007-06-01 12:16:12 +00:00
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
|
|
|
composited = composited != FALSE;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->composited == composited)
|
2007-06-01 12:16:12 +00:00
|
|
|
return;
|
|
|
|
|
2008-12-08 11:51:19 +00:00
|
|
|
if (composited)
|
2009-06-01 09:57:59 +00:00
|
|
|
gdk_window_ensure_native (window);
|
2008-12-08 11:51:19 +00:00
|
|
|
|
2010-08-29 00:08:47 +00:00
|
|
|
display = gdk_window_get_display (window);
|
2007-06-01 12:16:12 +00:00
|
|
|
|
2010-12-10 17:56:56 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
|
|
|
|
|
|
|
|
if (composited && (!gdk_display_supports_composite (display) || !impl_class->set_composited))
|
2007-06-01 12:16:12 +00:00
|
|
|
{
|
|
|
|
g_warning ("gdk_window_set_composited called but "
|
2010-12-10 17:54:43 +00:00
|
|
|
"compositing is not supported");
|
2007-06-01 12:16:12 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-12-10 17:54:43 +00:00
|
|
|
impl_class->set_composited (window, composited);
|
2007-06-01 12:16:12 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
recompute_visible_regions (window, TRUE, FALSE);
|
2008-12-18 13:29:28 +00:00
|
|
|
|
|
|
|
if (GDK_WINDOW_IS_MAPPED (window))
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_invalidate_in_parent (window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->composited = composited;
|
2007-06-01 12:16:12 +00:00
|
|
|
}
|
|
|
|
|
2010-05-25 15:54:16 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_get_modal_hint:
|
|
|
|
* @window: A toplevel #GdkWindow.
|
|
|
|
*
|
|
|
|
* Determines whether or not the window manager is hinted that @window
|
|
|
|
* has modal behaviour.
|
|
|
|
*
|
|
|
|
* Return value: whether or not the window has the modal hint set.
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gdk_window_get_modal_hint (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->modal_hint;
|
2010-05-25 15:54:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_get_accept_focus:
|
|
|
|
* @window: a toplevel #GdkWindow.
|
|
|
|
*
|
|
|
|
* Determines whether or not the desktop environment shuld be hinted that
|
|
|
|
* the window does not want to receive input focus.
|
|
|
|
*
|
|
|
|
* Return value: whether or not the window should receive input focus.
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gdk_window_get_accept_focus (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->accept_focus;
|
2010-05-25 15:54:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_get_focus_on_map:
|
|
|
|
* @window: a toplevel #GdkWindow.
|
|
|
|
*
|
|
|
|
* Determines whether or not the desktop environment should be hinted that the
|
|
|
|
* window does not want to receive input focus when it is mapped.
|
|
|
|
*
|
|
|
|
* Return value: whether or not the window wants to receive input focus when
|
|
|
|
* it is mapped.
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gdk_window_get_focus_on_map (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->focus_on_map;
|
2010-05-25 15:54:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_is_input_only:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* Determines whether or not the window is an input only window.
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if @window is input only
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gdk_window_is_input_only (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->input_only;
|
2010-05-25 15:54:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_is_shaped:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* Determines whether or not the window is shaped.
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if @window is shaped
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gdk_window_is_shaped (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->shaped;
|
2010-05-25 15:54:16 +00:00
|
|
|
}
|
|
|
|
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
static void
|
|
|
|
window_get_size_rectangle (GdkWindow *window,
|
2009-06-01 10:04:36 +00:00
|
|
|
GdkRectangle *rect)
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
{
|
|
|
|
rect->x = rect->y = 0;
|
2010-11-22 23:55:39 +00:00
|
|
|
rect->width = window->width;
|
|
|
|
rect->height = window->height;
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Calculates the real clipping region for a window, in window coordinates,
|
|
|
|
* taking into account other windows, gc clip region and gc clip mask.
|
|
|
|
*/
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
_gdk_window_calculate_full_clip_region (GdkWindow *window,
|
|
|
|
GdkWindow *base_window,
|
2008-07-18 13:03:42 +00:00
|
|
|
gboolean do_children,
|
|
|
|
gint *base_x_offset,
|
|
|
|
gint *base_y_offset)
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
{
|
|
|
|
GdkRectangle visible_rect;
|
2010-07-19 23:21:38 +00:00
|
|
|
cairo_region_t *real_clip_region;
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
gint x_offset, y_offset;
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *parentwin, *lastwin;
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
|
|
|
|
if (base_x_offset)
|
|
|
|
*base_x_offset = 0;
|
|
|
|
if (base_y_offset)
|
|
|
|
*base_y_offset = 0;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (!window->viewable || window->input_only)
|
2010-06-28 12:44:12 +00:00
|
|
|
return cairo_region_create ();
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
|
|
|
|
window_get_size_rectangle (window, &visible_rect);
|
|
|
|
|
|
|
|
/* real_clip_region is in window coordinates */
|
2010-06-28 12:44:12 +00:00
|
|
|
real_clip_region = cairo_region_create_rectangle (&visible_rect);
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
|
|
|
|
x_offset = y_offset = 0;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
lastwin = window;
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
if (do_children)
|
|
|
|
parentwin = lastwin;
|
|
|
|
else
|
|
|
|
parentwin = lastwin->parent;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
/* Remove the areas of all overlapping windows above parentwin in the hiearachy */
|
2008-07-18 13:03:42 +00:00
|
|
|
for (; parentwin != NULL &&
|
2010-11-22 23:55:39 +00:00
|
|
|
(parentwin == window || lastwin != base_window);
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
lastwin = parentwin, parentwin = lastwin->parent)
|
|
|
|
{
|
|
|
|
GList *cur;
|
|
|
|
GdkRectangle real_clip_rect;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (parentwin != window)
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
x_offset += lastwin->x;
|
|
|
|
y_offset += lastwin->y;
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
/* children is ordered in reverse stack order */
|
2008-07-18 13:03:42 +00:00
|
|
|
for (cur = parentwin->children;
|
2009-06-01 10:04:36 +00:00
|
|
|
cur && cur->data != lastwin;
|
|
|
|
cur = cur->next)
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
{
|
|
|
|
GdkWindow *child = cur->data;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (!GDK_WINDOW_IS_MAPPED (child) || child->input_only)
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
continue;
|
2008-06-27 14:27:44 +00:00
|
|
|
|
2009-06-01 10:04:36 +00:00
|
|
|
/* Ignore offscreen children, as they don't draw in their parent and
|
2008-07-18 13:03:42 +00:00
|
|
|
* don't take part in the clipping */
|
2010-11-22 23:55:39 +00:00
|
|
|
if (gdk_window_is_offscreen (child))
|
2008-07-18 13:03:42 +00:00
|
|
|
continue;
|
|
|
|
|
2009-06-01 10:04:36 +00:00
|
|
|
window_get_size_rectangle (child, &visible_rect);
|
2008-06-27 14:27:44 +00:00
|
|
|
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
/* Convert rect to "window" coords */
|
2010-11-22 23:55:39 +00:00
|
|
|
visible_rect.x += child->x - x_offset;
|
|
|
|
visible_rect.y += child->y - y_offset;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
/* This shortcut is really necessary for performance when there are a lot of windows */
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_get_extents (real_clip_region, &real_clip_rect);
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
if (visible_rect.x >= real_clip_rect.x + real_clip_rect.width ||
|
|
|
|
visible_rect.x + visible_rect.width <= real_clip_rect.x ||
|
|
|
|
visible_rect.y >= real_clip_rect.y + real_clip_rect.height ||
|
|
|
|
visible_rect.y + visible_rect.height <= real_clip_rect.y)
|
|
|
|
continue;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-07-19 23:21:38 +00:00
|
|
|
cairo_region_subtract_rectangle (real_clip_region, &visible_rect);
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-23 05:34:14 +00:00
|
|
|
/* Clip to the parent */
|
|
|
|
window_get_size_rectangle ((GdkWindow *)parentwin, &visible_rect);
|
|
|
|
/* Convert rect to "window" coords */
|
|
|
|
visible_rect.x += - x_offset;
|
|
|
|
visible_rect.y += - y_offset;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-07-19 23:21:38 +00:00
|
|
|
cairo_region_intersect_rectangle (real_clip_region, &visible_rect);
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (base_x_offset)
|
|
|
|
*base_x_offset = x_offset;
|
|
|
|
if (base_y_offset)
|
|
|
|
*base_y_offset = y_offset;
|
|
|
|
|
|
|
|
return real_clip_region;
|
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
void
|
|
|
|
_gdk_window_add_damage (GdkWindow *toplevel,
|
2010-06-28 12:54:37 +00:00
|
|
|
cairo_region_t *damaged_region)
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
{
|
|
|
|
GdkDisplay *display;
|
|
|
|
GdkEvent event = { 0, };
|
|
|
|
event.expose.type = GDK_DAMAGE;
|
|
|
|
event.expose.window = toplevel;
|
|
|
|
event.expose.send_event = FALSE;
|
|
|
|
event.expose.region = damaged_region;
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_get_extents (event.expose.region, &event.expose.area);
|
2010-08-29 00:08:47 +00:00
|
|
|
display = gdk_window_get_display (event.expose.window);
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
_gdk_event_queue_append (display, gdk_event_copy (&event));
|
|
|
|
}
|
|
|
|
|
2009-06-08 13:57:59 +00:00
|
|
|
/* Gets the toplevel for a window as used for events,
|
|
|
|
i.e. including offscreen parents */
|
2010-11-22 23:55:39 +00:00
|
|
|
static GdkWindow *
|
|
|
|
get_event_parent (GdkWindow *window)
|
2009-06-08 13:57:59 +00:00
|
|
|
{
|
2010-04-15 11:08:47 +00:00
|
|
|
if (gdk_window_is_offscreen (window))
|
2010-11-22 23:55:39 +00:00
|
|
|
return gdk_offscreen_window_get_embedder ((GdkWindow *)window);
|
2009-06-08 13:57:59 +00:00
|
|
|
else
|
|
|
|
return window->parent;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Gets the toplevel for a window as used for events,
|
|
|
|
i.e. including offscreen parents going up to the native
|
|
|
|
toplevel */
|
|
|
|
static GdkWindow *
|
2010-11-22 23:55:39 +00:00
|
|
|
get_event_toplevel (GdkWindow *window)
|
2009-06-08 13:57:59 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *parent;
|
2009-06-08 13:57:59 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
while ((parent = get_event_parent (window)) != NULL &&
|
2009-07-18 13:04:06 +00:00
|
|
|
(parent->window_type != GDK_WINDOW_ROOT))
|
2010-11-22 23:55:39 +00:00
|
|
|
window = parent;
|
2009-06-08 13:57:59 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window;
|
2009-06-08 13:57:59 +00:00
|
|
|
}
|
|
|
|
|
2009-07-07 03:06:46 +00:00
|
|
|
gboolean
|
|
|
|
_gdk_window_event_parent_of (GdkWindow *parent,
|
|
|
|
GdkWindow *child)
|
2009-06-08 13:57:59 +00:00
|
|
|
{
|
|
|
|
GdkWindow *w;
|
|
|
|
|
|
|
|
w = child;
|
|
|
|
while (w != NULL)
|
|
|
|
{
|
|
|
|
if (w == parent)
|
|
|
|
return TRUE;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
w = get_event_parent (w);
|
2009-06-08 13:57:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-05-25 22:38:44 +00:00
|
|
|
update_cursor (GdkDisplay *display,
|
|
|
|
GdkDevice *device)
|
2009-06-08 13:57:59 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *cursor_window, *parent, *toplevel;
|
2009-09-08 09:48:20 +00:00
|
|
|
GdkWindow *pointer_window;
|
2010-11-22 19:42:00 +00:00
|
|
|
GdkWindowImplClass *impl_class;
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkPointerWindowInfo *pointer_info;
|
|
|
|
GdkDeviceGrabInfo *grab;
|
2010-08-17 13:39:03 +00:00
|
|
|
GdkCursor *cursor;
|
2009-06-08 13:57:59 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
pointer_info = _gdk_display_get_pointer_info (display, device);
|
|
|
|
pointer_window = pointer_info->window_under_pointer;
|
2009-06-08 13:57:59 +00:00
|
|
|
|
|
|
|
/* We ignore the serials here and just pick the last grab
|
|
|
|
we've sent, as that would shortly be used anyway. */
|
2010-05-25 22:38:44 +00:00
|
|
|
grab = _gdk_display_get_last_device_grab (display, device);
|
2009-09-08 09:48:20 +00:00
|
|
|
if (/* have grab */
|
|
|
|
grab != NULL &&
|
|
|
|
/* the pointer is not in a descendant of the grab window */
|
|
|
|
!_gdk_window_event_parent_of (grab->window, pointer_window))
|
2010-05-25 22:38:44 +00:00
|
|
|
{
|
|
|
|
/* use the cursor from the grab window */
|
2010-11-22 23:55:39 +00:00
|
|
|
cursor_window = grab->window;
|
2010-05-25 22:38:44 +00:00
|
|
|
}
|
2009-09-08 09:48:20 +00:00
|
|
|
else
|
2010-05-25 22:38:44 +00:00
|
|
|
{
|
|
|
|
/* otherwise use the cursor from the pointer window */
|
2010-11-22 23:55:39 +00:00
|
|
|
cursor_window = pointer_window;
|
2010-05-25 22:38:44 +00:00
|
|
|
}
|
2009-09-08 09:48:20 +00:00
|
|
|
|
|
|
|
/* Find the first window with the cursor actually set, as
|
|
|
|
the cursor is inherited from the parent */
|
|
|
|
while (cursor_window->cursor == NULL &&
|
|
|
|
(parent = get_event_parent (cursor_window)) != NULL &&
|
|
|
|
parent->window_type != GDK_WINDOW_ROOT)
|
|
|
|
cursor_window = parent;
|
2009-06-08 13:57:59 +00:00
|
|
|
|
2010-08-17 13:39:03 +00:00
|
|
|
cursor = g_hash_table_lookup (cursor_window->device_cursor, device);
|
|
|
|
|
|
|
|
if (!cursor)
|
|
|
|
cursor = cursor_window->cursor;
|
|
|
|
|
2009-06-08 13:57:59 +00:00
|
|
|
/* Set all cursors on toplevel, otherwise its tricky to keep track of
|
|
|
|
* which native window has what cursor set. */
|
2010-11-22 23:55:39 +00:00
|
|
|
toplevel = get_event_toplevel (pointer_window);
|
2010-11-22 19:42:00 +00:00
|
|
|
impl_class = GDK_WINDOW_IMPL_GET_CLASS (toplevel->impl);
|
2010-11-22 23:55:39 +00:00
|
|
|
impl_class->set_device_cursor (toplevel, device, cursor);
|
2009-06-08 13:57:59 +00:00
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
static gboolean
|
2010-11-22 23:55:39 +00:00
|
|
|
point_in_window (GdkWindow *window,
|
|
|
|
gdouble x,
|
|
|
|
gdouble y)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
return
|
2009-06-08 13:57:59 +00:00
|
|
|
x >= 0 && x < window->width &&
|
2008-12-16 19:09:20 +00:00
|
|
|
y >= 0 && y < window->height &&
|
|
|
|
(window->shape == NULL ||
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_contains_point (window->shape,
|
2008-12-17 10:24:46 +00:00
|
|
|
x, y)) &&
|
|
|
|
(window->input_shape == NULL ||
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_contains_point (window->input_shape,
|
2008-12-16 19:09:20 +00:00
|
|
|
x, y));
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
|
2009-02-03 11:24:30 +00:00
|
|
|
static GdkWindow *
|
2009-06-08 13:57:59 +00:00
|
|
|
convert_native_coords_to_toplevel (GdkWindow *window,
|
2009-08-31 04:55:32 +00:00
|
|
|
gdouble child_x,
|
|
|
|
gdouble child_y,
|
|
|
|
gdouble *toplevel_x,
|
|
|
|
gdouble *toplevel_y)
|
2009-02-03 11:24:30 +00:00
|
|
|
{
|
|
|
|
gdouble x, y;
|
|
|
|
|
|
|
|
x = child_x;
|
|
|
|
y = child_y;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
while (!gdk_window_is_toplevel (window))
|
2009-02-03 11:24:30 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
x += window->x;
|
|
|
|
y += window->y;
|
|
|
|
window = window->parent;
|
2009-02-03 11:24:30 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-02-03 11:24:30 +00:00
|
|
|
*toplevel_x = x;
|
|
|
|
*toplevel_y = y;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window;
|
2009-02-03 11:24:30 +00:00
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
static void
|
|
|
|
convert_toplevel_coords_to_window (GdkWindow *window,
|
|
|
|
gdouble toplevel_x,
|
|
|
|
gdouble toplevel_y,
|
|
|
|
gdouble *window_x,
|
|
|
|
gdouble *window_y)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *parent;
|
2008-07-18 13:03:42 +00:00
|
|
|
gdouble x, y;
|
|
|
|
GList *children, *l;
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
x = toplevel_x;
|
|
|
|
y = toplevel_y;
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
children = NULL;
|
2010-11-22 23:55:39 +00:00
|
|
|
while ((parent = get_event_parent (window)) != NULL &&
|
2009-07-18 13:04:06 +00:00
|
|
|
(parent->window_type != GDK_WINDOW_ROOT))
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
children = g_list_prepend (children, window);
|
|
|
|
window = parent;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
for (l = children; l != NULL; l = l->next)
|
2010-04-15 11:16:17 +00:00
|
|
|
gdk_window_coords_from_parent (l->data, x, y, &x, &y);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
g_list_free (children);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
*window_x = x;
|
|
|
|
*window_y = y;
|
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
static GdkWindow *
|
|
|
|
pick_embedded_child (GdkWindow *window,
|
|
|
|
gdouble x,
|
|
|
|
gdouble y)
|
2009-06-08 13:57:59 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *res;
|
2009-06-08 13:57:59 +00:00
|
|
|
|
|
|
|
res = NULL;
|
2009-06-24 18:33:13 +00:00
|
|
|
g_signal_emit (window,
|
2009-07-01 12:36:36 +00:00
|
|
|
signals[PICK_EMBEDDED_CHILD], 0,
|
2009-06-24 18:33:13 +00:00
|
|
|
x, y, &res);
|
2009-06-08 13:57:59 +00:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2009-06-04 16:45:35 +00:00
|
|
|
GdkWindow *
|
|
|
|
_gdk_window_find_child_at (GdkWindow *window,
|
2009-08-31 04:55:32 +00:00
|
|
|
int x,
|
|
|
|
int y)
|
2009-06-04 16:45:35 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *sub;
|
2009-06-04 16:45:35 +00:00
|
|
|
double child_x, child_y;
|
|
|
|
GList *l;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (point_in_window (window, x, y))
|
2009-06-04 16:45:35 +00:00
|
|
|
{
|
|
|
|
/* Children is ordered in reverse stack order, i.e. first is topmost */
|
2010-11-22 23:55:39 +00:00
|
|
|
for (l = window->children; l != NULL; l = l->next)
|
2009-06-04 16:45:35 +00:00
|
|
|
{
|
|
|
|
sub = l->data;
|
|
|
|
|
|
|
|
if (!GDK_WINDOW_IS_MAPPED (sub))
|
|
|
|
continue;
|
|
|
|
|
2010-04-15 11:16:17 +00:00
|
|
|
gdk_window_coords_from_parent ((GdkWindow *)sub,
|
|
|
|
x, y,
|
|
|
|
&child_x, &child_y);
|
2009-06-04 16:45:35 +00:00
|
|
|
if (point_in_window (sub, child_x, child_y))
|
|
|
|
return (GdkWindow *)sub;
|
|
|
|
}
|
2009-06-08 13:57:59 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->num_offscreen_children > 0)
|
2009-06-08 13:57:59 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
sub = pick_embedded_child (window,
|
2009-07-01 12:36:36 +00:00
|
|
|
x, y);
|
2009-06-08 13:57:59 +00:00
|
|
|
if (sub)
|
|
|
|
return (GdkWindow *)sub;
|
|
|
|
}
|
2009-06-04 16:45:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
GdkWindow *
|
2010-11-22 23:55:39 +00:00
|
|
|
_gdk_window_find_descendant_at (GdkWindow *window,
|
2009-08-31 04:55:32 +00:00
|
|
|
gdouble x,
|
|
|
|
gdouble y,
|
|
|
|
gdouble *found_x,
|
|
|
|
gdouble *found_y)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *sub;
|
2009-08-31 04:55:32 +00:00
|
|
|
gdouble child_x, child_y;
|
2008-07-18 13:03:42 +00:00
|
|
|
GList *l;
|
2009-06-08 13:57:59 +00:00
|
|
|
gboolean found;
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (point_in_window (window, x, y))
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2009-06-01 10:04:36 +00:00
|
|
|
do
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2009-06-08 13:57:59 +00:00
|
|
|
found = FALSE;
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Children is ordered in reverse stack order, i.e. first is topmost */
|
2010-11-22 23:55:39 +00:00
|
|
|
for (l = window->children; l != NULL; l = l->next)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
sub = l->data;
|
|
|
|
|
2009-06-01 10:04:36 +00:00
|
|
|
if (!GDK_WINDOW_IS_MAPPED (sub))
|
|
|
|
continue;
|
|
|
|
|
2010-04-15 11:16:17 +00:00
|
|
|
gdk_window_coords_from_parent ((GdkWindow *)sub,
|
|
|
|
x, y,
|
|
|
|
&child_x, &child_y);
|
2008-07-18 13:03:42 +00:00
|
|
|
if (point_in_window (sub, child_x, child_y))
|
|
|
|
{
|
|
|
|
x = child_x;
|
|
|
|
y = child_y;
|
2010-11-22 23:55:39 +00:00
|
|
|
window = sub;
|
2009-06-08 13:57:59 +00:00
|
|
|
found = TRUE;
|
2008-07-18 13:03:42 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2009-06-08 13:57:59 +00:00
|
|
|
if (!found &&
|
2010-11-22 23:55:39 +00:00
|
|
|
window->num_offscreen_children > 0)
|
2009-06-08 13:57:59 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
sub = pick_embedded_child (window,
|
2009-07-01 12:36:36 +00:00
|
|
|
x, y);
|
2009-06-08 13:57:59 +00:00
|
|
|
if (sub)
|
|
|
|
{
|
|
|
|
found = TRUE;
|
2010-11-22 23:55:39 +00:00
|
|
|
window = sub;
|
2009-07-01 12:36:36 +00:00
|
|
|
from_embedder (sub, x, y, &x, &y);
|
2009-06-08 13:57:59 +00:00
|
|
|
}
|
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2009-06-08 13:57:59 +00:00
|
|
|
while (found);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Not in window at all */
|
2010-11-22 23:55:39 +00:00
|
|
|
window = NULL;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (found_x)
|
|
|
|
*found_x = x;
|
|
|
|
if (found_y)
|
|
|
|
*found_y = y;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window;
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
}
|
|
|
|
|
2009-06-11 20:11:48 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_beep:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* Emits a short beep associated to @window in the appropriate
|
|
|
|
* display, if supported. Otherwise, emits a short beep on
|
|
|
|
* the display just as gdk_display_beep().
|
|
|
|
*
|
|
|
|
* Since: 2.12
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_beep (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GdkDisplay *display;
|
|
|
|
GdkWindow *toplevel;
|
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return;
|
|
|
|
|
|
|
|
toplevel = get_event_toplevel (window);
|
2010-08-29 00:08:47 +00:00
|
|
|
display = gdk_window_get_display (window);
|
2009-06-11 20:11:48 +00:00
|
|
|
|
2010-11-25 11:28:08 +00:00
|
|
|
if (toplevel)
|
|
|
|
{
|
2010-12-04 22:25:40 +00:00
|
|
|
if (GDK_WINDOW_IMPL_GET_CLASS (toplevel->impl)->beep (window))
|
2010-11-25 11:28:08 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If windows fail to beep, we beep the display. */
|
|
|
|
gdk_display_beep (display);
|
2009-06-11 20:11:48 +00:00
|
|
|
}
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_set_support_multidevice:
|
|
|
|
* @window: a #GdkWindow.
|
|
|
|
* @support_multidevice: %TRUE to enable multidevice support in @window.
|
|
|
|
*
|
|
|
|
* This function will enable multidevice features in @window.
|
|
|
|
*
|
|
|
|
* Multidevice aware windows will need to handle properly multiple,
|
|
|
|
* per device enter/leave events, device grabs and grab ownerships.
|
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_support_multidevice (GdkWindow *window,
|
|
|
|
gboolean support_multidevice)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->support_multidevice == support_multidevice)
|
2010-05-25 22:38:44 +00:00
|
|
|
return;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
window->support_multidevice = support_multidevice;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
|
|
/* FIXME: What to do if called when some pointers are inside the window ? */
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_get_support_multidevice:
|
|
|
|
* @window: a #GdkWindow.
|
|
|
|
*
|
|
|
|
* Returns %TRUE if the window is aware of the existence of multiple
|
|
|
|
* devices.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the window handles multidevice features.
|
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gdk_window_get_support_multidevice (GdkWindow *window)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), FALSE);
|
|
|
|
|
|
|
|
if (GDK_WINDOW_DESTROYED (window))
|
|
|
|
return FALSE;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
return window->support_multidevice;
|
2010-05-25 22:38:44 +00:00
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
static const guint type_masks[] = {
|
|
|
|
GDK_SUBSTRUCTURE_MASK, /* GDK_DELETE = 0 */
|
|
|
|
GDK_STRUCTURE_MASK, /* GDK_DESTROY = 1 */
|
|
|
|
GDK_EXPOSURE_MASK, /* GDK_EXPOSE = 2 */
|
|
|
|
GDK_POINTER_MOTION_MASK, /* GDK_MOTION_NOTIFY = 3 */
|
|
|
|
GDK_BUTTON_PRESS_MASK, /* GDK_BUTTON_PRESS = 4 */
|
|
|
|
GDK_BUTTON_PRESS_MASK, /* GDK_2BUTTON_PRESS = 5 */
|
|
|
|
GDK_BUTTON_PRESS_MASK, /* GDK_3BUTTON_PRESS = 6 */
|
|
|
|
GDK_BUTTON_RELEASE_MASK, /* GDK_BUTTON_RELEASE = 7 */
|
|
|
|
GDK_KEY_PRESS_MASK, /* GDK_KEY_PRESS = 8 */
|
|
|
|
GDK_KEY_RELEASE_MASK, /* GDK_KEY_RELEASE = 9 */
|
|
|
|
GDK_ENTER_NOTIFY_MASK, /* GDK_ENTER_NOTIFY = 10 */
|
|
|
|
GDK_LEAVE_NOTIFY_MASK, /* GDK_LEAVE_NOTIFY = 11 */
|
|
|
|
GDK_FOCUS_CHANGE_MASK, /* GDK_FOCUS_CHANGE = 12 */
|
|
|
|
GDK_STRUCTURE_MASK, /* GDK_CONFIGURE = 13 */
|
|
|
|
GDK_VISIBILITY_NOTIFY_MASK, /* GDK_MAP = 14 */
|
|
|
|
GDK_VISIBILITY_NOTIFY_MASK, /* GDK_UNMAP = 15 */
|
|
|
|
GDK_PROPERTY_CHANGE_MASK, /* GDK_PROPERTY_NOTIFY = 16 */
|
|
|
|
GDK_PROPERTY_CHANGE_MASK, /* GDK_SELECTION_CLEAR = 17 */
|
|
|
|
GDK_PROPERTY_CHANGE_MASK, /* GDK_SELECTION_REQUEST = 18 */
|
|
|
|
GDK_PROPERTY_CHANGE_MASK, /* GDK_SELECTION_NOTIFY = 19 */
|
|
|
|
GDK_PROXIMITY_IN_MASK, /* GDK_PROXIMITY_IN = 20 */
|
|
|
|
GDK_PROXIMITY_OUT_MASK, /* GDK_PROXIMITY_OUT = 21 */
|
|
|
|
GDK_ALL_EVENTS_MASK, /* GDK_DRAG_ENTER = 22 */
|
|
|
|
GDK_ALL_EVENTS_MASK, /* GDK_DRAG_LEAVE = 23 */
|
|
|
|
GDK_ALL_EVENTS_MASK, /* GDK_DRAG_MOTION = 24 */
|
|
|
|
GDK_ALL_EVENTS_MASK, /* GDK_DRAG_STATUS = 25 */
|
|
|
|
GDK_ALL_EVENTS_MASK, /* GDK_DROP_START = 26 */
|
|
|
|
GDK_ALL_EVENTS_MASK, /* GDK_DROP_FINISHED = 27 */
|
|
|
|
GDK_ALL_EVENTS_MASK, /* GDK_CLIENT_EVENT = 28 */
|
|
|
|
GDK_VISIBILITY_NOTIFY_MASK, /* GDK_VISIBILITY_NOTIFY = 29 */
|
|
|
|
GDK_EXPOSURE_MASK, /* GDK_NO_EXPOSE = 30 */
|
|
|
|
GDK_SCROLL_MASK | GDK_BUTTON_PRESS_MASK,/* GDK_SCROLL= 31 */
|
|
|
|
0, /* GDK_WINDOW_STATE = 32 */
|
|
|
|
0, /* GDK_SETTING = 33 */
|
|
|
|
0, /* GDK_OWNER_CHANGE = 34 */
|
|
|
|
0, /* GDK_GRAB_BROKEN = 35 */
|
|
|
|
0, /* GDK_DAMAGE = 36 */
|
|
|
|
};
|
|
|
|
G_STATIC_ASSERT (G_N_ELEMENTS (type_masks) == GDK_EVENT_LAST);
|
|
|
|
|
|
|
|
/* send motion events if the right buttons are down */
|
|
|
|
static guint
|
|
|
|
update_evmask_for_button_motion (guint evmask,
|
2009-06-01 10:04:36 +00:00
|
|
|
GdkModifierType mask)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
if (evmask & GDK_BUTTON_MOTION_MASK &&
|
|
|
|
mask & (GDK_BUTTON1_MASK |
|
|
|
|
GDK_BUTTON2_MASK |
|
|
|
|
GDK_BUTTON3_MASK |
|
|
|
|
GDK_BUTTON4_MASK |
|
|
|
|
GDK_BUTTON5_MASK))
|
|
|
|
evmask |= GDK_POINTER_MOTION_MASK;
|
|
|
|
|
|
|
|
if ((evmask & GDK_BUTTON1_MOTION_MASK && mask & GDK_BUTTON1_MASK) ||
|
|
|
|
(evmask & GDK_BUTTON2_MOTION_MASK && mask & GDK_BUTTON2_MASK) ||
|
|
|
|
(evmask & GDK_BUTTON3_MOTION_MASK && mask & GDK_BUTTON3_MASK))
|
|
|
|
evmask |= GDK_POINTER_MOTION_MASK;
|
|
|
|
|
|
|
|
return evmask;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
is_button_type (GdkEventType type)
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
{
|
2008-07-18 13:03:42 +00:00
|
|
|
return type == GDK_BUTTON_PRESS ||
|
2009-06-01 10:04:36 +00:00
|
|
|
type == GDK_2BUTTON_PRESS ||
|
|
|
|
type == GDK_3BUTTON_PRESS ||
|
|
|
|
type == GDK_BUTTON_RELEASE ||
|
|
|
|
type == GDK_SCROLL;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
is_motion_type (GdkEventType type)
|
|
|
|
{
|
|
|
|
return type == GDK_MOTION_NOTIFY ||
|
2009-06-01 10:04:36 +00:00
|
|
|
type == GDK_ENTER_NOTIFY ||
|
|
|
|
type == GDK_LEAVE_NOTIFY;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
static GdkWindow *
|
|
|
|
find_common_ancestor (GdkWindow *win1,
|
|
|
|
GdkWindow *win2)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *tmp;
|
2008-07-18 13:03:42 +00:00
|
|
|
GList *path1 = NULL, *path2 = NULL;
|
|
|
|
GList *list1, *list2;
|
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
tmp = win1;
|
2008-07-18 13:03:42 +00:00
|
|
|
while (tmp != NULL && tmp->window_type != GDK_WINDOW_ROOT)
|
|
|
|
{
|
|
|
|
path1 = g_list_prepend (path1, tmp);
|
2009-06-08 13:57:59 +00:00
|
|
|
tmp = get_event_parent (tmp);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
tmp = win2;
|
2008-07-18 13:03:42 +00:00
|
|
|
while (tmp != NULL && tmp->window_type != GDK_WINDOW_ROOT)
|
|
|
|
{
|
|
|
|
path2 = g_list_prepend (path2, tmp);
|
2009-06-08 13:57:59 +00:00
|
|
|
tmp = get_event_parent (tmp);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
list1 = path1;
|
|
|
|
list2 = path2;
|
|
|
|
tmp = NULL;
|
|
|
|
while (list1 && list2 && (list1->data == list2->data))
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
tmp = list1->data;
|
2008-07-18 13:03:42 +00:00
|
|
|
list1 = g_list_next (list1);
|
|
|
|
list2 = g_list_next (list2);
|
|
|
|
}
|
|
|
|
g_list_free (path1);
|
|
|
|
g_list_free (path2);
|
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
return tmp;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GdkEvent *
|
|
|
|
_gdk_make_event (GdkWindow *window,
|
|
|
|
GdkEventType type,
|
|
|
|
GdkEvent *event_in_queue,
|
|
|
|
gboolean before_event)
|
|
|
|
{
|
|
|
|
GdkEvent *event = gdk_event_new (type);
|
|
|
|
guint32 the_time;
|
|
|
|
GdkModifierType the_state;
|
|
|
|
|
|
|
|
the_time = gdk_event_get_time (event_in_queue);
|
|
|
|
gdk_event_get_state (event_in_queue, &the_state);
|
|
|
|
|
|
|
|
event->any.window = g_object_ref (window);
|
|
|
|
event->any.send_event = FALSE;
|
2009-08-26 08:34:15 +00:00
|
|
|
if (event_in_queue && event_in_queue->any.send_event)
|
|
|
|
event->any.send_event = TRUE;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case GDK_MOTION_NOTIFY:
|
|
|
|
event->motion.time = the_time;
|
|
|
|
event->motion.axes = NULL;
|
|
|
|
event->motion.state = the_state;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_BUTTON_PRESS:
|
|
|
|
case GDK_2BUTTON_PRESS:
|
|
|
|
case GDK_3BUTTON_PRESS:
|
|
|
|
case GDK_BUTTON_RELEASE:
|
|
|
|
event->button.time = the_time;
|
|
|
|
event->button.axes = NULL;
|
|
|
|
event->button.state = the_state;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_SCROLL:
|
|
|
|
event->scroll.time = the_time;
|
|
|
|
event->scroll.state = the_state;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_KEY_PRESS:
|
|
|
|
case GDK_KEY_RELEASE:
|
|
|
|
event->key.time = the_time;
|
|
|
|
event->key.state = the_state;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_ENTER_NOTIFY:
|
|
|
|
case GDK_LEAVE_NOTIFY:
|
|
|
|
event->crossing.time = the_time;
|
|
|
|
event->crossing.state = the_state;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_PROPERTY_NOTIFY:
|
|
|
|
event->property.time = the_time;
|
|
|
|
event->property.state = the_state;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_SELECTION_CLEAR:
|
|
|
|
case GDK_SELECTION_REQUEST:
|
|
|
|
case GDK_SELECTION_NOTIFY:
|
|
|
|
event->selection.time = the_time;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_PROXIMITY_IN:
|
|
|
|
case GDK_PROXIMITY_OUT:
|
|
|
|
event->proximity.time = the_time;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_DRAG_ENTER:
|
|
|
|
case GDK_DRAG_LEAVE:
|
|
|
|
case GDK_DRAG_MOTION:
|
|
|
|
case GDK_DRAG_STATUS:
|
|
|
|
case GDK_DROP_START:
|
|
|
|
case GDK_DROP_FINISHED:
|
|
|
|
event->dnd.time = the_time;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GDK_FOCUS_CHANGE:
|
|
|
|
case GDK_CONFIGURE:
|
|
|
|
case GDK_MAP:
|
|
|
|
case GDK_UNMAP:
|
|
|
|
case GDK_CLIENT_EVENT:
|
|
|
|
case GDK_VISIBILITY_NOTIFY:
|
|
|
|
case GDK_DELETE:
|
|
|
|
case GDK_DESTROY:
|
|
|
|
case GDK_EXPOSE:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (event_in_queue)
|
|
|
|
{
|
|
|
|
if (before_event)
|
2010-08-29 00:08:47 +00:00
|
|
|
_gdk_event_queue_insert_before (gdk_window_get_display (window), event_in_queue, event);
|
2008-07-18 13:03:42 +00:00
|
|
|
else
|
2010-08-29 00:08:47 +00:00
|
|
|
_gdk_event_queue_insert_after (gdk_window_get_display (window), event_in_queue, event);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
else
|
2010-08-29 00:08:47 +00:00
|
|
|
_gdk_event_queue_append (gdk_window_get_display (window), event);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
return event;
|
|
|
|
}
|
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
static void
|
|
|
|
send_crossing_event (GdkDisplay *display,
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *toplevel,
|
|
|
|
GdkWindow *window,
|
2008-12-15 09:24:54 +00:00
|
|
|
GdkEventType type,
|
|
|
|
GdkCrossingMode mode,
|
|
|
|
GdkNotifyType notify_type,
|
|
|
|
GdkWindow *subwindow,
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkDevice *device,
|
2010-12-13 01:12:43 +00:00
|
|
|
GdkDevice *source_device,
|
2008-12-15 09:24:54 +00:00
|
|
|
gint toplevel_x,
|
|
|
|
gint toplevel_y,
|
|
|
|
GdkModifierType mask,
|
|
|
|
guint32 time_,
|
2009-01-31 18:42:44 +00:00
|
|
|
GdkEvent *event_in_queue,
|
|
|
|
gulong serial)
|
2008-12-15 09:24:54 +00:00
|
|
|
{
|
|
|
|
GdkEvent *event;
|
2009-09-15 12:39:04 +00:00
|
|
|
guint32 window_event_mask, type_event_mask;
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkDeviceGrabInfo *grab;
|
|
|
|
gboolean block_event = FALSE;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
grab = _gdk_display_has_device_grab (display, device, serial);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-31 18:42:44 +00:00
|
|
|
if (grab != NULL &&
|
2009-09-15 12:39:04 +00:00
|
|
|
!grab->owner_events)
|
|
|
|
{
|
|
|
|
/* !owner_event => only report events wrt grab window, ignore rest */
|
|
|
|
if ((GdkWindow *)window != grab->window)
|
|
|
|
return;
|
|
|
|
window_event_mask = grab->event_mask;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
window_event_mask = window->event_mask;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
if (type == GDK_LEAVE_NOTIFY)
|
2010-05-25 22:38:44 +00:00
|
|
|
{
|
|
|
|
type_event_mask = GDK_LEAVE_NOTIFY_MASK;
|
|
|
|
window->devices_inside = g_list_remove (window->devices_inside, device);
|
2008-12-15 09:24:54 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
if (!window->support_multidevice && window->devices_inside)
|
|
|
|
{
|
|
|
|
/* Block leave events unless it's the last pointer */
|
|
|
|
block_event = TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2009-08-31 08:44:11 +00:00
|
|
|
{
|
2010-05-25 22:38:44 +00:00
|
|
|
type_event_mask = GDK_ENTER_NOTIFY_MASK;
|
|
|
|
|
|
|
|
if (!window->support_multidevice && window->devices_inside)
|
|
|
|
{
|
|
|
|
/* Only emit enter events for the first device */
|
|
|
|
block_event = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (gdk_device_get_device_type (device) == GDK_DEVICE_TYPE_MASTER &&
|
2010-11-23 19:25:13 +00:00
|
|
|
gdk_device_get_mode (device) != GDK_MODE_DISABLED &&
|
2010-05-25 22:38:44 +00:00
|
|
|
!g_list_find (window->devices_inside, device))
|
|
|
|
window->devices_inside = g_list_prepend (window->devices_inside, device);
|
2009-08-31 08:44:11 +00:00
|
|
|
}
|
2009-05-29 14:39:12 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
if (block_event)
|
|
|
|
return;
|
|
|
|
|
2009-09-15 12:39:04 +00:00
|
|
|
if (window_event_mask & type_event_mask)
|
2008-12-15 09:24:54 +00:00
|
|
|
{
|
2008-12-15 12:38:41 +00:00
|
|
|
event = _gdk_make_event ((GdkWindow *)window, type, event_in_queue, TRUE);
|
2010-05-25 22:38:44 +00:00
|
|
|
gdk_event_set_device (event, device);
|
2010-12-13 01:12:43 +00:00
|
|
|
|
|
|
|
if (source_device)
|
|
|
|
gdk_event_set_source_device (event, source_device);
|
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
event->crossing.time = time_;
|
|
|
|
event->crossing.subwindow = subwindow;
|
|
|
|
if (subwindow)
|
|
|
|
g_object_ref (subwindow);
|
|
|
|
convert_toplevel_coords_to_window ((GdkWindow *)window,
|
|
|
|
toplevel_x, toplevel_y,
|
|
|
|
&event->crossing.x, &event->crossing.y);
|
|
|
|
event->crossing.x_root = toplevel_x + toplevel->x;
|
|
|
|
event->crossing.y_root = toplevel_y + toplevel->y;
|
|
|
|
event->crossing.mode = mode;
|
|
|
|
event->crossing.detail = notify_type;
|
|
|
|
event->crossing.focus = FALSE;
|
|
|
|
event->crossing.state = mask;
|
|
|
|
}
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* The coordinates are in the toplevel window that src/dest are in.
|
|
|
|
* src and dest are always (if != NULL) in the same toplevel, as
|
|
|
|
* we get a leave-notify and set the window_under_pointer to null
|
|
|
|
* before crossing to another toplevel.
|
|
|
|
*/
|
|
|
|
void
|
2009-06-18 18:58:13 +00:00
|
|
|
_gdk_synthesize_crossing_events (GdkDisplay *display,
|
2009-07-09 14:48:22 +00:00
|
|
|
GdkWindow *src,
|
|
|
|
GdkWindow *dest,
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkDevice *device,
|
2010-12-13 01:12:43 +00:00
|
|
|
GdkDevice *source_device,
|
2009-07-09 14:48:22 +00:00
|
|
|
GdkCrossingMode mode,
|
|
|
|
gint toplevel_x,
|
|
|
|
gint toplevel_y,
|
|
|
|
GdkModifierType mask,
|
|
|
|
guint32 time_,
|
|
|
|
GdkEvent *event_in_queue,
|
|
|
|
gulong serial,
|
|
|
|
gboolean non_linear)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *c;
|
|
|
|
GdkWindow *win, *last, *next;
|
2008-07-18 13:03:42 +00:00
|
|
|
GList *path, *list;
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *a;
|
|
|
|
GdkWindow *b;
|
|
|
|
GdkWindow *toplevel;
|
2008-12-15 09:24:54 +00:00
|
|
|
GdkNotifyType notify_type;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
/* TODO: Don't send events to toplevel, as we get those from the windowing system */
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
a = src;
|
|
|
|
b = dest;
|
|
|
|
if (src == dest)
|
2008-07-18 13:03:42 +00:00
|
|
|
return; /* No crossings generated between src and dest */
|
2008-12-04 14:20:19 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
if (gdk_device_get_device_type (device) != GDK_DEVICE_TYPE_MASTER)
|
|
|
|
{
|
|
|
|
if (a && gdk_window_get_device_events (src, device) == 0)
|
|
|
|
a = NULL;
|
|
|
|
|
|
|
|
if (b && gdk_window_get_device_events (dest, device) == 0)
|
|
|
|
b = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!a && !b)
|
|
|
|
return;
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
c = find_common_ancestor (a, b);
|
2008-12-15 09:24:54 +00:00
|
|
|
|
2009-07-09 14:48:22 +00:00
|
|
|
non_linear |= (c != a) && (c != b);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
if (a) /* There might not be a source (i.e. if no previous pointer_in_window) */
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
toplevel = gdk_window_get_toplevel (a);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Traverse up from a to (excluding) c sending leave events */
|
2008-12-15 09:24:54 +00:00
|
|
|
if (non_linear)
|
|
|
|
notify_type = GDK_NOTIFY_NONLINEAR;
|
|
|
|
else if (c == a)
|
|
|
|
notify_type = GDK_NOTIFY_INFERIOR;
|
|
|
|
else
|
|
|
|
notify_type = GDK_NOTIFY_ANCESTOR;
|
|
|
|
send_crossing_event (display, toplevel,
|
|
|
|
a, GDK_LEAVE_NOTIFY,
|
|
|
|
mode,
|
|
|
|
notify_type,
|
2010-12-13 01:12:43 +00:00
|
|
|
NULL, device, source_device,
|
2008-12-15 09:24:54 +00:00
|
|
|
toplevel_x, toplevel_y,
|
|
|
|
mask, time_,
|
2009-01-31 18:42:44 +00:00
|
|
|
event_in_queue,
|
|
|
|
serial);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
if (c != a)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
if (non_linear)
|
2008-12-15 09:24:54 +00:00
|
|
|
notify_type = GDK_NOTIFY_NONLINEAR_VIRTUAL;
|
2008-07-18 13:03:42 +00:00
|
|
|
else
|
2008-12-15 09:24:54 +00:00
|
|
|
notify_type = GDK_NOTIFY_VIRTUAL;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
last = a;
|
2009-06-08 13:57:59 +00:00
|
|
|
win = get_event_parent (a);
|
2009-07-18 13:04:06 +00:00
|
|
|
while (win != c && win->window_type != GDK_WINDOW_ROOT)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2008-12-15 09:24:54 +00:00
|
|
|
send_crossing_event (display, toplevel,
|
|
|
|
win, GDK_LEAVE_NOTIFY,
|
|
|
|
mode,
|
|
|
|
notify_type,
|
|
|
|
(GdkWindow *)last,
|
2010-12-13 01:12:43 +00:00
|
|
|
device, source_device,
|
2008-12-15 09:24:54 +00:00
|
|
|
toplevel_x, toplevel_y,
|
|
|
|
mask, time_,
|
2009-01-31 18:42:44 +00:00
|
|
|
event_in_queue,
|
|
|
|
serial);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
last = win;
|
2009-06-08 13:57:59 +00:00
|
|
|
win = get_event_parent (win);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (b) /* Might not be a dest, e.g. if we're moving out of the window */
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
toplevel = gdk_window_get_toplevel ((GdkWindow *)b);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
/* Traverse down from c to b */
|
|
|
|
if (c != b)
|
|
|
|
{
|
|
|
|
path = NULL;
|
2009-06-08 13:57:59 +00:00
|
|
|
win = get_event_parent (b);
|
2009-07-18 13:04:06 +00:00
|
|
|
while (win != c && win->window_type != GDK_WINDOW_ROOT)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
path = g_list_prepend (path, win);
|
2009-06-08 13:57:59 +00:00
|
|
|
win = get_event_parent (win);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
if (non_linear)
|
|
|
|
notify_type = GDK_NOTIFY_NONLINEAR_VIRTUAL;
|
|
|
|
else
|
|
|
|
notify_type = GDK_NOTIFY_VIRTUAL;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
list = path;
|
|
|
|
while (list)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
win = list->data;
|
2008-07-18 13:03:42 +00:00
|
|
|
list = g_list_next (list);
|
|
|
|
if (list)
|
2010-11-22 23:55:39 +00:00
|
|
|
next = list->data;
|
2008-07-18 13:03:42 +00:00
|
|
|
else
|
|
|
|
next = b;
|
2008-12-15 09:24:54 +00:00
|
|
|
|
|
|
|
send_crossing_event (display, toplevel,
|
|
|
|
win, GDK_ENTER_NOTIFY,
|
|
|
|
mode,
|
|
|
|
notify_type,
|
|
|
|
(GdkWindow *)next,
|
2010-12-13 01:12:43 +00:00
|
|
|
device, source_device,
|
2008-12-15 09:24:54 +00:00
|
|
|
toplevel_x, toplevel_y,
|
|
|
|
mask, time_,
|
2009-01-31 18:42:44 +00:00
|
|
|
event_in_queue,
|
|
|
|
serial);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
g_list_free (path);
|
|
|
|
}
|
2008-12-15 09:24:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
if (non_linear)
|
|
|
|
notify_type = GDK_NOTIFY_NONLINEAR;
|
|
|
|
else if (c == a)
|
|
|
|
notify_type = GDK_NOTIFY_ANCESTOR;
|
|
|
|
else
|
|
|
|
notify_type = GDK_NOTIFY_INFERIOR;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
send_crossing_event (display, toplevel,
|
|
|
|
b, GDK_ENTER_NOTIFY,
|
|
|
|
mode,
|
|
|
|
notify_type,
|
|
|
|
NULL,
|
2010-12-13 01:12:43 +00:00
|
|
|
device, source_device,
|
2008-12-15 09:24:54 +00:00
|
|
|
toplevel_x, toplevel_y,
|
|
|
|
mask, time_,
|
2009-01-31 18:42:44 +00:00
|
|
|
event_in_queue,
|
|
|
|
serial);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
/* Returns the window inside the event window with the pointer in it
|
|
|
|
* at the specified coordinates, or NULL if its not in any child of
|
|
|
|
* the toplevel. It also takes into account !owner_events grabs.
|
|
|
|
*/
|
|
|
|
static GdkWindow *
|
|
|
|
get_pointer_window (GdkDisplay *display,
|
|
|
|
GdkWindow *event_window,
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkDevice *device,
|
2008-12-15 09:24:54 +00:00
|
|
|
gdouble toplevel_x,
|
2009-01-31 18:42:44 +00:00
|
|
|
gdouble toplevel_y,
|
|
|
|
gulong serial)
|
2008-12-15 09:24:54 +00:00
|
|
|
{
|
|
|
|
GdkWindow *pointer_window;
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkDeviceGrabInfo *grab;
|
|
|
|
GdkPointerWindowInfo *pointer_info;
|
|
|
|
|
|
|
|
pointer_info = _gdk_display_get_pointer_info (display, device);
|
2008-12-15 09:24:54 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
if (event_window == pointer_info->toplevel_under_pointer)
|
2008-12-15 09:24:54 +00:00
|
|
|
pointer_window =
|
|
|
|
_gdk_window_find_descendant_at (event_window,
|
|
|
|
toplevel_x, toplevel_y,
|
|
|
|
NULL, NULL);
|
|
|
|
else
|
|
|
|
pointer_window = NULL;
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
grab = _gdk_display_has_device_grab (display, device, serial);
|
2009-01-31 18:42:44 +00:00
|
|
|
if (grab != NULL &&
|
|
|
|
!grab->owner_events &&
|
|
|
|
pointer_window != grab->window)
|
2008-12-15 09:24:54 +00:00
|
|
|
pointer_window = NULL;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
return pointer_window;
|
|
|
|
}
|
|
|
|
|
2008-12-15 13:02:52 +00:00
|
|
|
void
|
|
|
|
_gdk_display_set_window_under_pointer (GdkDisplay *display,
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkDevice *device,
|
|
|
|
GdkWindow *window)
|
2008-12-15 09:24:54 +00:00
|
|
|
{
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkPointerWindowInfo *device_info;
|
|
|
|
|
2009-08-24 13:18:10 +00:00
|
|
|
/* We don't track this if all native, and it can cause issues
|
|
|
|
with the update_cursor call below */
|
|
|
|
if (_gdk_native_windows)
|
|
|
|
return;
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
device_info = _gdk_display_get_pointer_info (display, device);
|
|
|
|
|
|
|
|
if (device_info->window_under_pointer)
|
|
|
|
g_object_unref (device_info->window_under_pointer);
|
|
|
|
device_info->window_under_pointer = window;
|
2008-12-15 13:02:52 +00:00
|
|
|
|
|
|
|
if (window)
|
2010-05-25 22:38:44 +00:00
|
|
|
{
|
|
|
|
g_object_ref (window);
|
|
|
|
update_cursor (display, device);
|
|
|
|
}
|
2009-01-23 12:04:44 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
_gdk_display_enable_motion_hints (display, device);
|
2008-12-15 09:24:54 +00:00
|
|
|
}
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_pointer_grab:
|
|
|
|
* @window: the #GdkWindow which will own the grab (the grab window).
|
|
|
|
* @owner_events: if %FALSE then all pointer events are reported with respect to
|
|
|
|
* @window and are only reported if selected by @event_mask. If %TRUE then pointer
|
|
|
|
* events for this application are reported as normal, but pointer events outside
|
|
|
|
* this application are reported with respect to @window and only if selected by
|
|
|
|
* @event_mask. In either mode, unreported events are discarded.
|
|
|
|
* @event_mask: specifies the event mask, which is used in accordance with
|
|
|
|
* @owner_events. Note that only pointer events (i.e. button and motion events)
|
|
|
|
* may be selected.
|
|
|
|
* @confine_to: If non-%NULL, the pointer will be confined to this
|
|
|
|
* window during the grab. If the pointer is outside @confine_to, it will
|
|
|
|
* automatically be moved to the closest edge of @confine_to and enter
|
|
|
|
* and leave events will be generated as necessary.
|
|
|
|
* @cursor: the cursor to display while the grab is active. If this is %NULL then
|
|
|
|
* the normal cursors are used for @window and its descendants, and the cursor
|
|
|
|
* for @window is used for all other windows.
|
|
|
|
* @time_: the timestamp of the event which led to this pointer grab. This usually
|
|
|
|
* comes from a #GdkEventButton struct, though %GDK_CURRENT_TIME can be used if
|
|
|
|
* the time isn't known.
|
|
|
|
*
|
|
|
|
* Grabs the pointer (usually a mouse) so that all events are passed to this
|
|
|
|
* application until the pointer is ungrabbed with gdk_pointer_ungrab(), or
|
|
|
|
* the grab window becomes unviewable.
|
|
|
|
* This overrides any previous pointer grab by this client.
|
|
|
|
*
|
|
|
|
* Pointer grabs are used for operations which need complete control over mouse
|
|
|
|
* events, even if the mouse leaves the application.
|
|
|
|
* For example in GTK+ it is used for Drag and Drop, for dragging the handle in
|
2010-11-15 03:58:21 +00:00
|
|
|
* the #GtkHPaned and #GtkVPaned widgets.
|
2010-05-25 22:38:44 +00:00
|
|
|
*
|
|
|
|
* Note that if the event mask of an X window has selected both button press and
|
|
|
|
* button release events, then a button press event will cause an automatic
|
|
|
|
* pointer grab until the button is released.
|
|
|
|
* X does this automatically since most applications expect to receive button
|
|
|
|
* press and release events in pairs.
|
|
|
|
* It is equivalent to a pointer grab on the window with @owner_events set to
|
|
|
|
* %TRUE.
|
|
|
|
*
|
|
|
|
* If you set up anything at the time you take the grab that needs to be cleaned
|
|
|
|
* up when the grab ends, you should handle the #GdkEventGrabBroken events that
|
|
|
|
* are emitted when the grab ends unvoluntarily.
|
|
|
|
*
|
|
|
|
* Returns: %GDK_GRAB_SUCCESS if the grab was successful.
|
|
|
|
*
|
2010-05-27 13:37:19 +00:00
|
|
|
* Deprecated: 3.0: Use gdk_device_grab() instead.
|
2010-05-25 22:38:44 +00:00
|
|
|
**/
|
2009-06-05 12:50:58 +00:00
|
|
|
GdkGrabStatus
|
|
|
|
gdk_pointer_grab (GdkWindow * window,
|
|
|
|
gboolean owner_events,
|
|
|
|
GdkEventMask event_mask,
|
|
|
|
GdkWindow * confine_to,
|
|
|
|
GdkCursor * cursor,
|
|
|
|
guint32 time)
|
|
|
|
{
|
|
|
|
GdkWindow *native;
|
|
|
|
GdkDisplay *display;
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkDeviceManager *device_manager;
|
|
|
|
GdkDevice *device;
|
|
|
|
GdkGrabStatus res = 0;
|
2009-06-05 12:50:58 +00:00
|
|
|
gulong serial;
|
2010-05-25 22:38:44 +00:00
|
|
|
GList *devices, *dev;
|
2009-06-05 12:50:58 +00:00
|
|
|
|
|
|
|
g_return_val_if_fail (window != NULL, 0);
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), 0);
|
|
|
|
g_return_val_if_fail (confine_to == NULL || GDK_IS_WINDOW (confine_to), 0);
|
|
|
|
|
|
|
|
/* We need a native window for confine to to work, ensure we have one */
|
|
|
|
if (confine_to)
|
|
|
|
{
|
|
|
|
if (!gdk_window_ensure_native (confine_to))
|
|
|
|
{
|
|
|
|
g_warning ("Can't confine to grabbed window, not native");
|
|
|
|
confine_to = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Non-viewable client side window => fail */
|
|
|
|
if (!_gdk_window_has_impl (window) &&
|
|
|
|
!gdk_window_is_viewable (window))
|
|
|
|
return GDK_GRAB_NOT_VIEWABLE;
|
|
|
|
|
2009-08-24 13:18:10 +00:00
|
|
|
if (_gdk_native_windows)
|
|
|
|
native = window;
|
|
|
|
else
|
|
|
|
native = gdk_window_get_toplevel (window);
|
2010-11-22 23:55:39 +00:00
|
|
|
while (gdk_window_is_offscreen (native))
|
2009-06-05 12:50:58 +00:00
|
|
|
{
|
2009-07-01 12:36:36 +00:00
|
|
|
native = gdk_offscreen_window_get_embedder (native);
|
2009-06-05 12:50:58 +00:00
|
|
|
|
|
|
|
if (native == NULL ||
|
|
|
|
(!_gdk_window_has_impl (native) &&
|
|
|
|
!gdk_window_is_viewable (native)))
|
|
|
|
return GDK_GRAB_NOT_VIEWABLE;
|
|
|
|
|
|
|
|
native = gdk_window_get_toplevel (native);
|
|
|
|
}
|
|
|
|
|
2010-08-29 00:08:47 +00:00
|
|
|
display = gdk_window_get_display (window);
|
2009-06-05 12:50:58 +00:00
|
|
|
|
2010-12-13 19:05:59 +00:00
|
|
|
serial = _gdk_display_get_next_serial (display);
|
2010-05-25 22:38:44 +00:00
|
|
|
device_manager = gdk_display_get_device_manager (display);
|
|
|
|
devices = gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_MASTER);
|
|
|
|
|
|
|
|
/* FIXME: Should this be generic to all backends? */
|
|
|
|
/* FIXME: What happens with extended devices? */
|
|
|
|
for (dev = devices; dev; dev = dev->next)
|
|
|
|
{
|
|
|
|
device = dev->data;
|
|
|
|
|
2010-11-23 19:25:13 +00:00
|
|
|
if (gdk_device_get_source (device) != GDK_SOURCE_MOUSE)
|
2010-05-25 22:38:44 +00:00
|
|
|
continue;
|
|
|
|
|
2010-12-10 17:13:25 +00:00
|
|
|
res = GDK_DEVICE_GET_CLASS (device)->grab (device,
|
|
|
|
native,
|
|
|
|
owner_events,
|
|
|
|
get_native_grab_event_mask (event_mask),
|
|
|
|
confine_to,
|
|
|
|
cursor,
|
|
|
|
time);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
|
|
if (res == GDK_GRAB_SUCCESS)
|
|
|
|
_gdk_display_add_device_grab (display,
|
|
|
|
device,
|
|
|
|
window,
|
|
|
|
native,
|
|
|
|
GDK_OWNERSHIP_NONE,
|
|
|
|
owner_events,
|
|
|
|
event_mask,
|
|
|
|
serial,
|
|
|
|
time,
|
|
|
|
FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: handle errors when grabbing */
|
|
|
|
|
|
|
|
g_list_free (devices);
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_keyboard_grab:
|
|
|
|
* @window: the #GdkWindow which will own the grab (the grab window).
|
|
|
|
* @owner_events: if %FALSE then all keyboard events are reported with respect to
|
2010-11-15 03:58:21 +00:00
|
|
|
* @window. If %TRUE then keyboard events for this application are
|
|
|
|
* reported as normal, but keyboard events outside this application
|
|
|
|
* are reported with respect to @window. Both key press and key
|
|
|
|
* release events are always reported, independant of the event mask
|
|
|
|
* set by the application.
|
|
|
|
* @time_: a timestamp from a #GdkEvent, or %GDK_CURRENT_TIME if no timestamp is
|
|
|
|
* available.
|
2010-05-25 22:38:44 +00:00
|
|
|
*
|
|
|
|
* Grabs the keyboard so that all events are passed to this
|
|
|
|
* application until the keyboard is ungrabbed with gdk_keyboard_ungrab().
|
|
|
|
* This overrides any previous keyboard grab by this client.
|
|
|
|
*
|
|
|
|
* If you set up anything at the time you take the grab that needs to be cleaned
|
|
|
|
* up when the grab ends, you should handle the #GdkEventGrabBroken events that
|
|
|
|
* are emitted when the grab ends unvoluntarily.
|
|
|
|
*
|
|
|
|
* Returns: %GDK_GRAB_SUCCESS if the grab was successful.
|
|
|
|
*
|
2010-05-27 13:37:19 +00:00
|
|
|
* Deprecated: 3.0: Use gdk_device_grab() instead.
|
2010-05-25 22:38:44 +00:00
|
|
|
**/
|
|
|
|
GdkGrabStatus
|
|
|
|
gdk_keyboard_grab (GdkWindow *window,
|
|
|
|
gboolean owner_events,
|
|
|
|
guint32 time)
|
|
|
|
{
|
|
|
|
GdkWindow *native;
|
|
|
|
GdkDisplay *display;
|
|
|
|
GdkDeviceManager *device_manager;
|
|
|
|
GdkDevice *device;
|
|
|
|
GdkGrabStatus res = 0;
|
|
|
|
gulong serial;
|
|
|
|
GList *devices, *dev;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), 0);
|
|
|
|
|
|
|
|
/* Non-viewable client side window => fail */
|
|
|
|
if (!_gdk_window_has_impl (window) &&
|
|
|
|
!gdk_window_is_viewable (window))
|
|
|
|
return GDK_GRAB_NOT_VIEWABLE;
|
|
|
|
|
|
|
|
if (_gdk_native_windows)
|
|
|
|
native = window;
|
|
|
|
else
|
|
|
|
native = gdk_window_get_toplevel (window);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
while (gdk_window_is_offscreen (native))
|
2010-05-25 22:38:44 +00:00
|
|
|
{
|
|
|
|
native = gdk_offscreen_window_get_embedder (native);
|
|
|
|
|
|
|
|
if (native == NULL ||
|
|
|
|
(!_gdk_window_has_impl (native) &&
|
|
|
|
!gdk_window_is_viewable (native)))
|
|
|
|
return GDK_GRAB_NOT_VIEWABLE;
|
|
|
|
|
|
|
|
native = gdk_window_get_toplevel (native);
|
|
|
|
}
|
|
|
|
|
2010-08-29 00:08:47 +00:00
|
|
|
display = gdk_window_get_display (window);
|
2010-12-13 19:05:59 +00:00
|
|
|
serial = _gdk_display_get_next_serial (display);
|
2010-05-25 22:38:44 +00:00
|
|
|
device_manager = gdk_display_get_device_manager (display);
|
|
|
|
devices = gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_MASTER);
|
|
|
|
|
|
|
|
/* FIXME: Should this be generic to all backends? */
|
|
|
|
/* FIXME: What happens with extended devices? */
|
|
|
|
for (dev = devices; dev; dev = dev->next)
|
|
|
|
{
|
|
|
|
device = dev->data;
|
|
|
|
|
2010-11-23 19:25:13 +00:00
|
|
|
if (gdk_device_get_source (device) != GDK_SOURCE_KEYBOARD)
|
2010-05-25 22:38:44 +00:00
|
|
|
continue;
|
2009-06-05 12:50:58 +00:00
|
|
|
|
2010-12-10 17:13:25 +00:00
|
|
|
res = GDK_DEVICE_GET_CLASS (device)->grab (device,
|
|
|
|
native,
|
|
|
|
owner_events,
|
|
|
|
GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
time);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
|
|
if (res == GDK_GRAB_SUCCESS)
|
|
|
|
_gdk_display_add_device_grab (display,
|
|
|
|
device,
|
|
|
|
window,
|
|
|
|
native,
|
|
|
|
GDK_OWNERSHIP_NONE,
|
|
|
|
owner_events, 0,
|
|
|
|
serial,
|
|
|
|
time,
|
|
|
|
FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* FIXME: handle errors when grabbing */
|
|
|
|
|
|
|
|
g_list_free (devices);
|
2009-06-05 12:50:58 +00:00
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2009-07-03 19:17:26 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_geometry_changed:
|
2009-08-31 23:51:19 +00:00
|
|
|
* @window: an embedded offscreen #GdkWindow
|
|
|
|
*
|
|
|
|
* This function informs GDK that the geometry of an embedded
|
|
|
|
* offscreen window has changed. This is necessary for GDK to keep
|
|
|
|
* track of which offscreen window the pointer is in.
|
2009-07-03 19:17:26 +00:00
|
|
|
*
|
|
|
|
* Since: 2.18
|
|
|
|
*/
|
2009-06-04 18:15:29 +00:00
|
|
|
void
|
2009-07-01 12:36:36 +00:00
|
|
|
gdk_window_geometry_changed (GdkWindow *window)
|
2009-06-11 10:06:01 +00:00
|
|
|
{
|
2009-06-18 18:58:13 +00:00
|
|
|
_gdk_synthesize_crossing_events_for_geometry_change (window);
|
2009-06-11 10:06:01 +00:00
|
|
|
}
|
2009-06-04 18:15:29 +00:00
|
|
|
|
2010-12-13 11:28:18 +00:00
|
|
|
static void
|
|
|
|
source_events_device_added (GdkDeviceManager *device_manager,
|
|
|
|
GdkDevice *device,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GdkWindow *window;
|
|
|
|
GdkEventMask event_mask;
|
|
|
|
GdkInputSource source;
|
|
|
|
|
|
|
|
if (gdk_device_get_device_type (device) != GDK_DEVICE_TYPE_FLOATING)
|
|
|
|
return;
|
|
|
|
|
|
|
|
window = user_data;
|
|
|
|
source = gdk_device_get_source (device);
|
|
|
|
|
|
|
|
event_mask = GPOINTER_TO_INT (g_hash_table_lookup (window->source_event_masks,
|
|
|
|
GINT_TO_POINTER (source)));
|
|
|
|
if (event_mask)
|
|
|
|
gdk_window_set_device_events (window, device, event_mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
source_events_device_changed (GdkDeviceManager *device_manager,
|
|
|
|
GdkDevice *device,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GdkDeviceType type;
|
|
|
|
GdkInputSource source;
|
|
|
|
GdkEventMask event_mask;
|
|
|
|
GdkWindow *window;
|
|
|
|
|
|
|
|
window = user_data;
|
|
|
|
type = gdk_device_get_device_type (device);
|
|
|
|
source = gdk_device_get_source (device);
|
|
|
|
|
|
|
|
event_mask = GPOINTER_TO_INT (g_hash_table_lookup (window->source_event_masks,
|
|
|
|
GINT_TO_POINTER (source)));
|
|
|
|
|
|
|
|
if (!event_mask)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (type == GDK_DEVICE_TYPE_FLOATING)
|
|
|
|
{
|
|
|
|
/* The device was just floated, enable its event mask */
|
|
|
|
gdk_window_set_device_events (window, device, event_mask);
|
|
|
|
}
|
|
|
|
else if (type == GDK_DEVICE_TYPE_SLAVE)
|
|
|
|
gdk_window_set_device_events (window, device, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_source_events:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @source: a #GdkInputSource to define the source class.
|
|
|
|
* @event_mask: event mask for @window
|
|
|
|
*
|
|
|
|
* Sets the event mask for any floating device (i.e. not attached to any
|
|
|
|
* visible pointer) that has the source defined as @source. This event
|
|
|
|
* mask will be applied both to currently existing, newly added devices
|
|
|
|
* after this call, and devices being attached/detached.
|
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_source_events (GdkWindow *window,
|
|
|
|
GdkInputSource source,
|
|
|
|
GdkEventMask event_mask)
|
|
|
|
{
|
|
|
|
GdkDeviceManager *device_manager;
|
|
|
|
GdkDisplay *display;
|
|
|
|
GList *devices, *d;
|
|
|
|
guint size;
|
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_WINDOW (window));
|
|
|
|
|
|
|
|
display = gdk_window_get_display (window);
|
|
|
|
device_manager = gdk_display_get_device_manager (display);
|
|
|
|
|
|
|
|
devices = gdk_device_manager_list_devices (device_manager, GDK_DEVICE_TYPE_FLOATING);
|
|
|
|
|
|
|
|
/* Set event mask for existing devices */
|
|
|
|
for (d = devices; d; d = d->next)
|
|
|
|
{
|
|
|
|
GdkDevice *device = d->data;
|
|
|
|
|
|
|
|
if (source == gdk_device_get_source (device))
|
|
|
|
gdk_window_set_device_events (window, device, event_mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Update accounting */
|
|
|
|
if (G_UNLIKELY (!window->source_event_masks))
|
|
|
|
window->source_event_masks = g_hash_table_new (NULL, NULL);
|
|
|
|
|
|
|
|
if (event_mask)
|
|
|
|
g_hash_table_insert (window->source_event_masks,
|
|
|
|
GUINT_TO_POINTER (source),
|
|
|
|
GUINT_TO_POINTER (event_mask));
|
|
|
|
else
|
|
|
|
g_hash_table_remove (window->source_event_masks,
|
|
|
|
GUINT_TO_POINTER (source));
|
|
|
|
|
|
|
|
size = g_hash_table_size (window->source_event_masks);
|
|
|
|
|
|
|
|
/* Update handler if needed */
|
|
|
|
if (!window->device_added_handler_id && size > 0)
|
|
|
|
{
|
|
|
|
window->device_added_handler_id =
|
|
|
|
g_signal_connect (device_manager, "device-added",
|
|
|
|
G_CALLBACK (source_events_device_added), window);
|
|
|
|
window->device_changed_handler_id =
|
|
|
|
g_signal_connect (device_manager, "device-changed",
|
|
|
|
G_CALLBACK (source_events_device_changed), window);
|
|
|
|
}
|
|
|
|
else if (window->device_added_handler_id && size == 0)
|
|
|
|
g_signal_handler_disconnect (device_manager, window->device_added_handler_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_get_source_events:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @source: a #GdkInputSource to define the source class.
|
|
|
|
*
|
|
|
|
* Returns the event mask for @window corresponding to the device class specified
|
|
|
|
* by @source.
|
|
|
|
*
|
|
|
|
* Returns: source event mask for @window
|
|
|
|
**/
|
|
|
|
GdkEventMask
|
|
|
|
gdk_window_get_source_events (GdkWindow *window,
|
|
|
|
GdkInputSource source)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), 0);
|
|
|
|
|
|
|
|
return GPOINTER_TO_UINT (g_hash_table_lookup (window->source_event_masks,
|
|
|
|
GUINT_TO_POINTER (source)));
|
|
|
|
}
|
|
|
|
|
2009-06-11 19:49:17 +00:00
|
|
|
static gboolean
|
|
|
|
do_synthesize_crossing_event (gpointer data)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
GdkDisplay *display;
|
|
|
|
GdkWindow *changed_toplevel;
|
2010-05-25 22:38:44 +00:00
|
|
|
GHashTableIter iter;
|
|
|
|
gpointer key, value;
|
2009-01-31 18:42:44 +00:00
|
|
|
gulong serial;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-06-11 19:49:17 +00:00
|
|
|
changed_toplevel = data;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
changed_toplevel->synthesize_crossing_event_queued = FALSE;
|
2009-06-11 19:56:02 +00:00
|
|
|
|
|
|
|
if (GDK_WINDOW_DESTROYED (changed_toplevel))
|
2009-06-12 10:45:31 +00:00
|
|
|
return FALSE;
|
2009-06-11 19:56:02 +00:00
|
|
|
|
2010-08-29 00:08:47 +00:00
|
|
|
display = gdk_window_get_display (changed_toplevel);
|
2010-12-13 19:05:59 +00:00
|
|
|
serial = _gdk_display_get_next_serial (display);
|
2010-05-25 22:38:44 +00:00
|
|
|
g_hash_table_iter_init (&iter, display->pointers_info);
|
2009-06-11 19:49:17 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
while (g_hash_table_iter_next (&iter, &key, &value))
|
2008-12-15 09:24:54 +00:00
|
|
|
{
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkWindow *new_window_under_pointer;
|
|
|
|
GdkPointerWindowInfo *pointer_info = value;
|
|
|
|
GdkDevice *device = key;
|
|
|
|
|
|
|
|
if (changed_toplevel == pointer_info->toplevel_under_pointer)
|
|
|
|
{
|
|
|
|
new_window_under_pointer =
|
|
|
|
get_pointer_window (display, changed_toplevel,
|
|
|
|
device,
|
|
|
|
pointer_info->toplevel_x,
|
|
|
|
pointer_info->toplevel_y,
|
|
|
|
serial);
|
|
|
|
if (new_window_under_pointer != pointer_info->window_under_pointer)
|
|
|
|
{
|
|
|
|
_gdk_synthesize_crossing_events (display,
|
|
|
|
pointer_info->window_under_pointer,
|
|
|
|
new_window_under_pointer,
|
2010-12-13 01:12:43 +00:00
|
|
|
device, NULL,
|
2010-05-25 22:38:44 +00:00
|
|
|
GDK_CROSSING_NORMAL,
|
|
|
|
pointer_info->toplevel_x,
|
|
|
|
pointer_info->toplevel_y,
|
|
|
|
pointer_info->state,
|
|
|
|
GDK_CURRENT_TIME,
|
|
|
|
NULL,
|
|
|
|
serial,
|
|
|
|
FALSE);
|
|
|
|
_gdk_display_set_window_under_pointer (display, device, new_window_under_pointer);
|
|
|
|
}
|
|
|
|
}
|
2008-12-15 09:24:54 +00:00
|
|
|
}
|
2009-06-11 19:49:17 +00:00
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-06-18 18:58:13 +00:00
|
|
|
_gdk_synthesize_crossing_events_for_geometry_change (GdkWindow *changed_window)
|
2009-06-11 19:49:17 +00:00
|
|
|
{
|
|
|
|
GdkDisplay *display;
|
|
|
|
GdkWindow *toplevel;
|
|
|
|
|
2009-08-24 13:18:10 +00:00
|
|
|
if (_gdk_native_windows)
|
|
|
|
return; /* We use the native crossing events if all native */
|
|
|
|
|
2010-08-29 00:08:47 +00:00
|
|
|
display = gdk_window_get_display (changed_window);
|
2009-06-11 19:49:17 +00:00
|
|
|
|
|
|
|
toplevel = get_event_toplevel (changed_window);
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (!toplevel->synthesize_crossing_event_queued)
|
2009-06-11 19:49:17 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
toplevel->synthesize_crossing_event_queued = TRUE;
|
2010-05-25 22:38:44 +00:00
|
|
|
|
2010-09-11 02:28:55 +00:00
|
|
|
gdk_threads_add_idle_full (GDK_PRIORITY_EVENTS - 1,
|
|
|
|
do_synthesize_crossing_event,
|
|
|
|
g_object_ref (toplevel),
|
|
|
|
g_object_unref);
|
2009-06-11 19:49:17 +00:00
|
|
|
}
|
2008-12-15 09:24:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Don't use for crossing events */
|
|
|
|
static GdkWindow *
|
|
|
|
get_event_window (GdkDisplay *display,
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkDevice *device,
|
2008-12-15 09:24:54 +00:00
|
|
|
GdkWindow *pointer_window,
|
|
|
|
GdkEventType type,
|
2009-01-23 12:04:44 +00:00
|
|
|
GdkModifierType mask,
|
2009-01-31 18:42:44 +00:00
|
|
|
guint *evmask_out,
|
|
|
|
gulong serial)
|
2008-12-15 09:24:54 +00:00
|
|
|
{
|
|
|
|
guint evmask;
|
|
|
|
GdkWindow *grab_window;
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkDeviceGrabInfo *grab;
|
2009-01-31 18:42:44 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
grab = _gdk_display_has_device_grab (display, device, serial);
|
2008-12-15 09:24:54 +00:00
|
|
|
|
2009-01-31 18:42:44 +00:00
|
|
|
if (grab != NULL && !grab->owner_events)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2009-01-31 18:42:44 +00:00
|
|
|
evmask = grab->event_mask;
|
2008-12-15 09:24:54 +00:00
|
|
|
evmask = update_evmask_for_button_motion (evmask, mask);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-01-31 18:42:44 +00:00
|
|
|
grab_window = grab->window;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
if (evmask & type_masks[type])
|
2009-01-23 12:04:44 +00:00
|
|
|
{
|
|
|
|
if (evmask_out)
|
|
|
|
*evmask_out = evmask;
|
|
|
|
return grab_window;
|
|
|
|
}
|
2008-12-15 09:24:54 +00:00
|
|
|
else
|
|
|
|
return NULL;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2008-12-15 09:24:54 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
while (pointer_window != NULL)
|
2008-12-15 09:24:54 +00:00
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
evmask = pointer_window->event_mask;
|
2008-12-15 09:24:54 +00:00
|
|
|
evmask = update_evmask_for_button_motion (evmask, mask);
|
|
|
|
|
|
|
|
if (evmask & type_masks[type])
|
2009-01-23 12:04:44 +00:00
|
|
|
{
|
|
|
|
if (evmask_out)
|
|
|
|
*evmask_out = evmask;
|
2010-11-22 23:55:39 +00:00
|
|
|
return pointer_window;
|
2009-01-23 12:04:44 +00:00
|
|
|
}
|
2008-12-15 09:24:54 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
pointer_window = get_event_parent (pointer_window);
|
2008-12-15 09:24:54 +00:00
|
|
|
}
|
|
|
|
|
2009-01-31 18:42:44 +00:00
|
|
|
if (grab != NULL &&
|
|
|
|
grab->owner_events)
|
2008-12-15 09:24:54 +00:00
|
|
|
{
|
2009-01-31 18:42:44 +00:00
|
|
|
evmask = grab->event_mask;
|
2008-12-15 09:24:54 +00:00
|
|
|
evmask = update_evmask_for_button_motion (evmask, mask);
|
|
|
|
|
|
|
|
if (evmask & type_masks[type])
|
2009-01-23 12:04:44 +00:00
|
|
|
{
|
|
|
|
if (evmask_out)
|
|
|
|
*evmask_out = evmask;
|
2009-01-31 18:42:44 +00:00
|
|
|
return grab->window;
|
2009-01-23 12:04:44 +00:00
|
|
|
}
|
2008-12-15 09:24:54 +00:00
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
proxy_pointer_event (GdkDisplay *display,
|
2009-01-23 20:07:53 +00:00
|
|
|
GdkEvent *source_event,
|
|
|
|
gulong serial)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2009-02-03 11:24:30 +00:00
|
|
|
GdkWindow *toplevel_window, *event_window;
|
2008-12-15 09:24:54 +00:00
|
|
|
GdkWindow *pointer_window;
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkPointerWindowInfo *pointer_info;
|
2010-12-13 01:12:43 +00:00
|
|
|
GdkDevice *device, *source_device;
|
2008-07-18 13:03:42 +00:00
|
|
|
GdkEvent *event;
|
|
|
|
guint state;
|
2008-12-15 09:24:54 +00:00
|
|
|
gdouble toplevel_x, toplevel_y;
|
2008-07-18 13:03:42 +00:00
|
|
|
guint32 time_;
|
2009-07-09 14:48:22 +00:00
|
|
|
gboolean non_linear;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-02-03 11:24:30 +00:00
|
|
|
event_window = source_event->any.window;
|
2008-12-15 09:24:54 +00:00
|
|
|
gdk_event_get_coords (source_event, &toplevel_x, &toplevel_y);
|
2008-07-18 13:03:42 +00:00
|
|
|
gdk_event_get_state (source_event, &state);
|
|
|
|
time_ = gdk_event_get_time (source_event);
|
2010-05-25 22:38:44 +00:00
|
|
|
device = gdk_event_get_device (source_event);
|
2010-12-13 01:12:43 +00:00
|
|
|
source_device = gdk_event_get_source_device (source_event);
|
2010-05-25 22:38:44 +00:00
|
|
|
pointer_info = _gdk_display_get_pointer_info (display, device);
|
2009-06-08 13:57:59 +00:00
|
|
|
toplevel_window = convert_native_coords_to_toplevel (event_window,
|
|
|
|
toplevel_x, toplevel_y,
|
|
|
|
&toplevel_x, &toplevel_y);
|
2009-02-03 11:24:30 +00:00
|
|
|
|
2009-07-09 14:48:22 +00:00
|
|
|
non_linear = FALSE;
|
|
|
|
if ((source_event->type == GDK_LEAVE_NOTIFY ||
|
|
|
|
source_event->type == GDK_ENTER_NOTIFY) &&
|
|
|
|
(source_event->crossing.detail == GDK_NOTIFY_NONLINEAR ||
|
|
|
|
source_event->crossing.detail == GDK_NOTIFY_NONLINEAR_VIRTUAL))
|
|
|
|
non_linear = TRUE;
|
2009-02-03 11:24:30 +00:00
|
|
|
|
|
|
|
/* If we get crossing events with subwindow unexpectedly being NULL
|
|
|
|
that means there is a native subwindow that gdk doesn't know about.
|
|
|
|
We track these and forward them, with the correct virtual window
|
|
|
|
events inbetween.
|
|
|
|
This is important to get right, as metacity uses gdk for the frame
|
|
|
|
windows, but gdk doesn't know about the client windows reparented
|
|
|
|
into the frame. */
|
|
|
|
if (((source_event->type == GDK_LEAVE_NOTIFY &&
|
|
|
|
source_event->crossing.detail == GDK_NOTIFY_INFERIOR) ||
|
|
|
|
(source_event->type == GDK_ENTER_NOTIFY &&
|
|
|
|
(source_event->crossing.detail == GDK_NOTIFY_VIRTUAL ||
|
|
|
|
source_event->crossing.detail == GDK_NOTIFY_NONLINEAR_VIRTUAL))) &&
|
|
|
|
source_event->crossing.subwindow == NULL)
|
|
|
|
{
|
|
|
|
/* Left for an unknown (to gdk) subwindow */
|
|
|
|
|
|
|
|
/* Send leave events from window under pointer to event window
|
|
|
|
that will get the subwindow == NULL window */
|
2009-06-18 18:58:13 +00:00
|
|
|
_gdk_synthesize_crossing_events (display,
|
2010-05-25 22:38:44 +00:00
|
|
|
pointer_info->window_under_pointer,
|
2009-07-09 14:48:22 +00:00
|
|
|
event_window,
|
2010-12-13 01:12:43 +00:00
|
|
|
device, source_device,
|
2009-07-09 14:48:22 +00:00
|
|
|
source_event->crossing.mode,
|
|
|
|
toplevel_x, toplevel_y,
|
|
|
|
state, time_,
|
|
|
|
source_event,
|
|
|
|
serial,
|
|
|
|
non_linear);
|
2009-02-03 11:24:30 +00:00
|
|
|
|
|
|
|
/* Send subwindow == NULL event */
|
|
|
|
send_crossing_event (display,
|
2010-11-22 23:55:39 +00:00
|
|
|
toplevel_window,
|
|
|
|
event_window,
|
2009-02-03 11:24:30 +00:00
|
|
|
source_event->type,
|
|
|
|
source_event->crossing.mode,
|
|
|
|
source_event->crossing.detail,
|
|
|
|
NULL,
|
2010-12-13 01:12:43 +00:00
|
|
|
device, source_device,
|
2010-05-25 22:38:44 +00:00
|
|
|
toplevel_x, toplevel_y,
|
2009-02-03 11:24:30 +00:00
|
|
|
state, time_,
|
|
|
|
source_event,
|
|
|
|
serial);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
_gdk_display_set_window_under_pointer (display, device, NULL);
|
2009-02-03 11:24:30 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
pointer_window = get_pointer_window (display, toplevel_window, device,
|
2009-02-03 11:24:30 +00:00
|
|
|
toplevel_x, toplevel_y, serial);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-02-03 11:24:30 +00:00
|
|
|
if (((source_event->type == GDK_ENTER_NOTIFY &&
|
|
|
|
source_event->crossing.detail == GDK_NOTIFY_INFERIOR) ||
|
|
|
|
(source_event->type == GDK_LEAVE_NOTIFY &&
|
|
|
|
(source_event->crossing.detail == GDK_NOTIFY_VIRTUAL ||
|
|
|
|
source_event->crossing.detail == GDK_NOTIFY_NONLINEAR_VIRTUAL))) &&
|
|
|
|
source_event->crossing.subwindow == NULL)
|
|
|
|
{
|
|
|
|
/* Entered from an unknown (to gdk) subwindow */
|
|
|
|
|
|
|
|
/* Send subwindow == NULL event */
|
|
|
|
send_crossing_event (display,
|
2010-11-22 23:55:39 +00:00
|
|
|
toplevel_window,
|
|
|
|
event_window,
|
2009-02-03 11:24:30 +00:00
|
|
|
source_event->type,
|
|
|
|
source_event->crossing.mode,
|
|
|
|
source_event->crossing.detail,
|
|
|
|
NULL,
|
2010-12-13 01:12:43 +00:00
|
|
|
device, source_device,
|
2010-05-25 22:38:44 +00:00
|
|
|
toplevel_x, toplevel_y,
|
2009-02-03 11:24:30 +00:00
|
|
|
state, time_,
|
|
|
|
source_event,
|
|
|
|
serial);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-02-03 11:24:30 +00:00
|
|
|
/* Send enter events from event window to pointer_window */
|
2009-06-18 18:58:13 +00:00
|
|
|
_gdk_synthesize_crossing_events (display,
|
2009-07-09 14:48:22 +00:00
|
|
|
event_window,
|
|
|
|
pointer_window,
|
2010-12-13 01:12:43 +00:00
|
|
|
device, source_device,
|
2009-07-09 14:48:22 +00:00
|
|
|
source_event->crossing.mode,
|
|
|
|
toplevel_x, toplevel_y,
|
|
|
|
state, time_,
|
|
|
|
source_event,
|
|
|
|
serial, non_linear);
|
2010-05-25 22:38:44 +00:00
|
|
|
_gdk_display_set_window_under_pointer (display, device, pointer_window);
|
2009-02-03 11:24:30 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
if (pointer_info->window_under_pointer != pointer_window)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2008-12-15 09:24:54 +00:00
|
|
|
/* Either a toplevel crossing notify that ended up inside a child window,
|
|
|
|
or a motion notify that got into another child window */
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
/* Different than last time, send crossing events */
|
2009-06-18 18:58:13 +00:00
|
|
|
_gdk_synthesize_crossing_events (display,
|
2010-05-25 22:38:44 +00:00
|
|
|
pointer_info->window_under_pointer,
|
2009-07-09 14:48:22 +00:00
|
|
|
pointer_window,
|
2010-12-13 01:12:43 +00:00
|
|
|
device, source_device,
|
2009-07-09 14:48:22 +00:00
|
|
|
GDK_CROSSING_NORMAL,
|
|
|
|
toplevel_x, toplevel_y,
|
|
|
|
state, time_,
|
|
|
|
source_event,
|
|
|
|
serial, non_linear);
|
2010-05-25 22:38:44 +00:00
|
|
|
_gdk_display_set_window_under_pointer (display, device, pointer_window);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
2009-02-04 19:23:51 +00:00
|
|
|
else if (source_event->type == GDK_MOTION_NOTIFY)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2008-12-15 09:24:54 +00:00
|
|
|
GdkWindow *event_win;
|
2009-01-23 12:04:44 +00:00
|
|
|
guint evmask;
|
|
|
|
gboolean is_hint;
|
2008-12-15 09:24:54 +00:00
|
|
|
|
|
|
|
event_win = get_event_window (display,
|
2010-05-25 22:38:44 +00:00
|
|
|
device,
|
|
|
|
pointer_window,
|
|
|
|
source_event->type,
|
|
|
|
state,
|
|
|
|
&evmask,
|
|
|
|
serial);
|
|
|
|
|
|
|
|
if (event_win &&
|
|
|
|
gdk_device_get_device_type (device) != GDK_DEVICE_TYPE_MASTER &&
|
|
|
|
gdk_window_get_device_events (event_win, device) == 0)
|
|
|
|
return TRUE;
|
2009-01-23 12:04:44 +00:00
|
|
|
|
|
|
|
is_hint = FALSE;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-01-23 12:04:44 +00:00
|
|
|
if (event_win &&
|
|
|
|
(evmask & GDK_POINTER_MOTION_HINT_MASK))
|
|
|
|
{
|
2010-05-25 22:38:44 +00:00
|
|
|
gulong *device_serial;
|
|
|
|
|
|
|
|
device_serial = g_hash_table_lookup (display->motion_hint_info, device);
|
|
|
|
|
|
|
|
if (!device_serial ||
|
|
|
|
(*device_serial != 0 &&
|
|
|
|
serial < *device_serial))
|
2009-01-23 12:04:44 +00:00
|
|
|
event_win = NULL; /* Ignore event */
|
|
|
|
else
|
|
|
|
{
|
|
|
|
is_hint = TRUE;
|
2010-05-25 22:38:44 +00:00
|
|
|
*device_serial = G_MAXULONG;
|
2009-01-23 12:04:44 +00:00
|
|
|
}
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-05-29 14:39:12 +00:00
|
|
|
if (event_win && !display->ignore_core_events)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
event = _gdk_make_event (event_win, GDK_MOTION_NOTIFY, source_event, FALSE);
|
|
|
|
event->motion.time = time_;
|
|
|
|
convert_toplevel_coords_to_window (event_win,
|
|
|
|
toplevel_x, toplevel_y,
|
|
|
|
&event->motion.x, &event->motion.y);
|
2008-12-04 14:20:19 +00:00
|
|
|
event->motion.x_root = source_event->motion.x_root;
|
2010-05-25 22:38:44 +00:00
|
|
|
event->motion.y_root = source_event->motion.y_root;
|
2008-07-18 13:03:42 +00:00
|
|
|
event->motion.state = state;
|
2009-01-23 12:04:44 +00:00
|
|
|
event->motion.is_hint = is_hint;
|
|
|
|
event->motion.device = source_event->motion.device;
|
2010-05-25 22:38:44 +00:00
|
|
|
event->motion.axes = g_memdup (source_event->motion.axes,
|
2010-11-23 19:25:13 +00:00
|
|
|
sizeof (gdouble) * gdk_device_get_n_axes (source_event->motion.device));
|
2010-12-13 01:12:43 +00:00
|
|
|
gdk_event_set_source_device (event, source_device);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
/* unlink all move events from queue.
|
|
|
|
We handle our own, including our emulated masks. */
|
|
|
|
return TRUE;
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2009-02-02 13:57:08 +00:00
|
|
|
#define GDK_ANY_BUTTON_MASK (GDK_BUTTON1_MASK | \
|
2009-06-01 10:04:36 +00:00
|
|
|
GDK_BUTTON2_MASK | \
|
|
|
|
GDK_BUTTON3_MASK | \
|
|
|
|
GDK_BUTTON4_MASK | \
|
|
|
|
GDK_BUTTON5_MASK)
|
2009-02-02 13:57:08 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
static gboolean
|
2009-01-31 18:42:44 +00:00
|
|
|
proxy_button_event (GdkEvent *source_event,
|
|
|
|
gulong serial)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2009-02-04 10:22:54 +00:00
|
|
|
GdkWindow *toplevel_window, *event_window;
|
2008-07-18 13:03:42 +00:00
|
|
|
GdkWindow *event_win;
|
2008-12-15 09:24:54 +00:00
|
|
|
GdkWindow *pointer_window;
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *parent;
|
2008-07-18 13:03:42 +00:00
|
|
|
GdkEvent *event;
|
|
|
|
guint state;
|
|
|
|
guint32 time_;
|
|
|
|
GdkEventType type;
|
2008-12-15 09:24:54 +00:00
|
|
|
gdouble toplevel_x, toplevel_y;
|
2008-07-18 13:03:42 +00:00
|
|
|
GdkDisplay *display;
|
2010-11-22 23:55:39 +00:00
|
|
|
GdkWindow *w;
|
2010-12-13 01:12:43 +00:00
|
|
|
GdkDevice *device, *source_device;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
|
|
|
type = source_event->any.type;
|
2009-02-04 10:22:54 +00:00
|
|
|
event_window = source_event->any.window;
|
2008-12-15 09:24:54 +00:00
|
|
|
gdk_event_get_coords (source_event, &toplevel_x, &toplevel_y);
|
2008-07-18 13:03:42 +00:00
|
|
|
gdk_event_get_state (source_event, &state);
|
|
|
|
time_ = gdk_event_get_time (source_event);
|
2010-05-25 22:38:44 +00:00
|
|
|
device = gdk_event_get_device (source_event);
|
2010-12-13 01:12:43 +00:00
|
|
|
source_device = gdk_event_get_source_device (source_event);
|
2010-08-29 00:08:47 +00:00
|
|
|
display = gdk_window_get_display (source_event->any.window);
|
2009-06-08 13:57:59 +00:00
|
|
|
toplevel_window = convert_native_coords_to_toplevel (event_window,
|
|
|
|
toplevel_x, toplevel_y,
|
|
|
|
&toplevel_x, &toplevel_y);
|
2008-12-15 09:24:54 +00:00
|
|
|
|
2009-02-02 13:57:08 +00:00
|
|
|
if (type == GDK_BUTTON_PRESS &&
|
2009-09-28 13:29:37 +00:00
|
|
|
!source_event->any.send_event &&
|
2010-05-25 22:38:44 +00:00
|
|
|
_gdk_display_has_device_grab (display, device, serial) == NULL)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2008-12-15 09:24:54 +00:00
|
|
|
pointer_window =
|
|
|
|
_gdk_window_find_descendant_at (toplevel_window,
|
|
|
|
toplevel_x, toplevel_y,
|
|
|
|
NULL, NULL);
|
2008-12-15 13:26:10 +00:00
|
|
|
|
2009-02-02 13:57:08 +00:00
|
|
|
/* Find the event window, that gets the grab */
|
2010-11-22 23:55:39 +00:00
|
|
|
w = pointer_window;
|
2009-06-08 13:57:59 +00:00
|
|
|
while (w != NULL &&
|
|
|
|
(parent = get_event_parent (w)) != NULL &&
|
|
|
|
parent->window_type != GDK_WINDOW_ROOT)
|
2008-12-15 13:26:10 +00:00
|
|
|
{
|
|
|
|
if (w->event_mask & GDK_BUTTON_PRESS_MASK)
|
|
|
|
break;
|
2009-06-08 13:57:59 +00:00
|
|
|
w = parent;
|
2008-12-15 13:26:10 +00:00
|
|
|
}
|
2008-12-15 14:50:41 +00:00
|
|
|
pointer_window = (GdkWindow *)w;
|
2009-02-02 13:57:08 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
_gdk_display_add_device_grab (display,
|
|
|
|
device,
|
|
|
|
pointer_window,
|
|
|
|
toplevel_window,
|
|
|
|
GDK_OWNERSHIP_NONE,
|
|
|
|
FALSE,
|
|
|
|
gdk_window_get_events (pointer_window),
|
|
|
|
serial,
|
2009-02-02 13:57:08 +00:00
|
|
|
time_,
|
2010-05-25 22:38:44 +00:00
|
|
|
TRUE);
|
2010-12-13 01:12:43 +00:00
|
|
|
_gdk_display_device_grab_update (display, device, source_device, serial);
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
pointer_window = get_pointer_window (display, toplevel_window, device,
|
2009-01-31 18:42:44 +00:00
|
|
|
toplevel_x, toplevel_y,
|
|
|
|
serial);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
event_win = get_event_window (display,
|
2010-05-25 22:38:44 +00:00
|
|
|
device,
|
2008-12-15 09:24:54 +00:00
|
|
|
pointer_window,
|
2009-01-31 18:42:44 +00:00
|
|
|
type, state,
|
|
|
|
NULL, serial);
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-05-29 14:39:12 +00:00
|
|
|
if (event_win == NULL || display->ignore_core_events)
|
2008-07-18 13:03:42 +00:00
|
|
|
return TRUE;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
if (gdk_device_get_device_type (device) != GDK_DEVICE_TYPE_MASTER &&
|
|
|
|
gdk_window_get_device_events (event_win, device) == 0)
|
|
|
|
return TRUE;
|
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
event = _gdk_make_event (event_win, type, source_event, FALSE);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
switch (type)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
2008-12-15 09:24:54 +00:00
|
|
|
case GDK_BUTTON_PRESS:
|
|
|
|
case GDK_BUTTON_RELEASE:
|
|
|
|
event->button.button = source_event->button.button;
|
|
|
|
convert_toplevel_coords_to_window (event_win,
|
|
|
|
toplevel_x, toplevel_y,
|
|
|
|
&event->button.x, &event->button.y);
|
|
|
|
event->button.x_root = source_event->button.x_root;
|
|
|
|
event->button.y_root = source_event->button.y_root;
|
|
|
|
event->button.state = state;
|
|
|
|
event->button.device = source_event->button.device;
|
2010-05-25 22:38:44 +00:00
|
|
|
event->button.axes = g_memdup (source_event->button.axes,
|
2010-11-23 19:25:13 +00:00
|
|
|
sizeof (gdouble) * gdk_device_get_n_axes (source_event->button.device));
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-12-13 01:12:43 +00:00
|
|
|
gdk_event_set_source_device (event, source_device);
|
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
if (type == GDK_BUTTON_PRESS)
|
|
|
|
_gdk_event_button_generate (display, event);
|
|
|
|
return TRUE;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
case GDK_SCROLL:
|
|
|
|
event->scroll.direction = source_event->scroll.direction;
|
|
|
|
convert_toplevel_coords_to_window (event_win,
|
|
|
|
toplevel_x, toplevel_y,
|
|
|
|
&event->scroll.x, &event->scroll.y);
|
|
|
|
event->scroll.x_root = source_event->scroll.x_root;
|
|
|
|
event->scroll.y_root = source_event->scroll.y_root;
|
|
|
|
event->scroll.state = state;
|
|
|
|
event->scroll.device = source_event->scroll.device;
|
2010-12-13 01:12:43 +00:00
|
|
|
gdk_event_set_source_device (event, source_device);
|
2008-12-15 09:24:54 +00:00
|
|
|
return TRUE;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
default:
|
2008-07-18 13:03:42 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
2008-12-15 09:24:54 +00:00
|
|
|
|
|
|
|
return TRUE; /* Always unlink original, we want to obey the emulated event mask */
|
2008-07-18 13:03:42 +00:00
|
|
|
}
|
|
|
|
|
2008-12-18 10:30:10 +00:00
|
|
|
#ifdef DEBUG_WINDOW_PRINTING
|
|
|
|
static void
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_print (GdkWindow *window,
|
2008-12-18 10:30:10 +00:00
|
|
|
int indent)
|
|
|
|
{
|
|
|
|
GdkRectangle r;
|
2009-08-28 10:48:13 +00:00
|
|
|
const char *window_types[] = {
|
|
|
|
"root",
|
|
|
|
"toplevel",
|
|
|
|
"child",
|
|
|
|
"dialog",
|
|
|
|
"temp",
|
|
|
|
"foreign",
|
|
|
|
"offscreen"
|
|
|
|
};
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-18 10:30:10 +00:00
|
|
|
g_print ("%*s%p: [%s] %d,%d %dx%d", indent, "", window,
|
|
|
|
window->user_data ? g_type_name_from_instance (window->user_data) : "no widget",
|
|
|
|
window->x, window->y,
|
|
|
|
window->width, window->height
|
|
|
|
);
|
|
|
|
|
|
|
|
if (gdk_window_has_impl (window))
|
|
|
|
{
|
2009-01-21 10:23:51 +00:00
|
|
|
#ifdef GDK_WINDOWING_X11
|
2010-10-05 22:08:25 +00:00
|
|
|
g_print (" impl(0x%lx)", gdk_x11_window_get_xid (window));
|
2009-01-21 10:23:51 +00:00
|
|
|
#endif
|
2008-12-18 10:30:10 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-08-28 10:48:13 +00:00
|
|
|
if (window->window_type != GDK_WINDOW_CHILD)
|
|
|
|
g_print (" %s", window_types[window->window_type]);
|
|
|
|
|
2008-12-18 10:30:10 +00:00
|
|
|
if (window->input_only)
|
|
|
|
g_print (" input-only");
|
|
|
|
|
2009-08-28 10:48:13 +00:00
|
|
|
if (window->shaped)
|
|
|
|
g_print (" shaped");
|
|
|
|
|
2008-12-18 10:30:10 +00:00
|
|
|
if (!gdk_window_is_visible ((GdkWindow *)window))
|
|
|
|
g_print (" hidden");
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-18 10:30:10 +00:00
|
|
|
g_print (" abs[%d,%d]",
|
|
|
|
window->abs_x, window->abs_y);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-06-28 12:44:12 +00:00
|
|
|
cairo_region_get_extents (window->clip_region, &r);
|
|
|
|
if (cairo_region_is_empty (window->clip_region))
|
2008-12-18 10:30:10 +00:00
|
|
|
g_print (" clipbox[empty]");
|
|
|
|
else
|
|
|
|
g_print (" clipbox[%d,%d %dx%d]", r.x, r.y, r.width, r.height);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-18 10:30:10 +00:00
|
|
|
g_print ("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_window_print_tree (GdkWindow *window,
|
|
|
|
int indent,
|
|
|
|
gboolean include_input_only)
|
|
|
|
{
|
|
|
|
GList *l;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
if (window->input_only && !include_input_only)
|
2008-12-18 10:30:10 +00:00
|
|
|
return;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
gdk_window_print (window, indent);
|
2008-12-18 10:30:10 +00:00
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
for (l = window->children; l != NULL; l = l->next)
|
2008-12-18 10:30:10 +00:00
|
|
|
gdk_window_print_tree (l->data, indent + 4, include_input_only);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* DEBUG_WINDOW_PRINTING */
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
void
|
|
|
|
_gdk_windowing_got_event (GdkDisplay *display,
|
|
|
|
GList *event_link,
|
2009-01-23 20:07:53 +00:00
|
|
|
GdkEvent *event,
|
|
|
|
gulong serial)
|
2008-07-18 13:03:42 +00:00
|
|
|
{
|
|
|
|
GdkWindow *event_window;
|
2008-12-15 09:24:54 +00:00
|
|
|
gdouble x, y;
|
2008-07-18 13:03:42 +00:00
|
|
|
gboolean unlink_event;
|
2009-01-23 12:04:44 +00:00
|
|
|
guint old_state, old_button;
|
2010-05-25 22:38:44 +00:00
|
|
|
GdkDeviceGrabInfo *button_release_grab;
|
|
|
|
GdkPointerWindowInfo *pointer_info;
|
2010-12-13 01:12:43 +00:00
|
|
|
GdkDevice *device, *source_device;
|
2009-02-03 11:24:30 +00:00
|
|
|
gboolean is_toplevel;
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-01-31 18:42:44 +00:00
|
|
|
if (gdk_event_get_time (event) != GDK_CURRENT_TIME)
|
|
|
|
display->last_event_time = gdk_event_get_time (event);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
device = gdk_event_get_device (event);
|
2010-12-13 01:12:43 +00:00
|
|
|
source_device = gdk_event_get_source_device (event);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
|
|
if (device)
|
|
|
|
{
|
|
|
|
GdkInputMode mode;
|
|
|
|
|
|
|
|
g_object_get (device, "input-mode", &mode, NULL);
|
2010-12-13 01:12:43 +00:00
|
|
|
_gdk_display_device_grab_update (display, device, source_device, serial);
|
2010-05-25 22:38:44 +00:00
|
|
|
|
|
|
|
if (mode == GDK_MODE_DISABLED ||
|
|
|
|
!_gdk_display_check_grab_ownership (display, device, serial))
|
|
|
|
{
|
|
|
|
/* Device events are blocked by another
|
|
|
|
* device grab, or the device is disabled
|
|
|
|
*/
|
|
|
|
unlink_event = TRUE;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
event_window = event->any.window;
|
|
|
|
if (!event_window)
|
|
|
|
return;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
pointer_info = _gdk_display_get_pointer_info (display, device);
|
2009-08-27 13:55:01 +00:00
|
|
|
|
|
|
|
#ifdef DEBUG_WINDOW_PRINTING
|
|
|
|
if (event->type == GDK_KEY_PRESS &&
|
|
|
|
(event->key.keyval == 0xa7 ||
|
|
|
|
event->key.keyval == 0xbd))
|
|
|
|
{
|
|
|
|
gdk_window_print_tree (event_window, 0,
|
|
|
|
event->key.keyval == 0xbd);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2009-08-24 13:18:10 +00:00
|
|
|
if (_gdk_native_windows)
|
|
|
|
{
|
|
|
|
if (event->type == GDK_BUTTON_PRESS &&
|
2009-09-28 13:29:37 +00:00
|
|
|
!event->any.send_event &&
|
2010-05-25 22:38:44 +00:00
|
|
|
_gdk_display_has_device_grab (display, device, serial) == NULL)
|
2009-08-24 13:18:10 +00:00
|
|
|
{
|
2010-05-25 22:38:44 +00:00
|
|
|
_gdk_display_add_device_grab (display,
|
|
|
|
device,
|
|
|
|
event_window,
|
|
|
|
event_window,
|
|
|
|
GDK_OWNERSHIP_NONE,
|
|
|
|
FALSE,
|
|
|
|
gdk_window_get_events (event_window),
|
|
|
|
serial,
|
|
|
|
gdk_event_get_time (event),
|
|
|
|
TRUE);
|
2010-12-13 01:12:43 +00:00
|
|
|
_gdk_display_device_grab_update (display, device, source_device, serial);
|
2009-08-24 13:18:10 +00:00
|
|
|
}
|
2009-09-28 13:29:37 +00:00
|
|
|
if (event->type == GDK_BUTTON_RELEASE &&
|
|
|
|
!event->any.send_event)
|
2009-08-24 13:18:10 +00:00
|
|
|
{
|
|
|
|
button_release_grab =
|
2010-05-25 22:38:44 +00:00
|
|
|
_gdk_display_has_device_grab (display, device, serial);
|
2009-08-24 13:18:10 +00:00
|
|
|
if (button_release_grab &&
|
|
|
|
button_release_grab->implicit &&
|
|
|
|
(event->button.state & GDK_ANY_BUTTON_MASK & ~(GDK_BUTTON1_MASK << (event->button.button - 1))) == 0)
|
|
|
|
{
|
|
|
|
button_release_grab->serial_end = serial;
|
2009-09-10 17:27:45 +00:00
|
|
|
button_release_grab->implicit_ungrab = FALSE;
|
2010-12-13 01:12:43 +00:00
|
|
|
_gdk_display_device_grab_update (display, device, source_device, serial);
|
2009-08-24 13:18:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (event->type == GDK_BUTTON_PRESS)
|
|
|
|
_gdk_event_button_generate (display, event);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-05-26 18:53:48 +00:00
|
|
|
if (event->type == GDK_VISIBILITY_NOTIFY)
|
|
|
|
{
|
2010-11-22 23:55:39 +00:00
|
|
|
event_window->native_visibility = event->visibility.state;
|
|
|
|
gdk_window_update_visibility_recursively (event_window,
|
|
|
|
event_window);
|
2009-05-26 18:53:48 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-07-18 13:03:42 +00:00
|
|
|
if (!(is_button_type (event->type) ||
|
2009-01-28 12:41:12 +00:00
|
|
|
is_motion_type (event->type)) ||
|
2010-11-22 23:55:39 +00:00
|
|
|
event_window->window_type == GDK_WINDOW_ROOT)
|
2008-07-18 13:03:42 +00:00
|
|
|
return;
|
|
|
|
|
2010-11-22 23:55:39 +00:00
|
|
|
is_toplevel = gdk_window_is_toplevel (event_window);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-02-03 19:15:19 +00:00
|
|
|
if ((event->type == GDK_ENTER_NOTIFY ||
|
|
|
|
event->type == GDK_LEAVE_NOTIFY) &&
|
|
|
|
(event->crossing.mode == GDK_CROSSING_GRAB ||
|
|
|
|
event->crossing.mode == GDK_CROSSING_UNGRAB) &&
|
2010-05-25 22:38:44 +00:00
|
|
|
(_gdk_display_has_device_grab (display, device, serial) ||
|
2009-02-03 21:51:27 +00:00
|
|
|
event->crossing.detail == GDK_NOTIFY_INFERIOR))
|
2009-02-03 19:15:19 +00:00
|
|
|
{
|
2009-06-24 18:59:29 +00:00
|
|
|
/* We synthesize all crossing events due to grabs ourselves,
|
2009-02-03 21:51:27 +00:00
|
|
|
* so we ignore the native ones caused by our native pointer_grab
|
|
|
|
* calls. Otherwise we would proxy these crossing event and cause
|
|
|
|
* multiple copies of crossing events for grabs.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2009-02-03 21:51:27 +00:00
|
|
|
* We do want to handle grabs from other clients though, as for
|
|
|
|
* instance alt-tab in metacity causes grabs like these and
|
|
|
|
* we want to handle those. Thus the has_pointer_grab check.
|
2009-06-01 10:04:36 +00:00
|
|
|
*
|
2009-02-03 21:51:27 +00:00
|
|
|
* Implicit grabs on child windows create some grabbing events
|
|
|
|
* that are sent before the button press. This means we can't
|
|
|
|
* detect these with the has_pointer_grab check (as the implicit
|
|
|
|
* grab is only noticed when we get button press event), so we
|
2009-06-01 10:04:36 +00:00
|
|
|
* detect these events by checking for INFERIOR enter or leave
|
2009-02-03 21:51:27 +00:00
|
|
|
* events. These should never be a problem to filter out.
|
|
|
|
*/
|
2009-02-03 19:15:19 +00:00
|
|
|
|
|
|
|
/* We ended up in this window after some (perhaps other clients)
|
|
|
|
grab, so update the toplevel_under_window state */
|
|
|
|
if (is_toplevel &&
|
|
|
|
event->type == GDK_ENTER_NOTIFY &&
|
|
|
|
event->crossing.mode == GDK_CROSSING_UNGRAB)
|
|
|
|
{
|
2010-05-25 22:38:44 +00:00
|
|
|
if (pointer_info->toplevel_under_pointer)
|
|
|
|
g_object_unref (pointer_info->toplevel_under_pointer);
|
|
|
|
pointer_info->toplevel_under_pointer = g_object_ref (event_window);
|
2009-02-03 19:15:19 +00:00
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-02-03 19:15:19 +00:00
|
|
|
unlink_event = TRUE;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2009-02-03 11:24:30 +00:00
|
|
|
/* Track toplevel_under_pointer */
|
|
|
|
if (is_toplevel)
|
2008-12-15 09:24:54 +00:00
|
|
|
{
|
2009-02-03 11:24:30 +00:00
|
|
|
if (event->type == GDK_ENTER_NOTIFY &&
|
|
|
|
event->crossing.detail != GDK_NOTIFY_INFERIOR)
|
|
|
|
{
|
2010-05-25 22:38:44 +00:00
|
|
|
if (pointer_info->toplevel_under_pointer)
|
|
|
|
g_object_unref (pointer_info->toplevel_under_pointer);
|
|
|
|
pointer_info->toplevel_under_pointer = g_object_ref (event_window);
|
2009-02-03 11:24:30 +00:00
|
|
|
}
|
|
|
|
else if (event->type == GDK_LEAVE_NOTIFY &&
|
|
|
|
event->crossing.detail != GDK_NOTIFY_INFERIOR &&
|
2010-05-25 22:38:44 +00:00
|
|
|
pointer_info->toplevel_under_pointer == event_window)
|
2009-02-03 11:24:30 +00:00
|
|
|
{
|
2010-05-25 22:38:44 +00:00
|
|
|
if (pointer_info->toplevel_under_pointer)
|
|
|
|
g_object_unref (pointer_info->toplevel_under_pointer);
|
|
|
|
pointer_info->toplevel_under_pointer = NULL;
|
2009-02-03 11:24:30 +00:00
|
|
|
}
|
2008-12-15 09:24:54 +00:00
|
|
|
}
|
2008-07-18 13:03:42 +00:00
|
|
|
|
2009-02-03 11:24:30 +00:00
|
|
|
/* Store last pointer window and position/state */
|
2010-05-25 22:38:44 +00:00
|
|
|
old_state = pointer_info->state;
|
|
|
|
old_button = pointer_info->button;
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
gdk_event_get_coords (event, &x, &y);
|
2009-06-08 13:57:59 +00:00
|
|
|
convert_native_coords_to_toplevel (event_window, x, y, &x, &y);
|
2010-05-25 22:38:44 +00:00
|
|
|
pointer_info->toplevel_x = x;
|
|
|
|
pointer_info->toplevel_y = y;
|
|
|
|
gdk_event_get_state (event, &pointer_info->state);
|
2009-01-23 12:04:44 +00:00
|
|
|
if (event->type == GDK_BUTTON_PRESS ||
|
|
|
|
event->type == GDK_BUTTON_RELEASE)
|
2010-05-25 22:38:44 +00:00
|
|
|
pointer_info->button = event->button.button;
|
2008-12-15 09:24:54 +00:00
|
|
|
|
2010-05-25 22:38:44 +00:00
|
|
|
if (device &&
|
|
|
|
(pointer_info->state != old_state ||
|
|
|
|
pointer_info->button != old_button))
|
|
|
|
_gdk_display_enable_motion_hints (display, device);
|
2009-06-01 10:04:36 +00:00
|
|
|
|
2008-12-15 09:24:54 +00:00
|
|
|
unlink_event = FALSE;
|
|
|
|
if (is_motion_type (event->type))
|
|
|
|
unlink_event = proxy_pointer_event (display,
|
2009-06-01 10:04:36 +00:00
|
|
|
event,
|
2009-01-23 20:07:53 +00:00
|
|
|
serial);
|
2008-12-15 09:24:54 +00:00
|
|
|
else if (is_button_type (event->type))
|
2009-01-31 18:42:44 +00:00
|
|
|
unlink_event = proxy_button_event (event,
|
|
|
|
serial);
|
|
|
|
|
2009-09-28 13:29:37 +00:00
|
|
|
if (event->type == GDK_BUTTON_RELEASE &&
|
|
|
|
!event->any.send_event)
|
2009-01-31 18:42:44 +00:00
|
|
|
{
|
|
|
|
button_release_grab =
|
2010-05-25 22:38:44 +00:00
|
|
|
_gdk_display_has_device_grab (display, device, serial);
|
2009-01-31 18:42:44 +00:00
|
|
|
if (button_release_grab &&
|
2009-02-02 13:57:08 +00:00
|
|
|
button_release_grab->implicit &&
|
|
|
|
(event->button.state & GDK_ANY_BUTTON_MASK & ~(GDK_BUTTON1_MASK << (event->button.button - 1))) == 0)
|
2009-01-31 18:42:44 +00:00
|
|
|
{
|
|
|
|
button_release_grab->serial_end = serial;
|
2009-09-10 17:27:45 +00:00
|
|
|
button_release_grab->implicit_ungrab = FALSE;
|
2010-12-13 01:12:43 +00:00
|
|
|
_gdk_display_device_grab_update (display, device, source_device, serial);
|
2009-01-31 18:42:44 +00:00
|
|
|
}
|
|
|
|
}
|
2008-12-09 12:35:46 +00:00
|
|
|
|
2009-02-03 19:15:19 +00:00
|
|
|
out:
|
2008-12-09 12:35:46 +00:00
|
|
|
if (unlink_event)
|
|
|
|
{
|
|
|
|
_gdk_event_queue_remove_link (display, event_link);
|
|
|
|
g_list_free_1 (event_link);
|
|
|
|
gdk_event_free (event);
|
|
|
|
}
|
Bug 318807 – Offscreen windows and window redirection.
2008-03-18 10:49:20 Tim Janik <timj@imendio.com>
* Applied pixmap redirection patch by Alexander Larsson with
various updates from:
Bug 318807 – Offscreen windows and window redirection.
Updates:
* updated docs to mention "Since 2.16".
* tests/testgtk.c: fixed snapshooting pixmap leak.
convert pixmap to pixbuf after snapshooting, to compensate for different
bit depths (occurs when snapshooting ARGB visuals and displaying the
pixmap in an RGB visual).
* gdk/gdkwindow.[hc]: made GdkWindowRedirect private.
* gdk/gdkwindow.c: removed damage idle handler, there's no aparent
need for it. enqueue damage notification as GDK_DAMAGE events
for each painting redirection at the start of the event queue.
consider windows with a redirection fully visible when invalidating,
and when updating from backing store. cleaned up stale variables.
* gdk/gdkevents.c: added _gdk_event_queue_prepend().
* gtk/gtkwidget.c: fixed coordinates for !NO_WINDOW widgets in
gtk_widget_get_snapshot; this fixes garbage snap offsets for gammacurve,
tree, drawingarea, text, handlebox, etc.
clip the redirected window hierarchy to window sizes, the visible
rectangles don't need to be taken into account here.
extended snapshooting docs to recommend gdk_pixbuf_get_from_drawable()
in case pixmap visuals could mismatch.
* gdk/x11/gdkwindow-x11.c: removed _gdk_windowing_window_get_visible_rect().
Base patch:
* tests/testgtk.c: add a "Snapshot" test to demonstrate snapshooting
of possibly obscured widgets into an offscreen pixmap.
* gtk/gtkwidget.[hc]: add GtkWidget::damage-event signal, add
gtk_widget_get_snapshot() to render a widget's contents to a GdkPixmap.
* gtk/gtkmain.c: dispatch GDK_DAMAGE events.
* gdk/gdkwindow.c: moved outer gdk_window_new() and gdk_window_reparent()
implementations here, adapted them to propagate redirects to child windows.
gdk_window_end_paint(): copy repainted window contents to redirection pixmap,
clipped to visible region. queue GDK_DAMAGE event delivery.
gdk_window_redirect_to_drawable(): install window painting redirection.
gdk_window_remove_redirection(): remove previously installed redirection.
* gdk/x11/gdkwindow-x11.c: added _gdk_windowing_window_get_visible_rect(),
renamed _gdk_window_new() and _gdk_window_reparent().
* gdk/gdkwindow.h: added GdkWindowRedirect* to GdkWindowObject, export
gdk_window_redirect_to_drawable() and gdk_window_remove_redirection().
* gdk/gdkevents.h: added GDK_DAMAGE event type.
* gdk/gdkevents.c: extract time and state from GDK_DAMAGE events.
* gdk/gdkinternals.h: added internal prototypes.
svn path=/trunk/; revision=20122
2008-05-21 19:04:24 +00:00
|
|
|
}
|
|
|
|
|
2010-08-12 21:43:11 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_create_similar_surface:
|
|
|
|
* @window: window to make new surface similar to
|
|
|
|
* @content: the content for the new surface
|
|
|
|
* @width: width of the new surface
|
|
|
|
* @height: height of the new surface
|
|
|
|
*
|
|
|
|
* Create a new surface that is as compatible as possible with the
|
|
|
|
* given @window. For example the new surface will have the same
|
|
|
|
* fallback resolution and font options as @window. Generally, the new
|
|
|
|
* surface will also use the same backend as @window, unless that is
|
|
|
|
* not possible for some reason. The type of the returned surface may
|
|
|
|
* be examined with cairo_surface_get_type().
|
|
|
|
*
|
|
|
|
* Initially the surface contents are all 0 (transparent if contents
|
|
|
|
* have transparency, black otherwise.)
|
|
|
|
*
|
|
|
|
* Returns: a pointer to the newly allocated surface. The caller
|
|
|
|
* owns the surface and should call cairo_surface_destroy() when done
|
|
|
|
* with it.
|
|
|
|
*
|
|
|
|
* This function always returns a valid pointer, but it will return a
|
|
|
|
* pointer to a "nil" surface if @other is already in an error state
|
|
|
|
* or any other error occurs.
|
|
|
|
*
|
|
|
|
* Since: 2.22
|
|
|
|
**/
|
|
|
|
cairo_surface_t *
|
|
|
|
gdk_window_create_similar_surface (GdkWindow * window,
|
|
|
|
cairo_content_t content,
|
|
|
|
int width,
|
|
|
|
int height)
|
|
|
|
{
|
|
|
|
cairo_surface_t *window_surface, *surface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GDK_IS_WINDOW (window), NULL);
|
|
|
|
|
2010-11-22 16:23:31 +00:00
|
|
|
window_surface = _gdk_window_ref_cairo_surface (window);
|
2010-08-12 21:43:11 +00:00
|
|
|
|
|
|
|
surface = cairo_surface_create_similar (window_surface,
|
|
|
|
content,
|
|
|
|
width, height);
|
|
|
|
|
|
|
|
cairo_surface_destroy (window_surface);
|
|
|
|
|
|
|
|
return surface;
|
|
|
|
}
|
|
|
|
|
2010-12-05 20:58:23 +00:00
|
|
|
/**
|
|
|
|
* gdk_window_focus:
|
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @timestamp: timestamp of the event triggering the window focus
|
|
|
|
*
|
|
|
|
* Sets keyboard focus to @window. In most cases, gtk_window_present()
|
|
|
|
* should be used on a #GtkWindow, rather than calling this function.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_focus (GdkWindow *window,
|
|
|
|
guint32 timestamp)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->focus (window, timestamp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_type_hint:
|
|
|
|
* @window: A toplevel #GdkWindow
|
|
|
|
* @hint: A hint of the function this window will have
|
|
|
|
*
|
|
|
|
* The application can use this call to provide a hint to the window
|
|
|
|
* manager about the functionality of a window. The window manager
|
|
|
|
* can use this information when determining the decoration and behaviour
|
|
|
|
* of the window.
|
|
|
|
*
|
|
|
|
* The hint must be set before the window is mapped.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_type_hint (GdkWindow *window,
|
|
|
|
GdkWindowTypeHint hint)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_type_hint (window, hint);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_get_type_hint:
|
|
|
|
* @window: A toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* This function returns the type hint set for a window.
|
|
|
|
*
|
|
|
|
* Return value: The type hint set for @window
|
|
|
|
*
|
|
|
|
* Since: 2.10
|
|
|
|
**/
|
|
|
|
GdkWindowTypeHint
|
|
|
|
gdk_window_get_type_hint (GdkWindow *window)
|
|
|
|
{
|
|
|
|
return GDK_WINDOW_IMPL_GET_CLASS (window->impl)->get_type_hint (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_modal_hint:
|
|
|
|
* @window: A toplevel #GdkWindow
|
|
|
|
* @modal: %TRUE if the window is modal, %FALSE otherwise.
|
|
|
|
*
|
|
|
|
* The application can use this hint to tell the window manager
|
|
|
|
* that a certain window has modal behaviour. The window manager
|
|
|
|
* can use this information to handle modal windows in a special
|
|
|
|
* way.
|
|
|
|
*
|
|
|
|
* You should only use this on windows for which you have
|
|
|
|
* previously called gdk_window_set_transient_for()
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_modal_hint (GdkWindow *window,
|
|
|
|
gboolean modal)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_modal_hint (window, modal);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_skip_taskbar_hint:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @skips_taskbar: %TRUE to skip the taskbar
|
|
|
|
*
|
|
|
|
* Toggles whether a window should appear in a task list or window
|
|
|
|
* list. If a window's semantic type as specified with
|
|
|
|
* gdk_window_set_type_hint() already fully describes the window, this
|
|
|
|
* function should <emphasis>not</emphasis> be called in addition,
|
|
|
|
* instead you should allow the window to be treated according to
|
|
|
|
* standard policy for its semantic type.
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_skip_taskbar_hint (GdkWindow *window,
|
|
|
|
gboolean skips_taskbar)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_skip_taskbar_hint (window, skips_taskbar);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_skip_pager_hint:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @skips_pager: %TRUE to skip the pager
|
|
|
|
*
|
|
|
|
* Toggles whether a window should appear in a pager (workspace
|
|
|
|
* switcher, or other desktop utility program that displays a small
|
|
|
|
* thumbnail representation of the windows on the desktop). If a
|
|
|
|
* window's semantic type as specified with gdk_window_set_type_hint()
|
|
|
|
* already fully describes the window, this function should
|
|
|
|
* <emphasis>not</emphasis> be called in addition, instead you should
|
|
|
|
* allow the window to be treated according to standard policy for
|
|
|
|
* its semantic type.
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_skip_pager_hint (GdkWindow *window,
|
|
|
|
gboolean skips_pager)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_skip_pager_hint (window, skips_pager);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_urgency_hint:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @urgent: %TRUE if the window is urgent
|
|
|
|
*
|
|
|
|
* Toggles whether a window needs the user's
|
|
|
|
* urgent attention.
|
|
|
|
*
|
|
|
|
* Since: 2.8
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_urgency_hint (GdkWindow *window,
|
|
|
|
gboolean urgent)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_urgency_hint (window, urgent);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_geometry_hints:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @geometry: geometry hints
|
|
|
|
* @geom_mask: bitmask indicating fields of @geometry to pay attention to
|
|
|
|
*
|
|
|
|
* Sets the geometry hints for @window. Hints flagged in @geom_mask
|
|
|
|
* are set, hints not flagged in @geom_mask are unset.
|
|
|
|
* To unset all hints, use a @geom_mask of 0 and a @geometry of %NULL.
|
|
|
|
*
|
|
|
|
* This function provides hints to the windowing system about
|
|
|
|
* acceptable sizes for a toplevel window. The purpose of
|
|
|
|
* this is to constrain user resizing, but the windowing system
|
|
|
|
* will typically (but is not required to) also constrain the
|
|
|
|
* current size of the window to the provided values and
|
|
|
|
* constrain programatic resizing via gdk_window_resize() or
|
|
|
|
* gdk_window_move_resize().
|
|
|
|
*
|
|
|
|
* Note that on X11, this effect has no effect on windows
|
|
|
|
* of type %GDK_WINDOW_TEMP or windows where override redirect
|
|
|
|
* has been turned on via gdk_window_set_override_redirect()
|
|
|
|
* since these windows are not resizable by the user.
|
|
|
|
*
|
|
|
|
* Since you can't count on the windowing system doing the
|
|
|
|
* constraints for programmatic resizes, you should generally
|
|
|
|
* call gdk_window_constrain_size() yourself to determine
|
|
|
|
* appropriate sizes.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_geometry_hints (GdkWindow *window,
|
|
|
|
const GdkGeometry *geometry,
|
|
|
|
GdkWindowHints geom_mask)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_geometry_hints (window, geometry, geom_mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_title:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @title: title of @window
|
|
|
|
*
|
|
|
|
* Sets the title of a toplevel window, to be displayed in the titlebar.
|
|
|
|
* If you haven't explicitly set the icon name for the window
|
|
|
|
* (using gdk_window_set_icon_name()), the icon name will be set to
|
|
|
|
* @title as well. @title must be in UTF-8 encoding (as with all
|
|
|
|
* user-readable strings in GDK/GTK+). @title may not be %NULL.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_title (GdkWindow *window,
|
|
|
|
const gchar *title)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_title (window, title);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_role:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @role: a string indicating its role
|
|
|
|
*
|
|
|
|
* When using GTK+, typically you should use gtk_window_set_role() instead
|
|
|
|
* of this low-level function.
|
|
|
|
*
|
|
|
|
* The window manager and session manager use a window's role to
|
|
|
|
* distinguish it from other kinds of window in the same application.
|
|
|
|
* When an application is restarted after being saved in a previous
|
|
|
|
* session, all windows with the same title and role are treated as
|
|
|
|
* interchangeable. So if you have two windows with the same title
|
|
|
|
* that should be distinguished for session management purposes, you
|
|
|
|
* should set the role on those windows. It doesn't matter what string
|
|
|
|
* you use for the role, as long as you have a different role for each
|
|
|
|
* non-interchangeable kind of window.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_role (GdkWindow *window,
|
|
|
|
const gchar *role)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_role (window, role);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_startup_id:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @startup_id: a string with startup-notification identifier
|
|
|
|
*
|
|
|
|
* When using GTK+, typically you should use gtk_window_set_startup_id()
|
|
|
|
* instead of this low-level function.
|
|
|
|
*
|
|
|
|
* Since: 2.12
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_startup_id (GdkWindow *window,
|
|
|
|
const gchar *startup_id)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_startup_id (window, startup_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_transient_for:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @parent: another toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* Indicates to the window manager that @window is a transient dialog
|
|
|
|
* associated with the application window @parent. This allows the
|
|
|
|
* window manager to do things like center @window on @parent and
|
|
|
|
* keep @window above @parent.
|
|
|
|
*
|
|
|
|
* See gtk_window_set_transient_for() if you're using #GtkWindow or
|
|
|
|
* #GtkDialog.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_transient_for (GdkWindow *window,
|
|
|
|
GdkWindow *parent)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_transient_for (window, parent);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_get_root_origin:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @x: return location for X position of window frame
|
|
|
|
* @y: return location for Y position of window frame
|
|
|
|
*
|
|
|
|
* Obtains the top-left corner of the window manager frame in root
|
|
|
|
* window coordinates.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_get_root_origin (GdkWindow *window,
|
|
|
|
gint *x,
|
|
|
|
gint *y)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->get_root_origin (window, x, y);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_get_frame_extents:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @rect: rectangle to fill with bounding box of the window frame
|
|
|
|
*
|
|
|
|
* Obtains the bounding box of the window, including window manager
|
|
|
|
* titlebar/borders if any. The frame position is given in root window
|
|
|
|
* coordinates. To get the position of the window itself (rather than
|
|
|
|
* the frame) in root window coordinates, use gdk_window_get_origin().
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_get_frame_extents (GdkWindow *window,
|
|
|
|
GdkRectangle *rect)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->get_frame_extents (window, rect);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_override_redirect:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @override_redirect: %TRUE if window should be override redirect
|
|
|
|
*
|
|
|
|
* An override redirect window is not under the control of the window manager.
|
|
|
|
* This means it won't have a titlebar, won't be minimizable, etc. - it will
|
|
|
|
* be entirely under the control of the application. The window manager
|
|
|
|
* can't see the override redirect window at all.
|
|
|
|
*
|
|
|
|
* Override redirect should only be used for short-lived temporary
|
|
|
|
* windows, such as popup menus. #GtkMenu uses an override redirect
|
|
|
|
* window in its implementation, for example.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_override_redirect (GdkWindow *window,
|
|
|
|
gboolean override_redirect)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_override_redirect (window, override_redirect);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_accept_focus:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @accept_focus: %TRUE if the window should receive input focus
|
|
|
|
*
|
|
|
|
* Setting @accept_focus to %FALSE hints the desktop environment that the
|
|
|
|
* window doesn't want to receive input focus.
|
|
|
|
*
|
|
|
|
* On X, it is the responsibility of the window manager to interpret this
|
|
|
|
* hint. ICCCM-compliant window manager usually respect it.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_accept_focus (GdkWindow *window,
|
|
|
|
gboolean accept_focus)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_accept_focus (window, accept_focus);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_focus_on_map:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @focus_on_map: %TRUE if the window should receive input focus when mapped
|
|
|
|
*
|
|
|
|
* Setting @focus_on_map to %FALSE hints the desktop environment that the
|
|
|
|
* window doesn't want to receive input focus when it is mapped.
|
|
|
|
* focus_on_map should be turned off for windows that aren't triggered
|
|
|
|
* interactively (such as popups from network activity).
|
|
|
|
*
|
|
|
|
* On X, it is the responsibility of the window manager to interpret
|
|
|
|
* this hint. Window managers following the freedesktop.org window
|
|
|
|
* manager extension specification should respect it.
|
|
|
|
*
|
|
|
|
* Since: 2.6
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_focus_on_map (GdkWindow *window,
|
|
|
|
gboolean focus_on_map)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_focus_on_map (window, focus_on_map);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_icon_list:
|
|
|
|
* @window: The #GdkWindow toplevel window to set the icon of.
|
|
|
|
* @pixbufs: (transfer none) (element-type GdkPixbuf):
|
|
|
|
* A list of pixbufs, of different sizes.
|
|
|
|
*
|
|
|
|
* Sets a list of icons for the window. One of these will be used
|
|
|
|
* to represent the window when it has been iconified. The icon is
|
|
|
|
* usually shown in an icon box or some sort of task bar. Which icon
|
|
|
|
* size is shown depends on the window manager. The window manager
|
|
|
|
* can scale the icon but setting several size icons can give better
|
|
|
|
* image quality since the window manager may only need to scale the
|
|
|
|
* icon by a small amount or not at all.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_icon_list (GdkWindow *window,
|
|
|
|
GList *pixbufs)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_icon_list (window, pixbufs);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_icon_name:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @name: name of window while iconified (minimized)
|
|
|
|
*
|
|
|
|
* Windows may have a name used while minimized, distinct from the
|
|
|
|
* name they display in their titlebar. Most of the time this is a bad
|
|
|
|
* idea from a user interface standpoint. But you can set such a name
|
|
|
|
* with this function, if you like.
|
|
|
|
*
|
|
|
|
* After calling this with a non-%NULL @name, calls to gdk_window_set_title()
|
|
|
|
* will not update the icon title.
|
|
|
|
*
|
|
|
|
* Using %NULL for @name unsets the icon title; further calls to
|
|
|
|
* gdk_window_set_title() will again update the icon title as well.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_icon_name (GdkWindow *window,
|
|
|
|
const gchar *name)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_icon_name (window, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_iconify:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* Asks to iconify (minimize) @window. The window manager may choose
|
|
|
|
* to ignore the request, but normally will honor it. Using
|
|
|
|
* gtk_window_iconify() is preferred, if you have a #GtkWindow widget.
|
|
|
|
*
|
|
|
|
* This function only makes sense when @window is a toplevel window.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_iconify (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->iconify (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_deiconify:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* Attempt to deiconify (unminimize) @window. On X11 the window manager may
|
|
|
|
* choose to ignore the request to deiconify. When using GTK+,
|
|
|
|
* use gtk_window_deiconify() instead of the #GdkWindow variant. Or better yet,
|
|
|
|
* you probably want to use gtk_window_present(), which raises the window, focuses it,
|
|
|
|
* unminimizes it, and puts it on the current desktop.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_deiconify (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->deiconify (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_stick:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* "Pins" a window such that it's on all workspaces and does not scroll
|
|
|
|
* with viewports, for window managers that have scrollable viewports.
|
|
|
|
* (When using #GtkWindow, gtk_window_stick() may be more useful.)
|
|
|
|
*
|
|
|
|
* On the X11 platform, this function depends on window manager
|
|
|
|
* support, so may have no effect with many window managers. However,
|
|
|
|
* GDK will do the best it can to convince the window manager to stick
|
|
|
|
* the window. For window managers that don't support this operation,
|
|
|
|
* there's nothing you can do to force it to happen.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_stick (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->stick (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_unstick:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* Reverse operation for gdk_window_stick(); see gdk_window_stick(),
|
|
|
|
* and gtk_window_unstick().
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_unstick (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->unstick (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_maximize:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* Maximizes the window. If the window was already maximized, then
|
|
|
|
* this function does nothing.
|
|
|
|
*
|
|
|
|
* On X11, asks the window manager to maximize @window, if the window
|
|
|
|
* manager supports this operation. Not all window managers support
|
|
|
|
* this, and some deliberately ignore it or don't have a concept of
|
|
|
|
* "maximized"; so you can't rely on the maximization actually
|
|
|
|
* happening. But it will happen with most standard window managers,
|
|
|
|
* and GDK makes a best effort to get it to happen.
|
|
|
|
*
|
|
|
|
* On Windows, reliably maximizes the window.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_maximize (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->maximize (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_unmaximize:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* Unmaximizes the window. If the window wasn't maximized, then this
|
|
|
|
* function does nothing.
|
|
|
|
*
|
|
|
|
* On X11, asks the window manager to unmaximize @window, if the
|
|
|
|
* window manager supports this operation. Not all window managers
|
|
|
|
* support this, and some deliberately ignore it or don't have a
|
|
|
|
* concept of "maximized"; so you can't rely on the unmaximization
|
|
|
|
* actually happening. But it will happen with most standard window
|
|
|
|
* managers, and GDK makes a best effort to get it to happen.
|
|
|
|
*
|
|
|
|
* On Windows, reliably unmaximizes the window.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_unmaximize (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->unmaximize (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_fullscreen:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* Moves the window into fullscreen mode. This means the
|
|
|
|
* window covers the entire screen and is above any panels
|
|
|
|
* or task bars.
|
|
|
|
*
|
|
|
|
* If the window was already fullscreen, then this function does nothing.
|
|
|
|
*
|
|
|
|
* On X11, asks the window manager to put @window in a fullscreen
|
|
|
|
* state, if the window manager supports this operation. Not all
|
|
|
|
* window managers support this, and some deliberately ignore it or
|
|
|
|
* don't have a concept of "fullscreen"; so you can't rely on the
|
|
|
|
* fullscreenification actually happening. But it will happen with
|
|
|
|
* most standard window managers, and GDK makes a best effort to get
|
|
|
|
* it to happen.
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_fullscreen (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->fullscreen (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_unfullscreen:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* Moves the window out of fullscreen mode. If the window was not
|
|
|
|
* fullscreen, does nothing.
|
|
|
|
*
|
|
|
|
* On X11, asks the window manager to move @window out of the fullscreen
|
|
|
|
* state, if the window manager supports this operation. Not all
|
|
|
|
* window managers support this, and some deliberately ignore it or
|
|
|
|
* don't have a concept of "fullscreen"; so you can't rely on the
|
|
|
|
* unfullscreenification actually happening. But it will happen with
|
|
|
|
* most standard window managers, and GDK makes a best effort to get
|
|
|
|
* it to happen.
|
|
|
|
*
|
|
|
|
* Since: 2.2
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_unfullscreen (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->unfullscreen (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_keep_above:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @setting: whether to keep @window above other windows
|
|
|
|
*
|
|
|
|
* Set if @window must be kept above other windows. If the
|
|
|
|
* window was already above, then this function does nothing.
|
|
|
|
*
|
|
|
|
* On X11, asks the window manager to keep @window above, if the window
|
|
|
|
* manager supports this operation. Not all window managers support
|
|
|
|
* this, and some deliberately ignore it or don't have a concept of
|
|
|
|
* "keep above"; so you can't rely on the window being kept above.
|
|
|
|
* But it will happen with most standard window managers,
|
|
|
|
* and GDK makes a best effort to get it to happen.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_keep_above (GdkWindow *window,
|
|
|
|
gboolean setting)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_keep_above (window, setting);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_keep_below:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @setting: whether to keep @window below other windows
|
|
|
|
*
|
|
|
|
* Set if @window must be kept below other windows. If the
|
|
|
|
* window was already below, then this function does nothing.
|
|
|
|
*
|
|
|
|
* On X11, asks the window manager to keep @window below, if the window
|
|
|
|
* manager supports this operation. Not all window managers support
|
|
|
|
* this, and some deliberately ignore it or don't have a concept of
|
|
|
|
* "keep below"; so you can't rely on the window being kept below.
|
|
|
|
* But it will happen with most standard window managers,
|
|
|
|
* and GDK makes a best effort to get it to happen.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_keep_below (GdkWindow *window, gboolean setting)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_keep_below (window, setting);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_get_group:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* Returns the group leader window for @window. See gdk_window_set_group().
|
|
|
|
*
|
|
|
|
* Return value: (transfer none): the group leader window for @window
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
|
|
|
**/
|
|
|
|
GdkWindow *
|
|
|
|
gdk_window_get_group (GdkWindow *window)
|
|
|
|
{
|
|
|
|
return GDK_WINDOW_IMPL_GET_CLASS (window->impl)->get_group (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_group:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @leader: group leader window, or %NULL to restore the default group leader window
|
|
|
|
*
|
|
|
|
* Sets the group leader window for @window. By default,
|
|
|
|
* GDK sets the group leader for all toplevel windows
|
|
|
|
* to a global window implicitly created by GDK. With this function
|
|
|
|
* you can override this default.
|
|
|
|
*
|
|
|
|
* The group leader window allows the window manager to distinguish
|
|
|
|
* all windows that belong to a single application. It may for example
|
|
|
|
* allow users to minimize/unminimize all windows belonging to an
|
|
|
|
* application at once. You should only set a non-default group window
|
|
|
|
* if your application pretends to be multiple applications.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_group (GdkWindow *window,
|
|
|
|
GdkWindow *leader)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_group (window, leader);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_decorations:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @decorations: decoration hint mask
|
|
|
|
*
|
|
|
|
* "Decorations" are the features the window manager adds to a toplevel #GdkWindow.
|
|
|
|
* This function sets the traditional Motif window manager hints that tell the
|
|
|
|
* window manager which decorations you would like your window to have.
|
|
|
|
* Usually you should use gtk_window_set_decorated() on a #GtkWindow instead of
|
|
|
|
* using the GDK function directly.
|
|
|
|
*
|
|
|
|
* The @decorations argument is the logical OR of the fields in
|
|
|
|
* the #GdkWMDecoration enumeration. If #GDK_DECOR_ALL is included in the
|
|
|
|
* mask, the other bits indicate which decorations should be turned off.
|
|
|
|
* If #GDK_DECOR_ALL is not included, then the other bits indicate
|
|
|
|
* which decorations should be turned on.
|
|
|
|
*
|
|
|
|
* Most window managers honor a decorations hint of 0 to disable all decorations,
|
|
|
|
* but very few honor all possible combinations of bits.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_decorations (GdkWindow *window,
|
|
|
|
GdkWMDecoration decorations)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_decorations (window, decorations);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_get_decorations:
|
|
|
|
* @window: The toplevel #GdkWindow to get the decorations from
|
|
|
|
* @decorations: The window decorations will be written here
|
|
|
|
*
|
|
|
|
* Returns the decorations set on the GdkWindow with
|
|
|
|
* gdk_window_set_decorations().
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the window has decorations set, %FALSE otherwise.
|
|
|
|
**/
|
|
|
|
gboolean
|
|
|
|
gdk_window_get_decorations(GdkWindow *window,
|
|
|
|
GdkWMDecoration *decorations)
|
|
|
|
{
|
|
|
|
return GDK_WINDOW_IMPL_GET_CLASS (window->impl)->get_decorations (window, decorations);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_functions:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @functions: bitmask of operations to allow on @window
|
|
|
|
*
|
|
|
|
* Sets hints about the window management functions to make available
|
|
|
|
* via buttons on the window frame.
|
|
|
|
*
|
|
|
|
* On the X backend, this function sets the traditional Motif window
|
|
|
|
* manager hint for this purpose. However, few window managers do
|
|
|
|
* anything reliable or interesting with this hint. Many ignore it
|
|
|
|
* entirely.
|
|
|
|
*
|
|
|
|
* The @functions argument is the logical OR of values from the
|
|
|
|
* #GdkWMFunction enumeration. If the bitmask includes #GDK_FUNC_ALL,
|
|
|
|
* then the other bits indicate which functions to disable; if
|
|
|
|
* it doesn't include #GDK_FUNC_ALL, it indicates which functions to
|
|
|
|
* enable.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_set_functions (GdkWindow *window,
|
|
|
|
GdkWMFunction functions)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_functions (window, functions);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_begin_resize_drag:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @edge: the edge or corner from which the drag is started
|
|
|
|
* @button: the button being used to drag
|
|
|
|
* @root_x: root window X coordinate of mouse click that began the drag
|
|
|
|
* @root_y: root window Y coordinate of mouse click that began the drag
|
|
|
|
* @timestamp: timestamp of mouse click that began the drag (use gdk_event_get_time())
|
|
|
|
*
|
|
|
|
* Begins a window resize operation (for a toplevel window).
|
|
|
|
* You might use this function to implement a "window resize grip," for
|
|
|
|
* example; in fact #GtkStatusbar uses it. The function works best
|
|
|
|
* with window managers that support the <ulink url="http://www.freedesktop.org/Standards/wm-spec">Extended Window Manager Hints</ulink>, but has a
|
|
|
|
* fallback implementation for other window managers.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_begin_resize_drag (GdkWindow *window,
|
|
|
|
GdkWindowEdge edge,
|
|
|
|
gint button,
|
|
|
|
gint root_x,
|
|
|
|
gint root_y,
|
|
|
|
guint32 timestamp)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->begin_resize_drag (window, edge, button, root_x, root_y, timestamp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_begin_move_drag:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
* @button: the button being used to drag
|
|
|
|
* @root_x: root window X coordinate of mouse click that began the drag
|
|
|
|
* @root_y: root window Y coordinate of mouse click that began the drag
|
|
|
|
* @timestamp: timestamp of mouse click that began the drag
|
|
|
|
*
|
|
|
|
* Begins a window move operation (for a toplevel window). You might
|
|
|
|
* use this function to implement a "window move grip," for
|
|
|
|
* example. The function works best with window managers that support
|
|
|
|
* the <ulink url="http://www.freedesktop.org/Standards/wm-spec">Extended
|
|
|
|
* Window Manager Hints</ulink>, but has a fallback implementation for
|
|
|
|
* other window managers.
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_begin_move_drag (GdkWindow *window,
|
|
|
|
gint button,
|
|
|
|
gint root_x,
|
|
|
|
gint root_y,
|
|
|
|
guint32 timestamp)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->begin_move_drag (window, button, root_x, root_y, timestamp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_enable_synchronized_configure:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* Indicates that the application will cooperate with the window
|
|
|
|
* system in synchronizing the window repaint with the window
|
|
|
|
* manager during resizing operations. After an application calls
|
|
|
|
* this function, it must call gdk_window_configure_finished() every
|
|
|
|
* time it has finished all processing associated with a set of
|
|
|
|
* Configure events. Toplevel GTK+ windows automatically use this
|
|
|
|
* protocol.
|
|
|
|
*
|
|
|
|
* On X, calling this function makes @window participate in the
|
|
|
|
* _NET_WM_SYNC_REQUEST window manager protocol.
|
|
|
|
*
|
|
|
|
* Since: 2.6
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_enable_synchronized_configure (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->enable_synchronized_configure (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_configure_finished:
|
|
|
|
* @window: a toplevel #GdkWindow
|
|
|
|
*
|
|
|
|
* Signal to the window system that the application has finished
|
|
|
|
* handling Configure events it has received. Window Managers can
|
|
|
|
* use this to better synchronize the frame repaint with the
|
|
|
|
* application. GTK+ applications will automatically call this
|
|
|
|
* function when appropriate.
|
|
|
|
*
|
|
|
|
* This function can only be called if gdk_window_enable_synchronized_configure()
|
|
|
|
* was called previously.
|
|
|
|
*
|
|
|
|
* Since: 2.6
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_window_configure_finished (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->configure_finished (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_set_opacity:
|
|
|
|
* @window: a top-level #GdkWindow
|
|
|
|
* @opacity: opacity
|
|
|
|
*
|
|
|
|
* Request the windowing system to make @window partially transparent,
|
|
|
|
* with opacity 0 being fully transparent and 1 fully opaque. (Values
|
|
|
|
* of the opacity parameter are clamped to the [0,1] range.)
|
|
|
|
*
|
|
|
|
* On X11, this works only on X screens with a compositing manager
|
|
|
|
* running.
|
|
|
|
*
|
|
|
|
* For setting up per-pixel alpha, see gdk_screen_get_rgba_visual().
|
|
|
|
* For making non-toplevel windows translucent, see
|
|
|
|
* gdk_window_set_composited().
|
|
|
|
*
|
|
|
|
* Since: 2.12
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_window_set_opacity (GdkWindow *window,
|
|
|
|
gdouble opacity)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->set_opacity (window, opacity);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This function is called when the XWindow is really gone.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_window_destroy_notify (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->destroy_notify (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_window_register_dnd:
|
|
|
|
* @window: a #GdkWindow.
|
|
|
|
*
|
|
|
|
* Registers a window as a potential drop destination.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_window_register_dnd (GdkWindow *window)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->register_dnd (window);
|
|
|
|
}
|
2010-12-09 05:02:35 +00:00
|
|
|
|
2010-12-10 06:27:10 +00:00
|
|
|
/**
|
|
|
|
* gdk_drag_begin:
|
|
|
|
* @window: the source window for this drag.
|
|
|
|
* @targets: (transfer none) (element-type GdkAtom): the offered targets,
|
2010-12-25 05:02:39 +00:00
|
|
|
* as list of #GdkAtoms
|
2010-12-10 06:27:10 +00:00
|
|
|
*
|
|
|
|
* Starts a drag and creates a new drag context for it.
|
2010-12-25 05:02:39 +00:00
|
|
|
* This function assumes that the drag is controlled by the
|
|
|
|
* client pointer device, use gdk_drag_begin_for_device() to
|
|
|
|
* begin a drag with a different device.
|
2010-12-10 06:27:10 +00:00
|
|
|
*
|
|
|
|
* This function is called by the drag source.
|
|
|
|
*
|
2010-12-25 05:02:39 +00:00
|
|
|
* Return value: (transfer full): a newly created #GdkDragContext
|
2010-12-10 06:27:10 +00:00
|
|
|
*/
|
|
|
|
GdkDragContext *
|
|
|
|
gdk_drag_begin (GdkWindow *window,
|
|
|
|
GList *targets)
|
|
|
|
{
|
|
|
|
GdkDeviceManager *device_manager;
|
|
|
|
GdkDevice *device;
|
|
|
|
|
|
|
|
device_manager = gdk_display_get_device_manager (gdk_window_get_display (window));
|
|
|
|
device = gdk_device_manager_get_client_pointer (device_manager);
|
|
|
|
|
|
|
|
return gdk_drag_begin_for_device (window, device, targets);
|
|
|
|
}
|
|
|
|
|
2010-12-25 05:02:39 +00:00
|
|
|
/**
|
|
|
|
* gdk_drag_begin_for_device:
|
|
|
|
* @window: the source window for this drag
|
|
|
|
* @device: the device that controls this drag
|
|
|
|
* @targets: (transfer none) (element-type GdkAtom): the offered targets,
|
|
|
|
* as list of #GdkAtoms
|
|
|
|
*
|
|
|
|
* Starts a drag and creates a new drag context for it.
|
|
|
|
*
|
|
|
|
* This function is called by the drag source.
|
|
|
|
*
|
|
|
|
* Return value: (transfer full): a newly created #GdkDragContext
|
|
|
|
*/
|
2010-12-10 06:27:10 +00:00
|
|
|
GdkDragContext *
|
|
|
|
gdk_drag_begin_for_device (GdkWindow *window,
|
|
|
|
GdkDevice *device,
|
|
|
|
GList *targets)
|
|
|
|
{
|
|
|
|
return GDK_WINDOW_IMPL_GET_CLASS (window->impl)->drag_begin (window, device, targets);
|
|
|
|
}
|
2010-12-16 06:21:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_test_render_sync:
|
|
|
|
* @window: a mapped #GdkWindow
|
|
|
|
*
|
2010-12-25 05:26:22 +00:00
|
|
|
* Retrieves a pixel from @window to force the windowing
|
2010-12-16 06:21:49 +00:00
|
|
|
* system to carry out any pending rendering commands.
|
2010-12-25 05:26:22 +00:00
|
|
|
*
|
|
|
|
* This function is intended to be used to synchronize with rendering
|
2010-12-16 06:21:49 +00:00
|
|
|
* pipelines, to benchmark windowing system rendering operations.
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_test_render_sync (GdkWindow *window)
|
|
|
|
{
|
|
|
|
return GDK_WINDOW_IMPL_GET_CLASS (window->impl)->sync_rendering (window);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-12-25 05:26:22 +00:00
|
|
|
* gdk_test_simulate_key:
|
|
|
|
* @window: a #GdkWindow to simulate a key event for
|
|
|
|
* @x: x coordinate within @window for the key event
|
|
|
|
* @y: y coordinate within @window for the key event
|
|
|
|
* @keyval: A GDK keyboard value
|
|
|
|
* @modifiers: Keyboard modifiers the event is setup with
|
2010-12-16 06:21:49 +00:00
|
|
|
* @key_pressrelease: either %GDK_KEY_PRESS or %GDK_KEY_RELEASE
|
|
|
|
*
|
|
|
|
* This function is intended to be used in GTK+ test programs.
|
|
|
|
* If (@x,@y) are > (-1,-1), it will warp the mouse pointer to
|
2010-12-25 05:26:22 +00:00
|
|
|
* the given (@x,@y) coordinates within @window and simulate a
|
2010-12-16 06:21:49 +00:00
|
|
|
* key press or release event.
|
|
|
|
*
|
|
|
|
* When the mouse pointer is warped to the target location, use
|
|
|
|
* of this function outside of test programs that run in their
|
|
|
|
* own virtual windowing system (e.g. Xvfb) is not recommended.
|
|
|
|
* If (@x,@y) are passed as (-1,-1), the mouse pointer will not
|
|
|
|
* be warped and @window origin will be used as mouse pointer
|
|
|
|
* location for the event.
|
|
|
|
*
|
2010-12-25 05:26:22 +00:00
|
|
|
* Also, gdk_test_simulate_key() is a fairly low level function,
|
2010-12-16 06:21:49 +00:00
|
|
|
* for most testing purposes, gtk_test_widget_send_key() is the
|
|
|
|
* right function to call which will generate a key press event
|
|
|
|
* followed by its accompanying key release event.
|
|
|
|
*
|
2010-12-25 05:26:22 +00:00
|
|
|
* Returns: whether all actions necessary for a key event simulation
|
|
|
|
* were carried out successfully
|
2010-12-16 06:21:49 +00:00
|
|
|
*
|
|
|
|
* Since: 2.14
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gdk_test_simulate_key (GdkWindow *window,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
guint keyval,
|
|
|
|
GdkModifierType modifiers,
|
|
|
|
GdkEventType key_pressrelease)
|
|
|
|
{
|
|
|
|
return GDK_WINDOW_IMPL_GET_CLASS (window->impl)
|
|
|
|
->simulate_key (window, x, y, keyval, modifiers, key_pressrelease);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2010-12-25 05:26:22 +00:00
|
|
|
* gdk_test_simulate_button:
|
|
|
|
* @window: a #GdkWindow to simulate a button event for
|
|
|
|
* @x: x coordinate within @window for the button event
|
|
|
|
* @y: y coordinate within @window for the button event
|
|
|
|
* @button: Number of the pointer button for the event, usually 1, 2 or 3
|
|
|
|
* @modifiers: Keyboard modifiers the event is setup with
|
2010-12-16 06:21:49 +00:00
|
|
|
* @button_pressrelease: either %GDK_BUTTON_PRESS or %GDK_BUTTON_RELEASE
|
|
|
|
*
|
|
|
|
* This function is intended to be used in GTK+ test programs.
|
2010-12-25 05:26:22 +00:00
|
|
|
* It will warp the mouse pointer to the given (@x,@y) coordinates
|
2010-12-16 06:21:49 +00:00
|
|
|
* within @window and simulate a button press or release event.
|
|
|
|
* Because the mouse pointer needs to be warped to the target
|
|
|
|
* location, use of this function outside of test programs that
|
|
|
|
* run in their own virtual windowing system (e.g. Xvfb) is not
|
|
|
|
* recommended.
|
|
|
|
*
|
2010-12-25 05:26:22 +00:00
|
|
|
* Also, gdk_test_simulate_button() is a fairly low level function,
|
2010-12-16 06:21:49 +00:00
|
|
|
* for most testing purposes, gtk_test_widget_click() is the right
|
|
|
|
* function to call which will generate a button press event followed
|
|
|
|
* by its accompanying button release event.
|
|
|
|
*
|
2010-12-25 05:26:22 +00:00
|
|
|
* Returns: whether all actions necessary for a button event simulation
|
|
|
|
* were carried out successfully
|
2010-12-16 06:21:49 +00:00
|
|
|
*
|
|
|
|
* Since: 2.14
|
2010-12-25 05:26:22 +00:00
|
|
|
*/
|
2010-12-16 06:21:49 +00:00
|
|
|
gboolean
|
|
|
|
gdk_test_simulate_button (GdkWindow *window,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
guint button, /*1..3*/
|
|
|
|
GdkModifierType modifiers,
|
|
|
|
GdkEventType button_pressrelease)
|
|
|
|
{
|
|
|
|
return GDK_WINDOW_IMPL_GET_CLASS (window->impl)
|
|
|
|
->simulate_button (window, x, y, button, modifiers, button_pressrelease);
|
|
|
|
}
|
2010-12-17 00:00:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_property_get:
|
2010-12-25 05:26:22 +00:00
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @property: the property to retrieve
|
2010-12-17 00:00:01 +00:00
|
|
|
* @type: the desired property type, or %GDK_NONE, if any type of data
|
|
|
|
* is acceptable. If this does not match the actual
|
|
|
|
* type, then @actual_format and @actual_length will
|
|
|
|
* be filled in, a warning will be printed to stderr
|
|
|
|
* and no data will be returned.
|
|
|
|
* @offset: the offset into the property at which to begin
|
|
|
|
* retrieving data, in 4 byte units.
|
|
|
|
* @length: the length of the data to retrieve in bytes. Data is
|
|
|
|
* considered to be retrieved in 4 byte chunks, so @length
|
|
|
|
* will be rounded up to the next highest 4 byte boundary
|
|
|
|
* (so be careful not to pass a value that might overflow
|
|
|
|
* when rounded up).
|
|
|
|
* @pdelete: if %TRUE, delete the property after retrieving the
|
|
|
|
* data.
|
|
|
|
* @actual_property_type: location to store the actual type of
|
|
|
|
* the property.
|
|
|
|
* @actual_format: location to store the actual return format of the
|
|
|
|
* data; either 8, 16 or 32 bits.
|
|
|
|
* @actual_length: location to store the length of the retrieved data, in
|
|
|
|
* bytes. Data returned in the 32 bit format is stored
|
|
|
|
* in a long variable, so the actual number of 32 bit
|
|
|
|
* elements should be be calculated via
|
|
|
|
* @actual_length / sizeof(glong) to ensure portability to
|
|
|
|
* 64 bit systems.
|
|
|
|
* @data: location to store a pointer to the data. The retrieved
|
|
|
|
* data should be freed with g_free() when you are finished
|
|
|
|
* using it.
|
|
|
|
*
|
|
|
|
* Retrieves a portion of the contents of a property. If the
|
|
|
|
* property does not exist, then the function returns %FALSE,
|
|
|
|
* and %GDK_NONE will be stored in @actual_property_type.
|
|
|
|
*
|
|
|
|
* <note>
|
|
|
|
* <para>
|
|
|
|
* The XGetWindowProperty() function that gdk_property_get()
|
|
|
|
* uses has a very confusing and complicated set of semantics.
|
|
|
|
* uses has a very confusing and complicated set of semantics.
|
|
|
|
* Unfortunately, gdk_property_get() makes the situation
|
|
|
|
* worse instead of better (the semantics should be considered
|
|
|
|
* undefined), and also prints warnings to stderr in cases where it
|
|
|
|
* should return a useful error to the program. You are advised to use
|
|
|
|
* XGetWindowProperty() directly until a replacement function for
|
|
|
|
* gdk_property_get()
|
|
|
|
* is provided.
|
|
|
|
* </para>
|
|
|
|
* </note>
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if data was successfully received and stored
|
|
|
|
* in @data, otherwise %FALSE.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gdk_property_get (GdkWindow *window,
|
|
|
|
GdkAtom property,
|
|
|
|
GdkAtom type,
|
|
|
|
gulong offset,
|
|
|
|
gulong length,
|
|
|
|
gint pdelete,
|
|
|
|
GdkAtom *actual_property_type,
|
|
|
|
gint *actual_format_type,
|
|
|
|
gint *actual_length,
|
|
|
|
guchar **data)
|
|
|
|
{
|
|
|
|
return GDK_WINDOW_IMPL_GET_CLASS (window->impl)
|
|
|
|
->get_property (window, property, type, offset, length, pdelete,
|
|
|
|
actual_property_type, actual_format_type,
|
|
|
|
actual_length, data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_property_change:
|
2010-12-25 05:26:22 +00:00
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @property: the property to change
|
2010-12-17 00:00:01 +00:00
|
|
|
* @type: the new type for the property. If @mode is
|
|
|
|
* %GDK_PROP_MODE_PREPEND or %GDK_PROP_MODE_APPEND, then this
|
|
|
|
* must match the existing type or an error will occur.
|
|
|
|
* @format: the new format for the property. If @mode is
|
|
|
|
* %GDK_PROP_MODE_PREPEND or %GDK_PROP_MODE_APPEND, then this
|
|
|
|
* must match the existing format or an error will occur.
|
|
|
|
* @mode: a value describing how the new data is to be combined
|
|
|
|
* with the current data.
|
|
|
|
* @data: the data (a <literal>guchar *</literal>
|
|
|
|
* <literal>gushort *</literal>, or <literal>gulong *</literal>,
|
|
|
|
* depending on @format), cast to a <literal>guchar *</literal>.
|
|
|
|
* @nelements: the number of elements of size determined by the format,
|
|
|
|
* contained in @data.
|
|
|
|
*
|
|
|
|
* Changes the contents of a property on a window.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_property_change (GdkWindow *window,
|
|
|
|
GdkAtom property,
|
|
|
|
GdkAtom type,
|
|
|
|
gint format,
|
|
|
|
GdkPropMode mode,
|
|
|
|
const guchar *data,
|
|
|
|
gint nelements)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)
|
|
|
|
->change_property (window, property, type, format, mode, data, nelements);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_property_delete:
|
2010-12-25 05:26:22 +00:00
|
|
|
* @window: a #GdkWindow
|
|
|
|
* @property: the property to delete
|
2010-12-17 00:00:01 +00:00
|
|
|
*
|
|
|
|
* Deletes a property from a window.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_property_delete (GdkWindow *window,
|
|
|
|
GdkAtom property)
|
|
|
|
{
|
|
|
|
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->delete_property (window, property);
|
|
|
|
}
|