diff options
author | Alexander Larsson <alexl@redhat.com> | 2009-11-03 15:38:35 +0100 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2009-11-05 12:52:12 +0100 |
commit | 39993f147f05a3711b415635c592200f28db5dcd (patch) | |
tree | 4ba7b59888e393733f5805b590781a8aa75ce908 /gdk/gdkwindowimpl.h | |
parent | 4cd5c9894268966d4d8a2586a7d5a7c5c440ee33 (diff) | |
download | gtk+-39993f147f05a3711b415635c592200f28db5dcd.tar.gz |
Add supports_native_bg to GdkWindowImpl
Backends that support native window background setting (and that clears
new window areas to this color/pixmap) should set this to true.
Currently only X11 supports this.
Diffstat (limited to 'gdk/gdkwindowimpl.h')
-rw-r--r-- | gdk/gdkwindowimpl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdk/gdkwindowimpl.h b/gdk/gdkwindowimpl.h index 00f2f1b13d..3a5029b016 100644 --- a/gdk/gdkwindowimpl.h +++ b/gdk/gdkwindowimpl.h @@ -146,6 +146,7 @@ struct _GdkWindowImplIface void (* input_window_destroy) (GdkWindow *window); void (* input_window_crossing)(GdkWindow *window, gboolean enter); + gboolean supports_native_bg; }; /* Interface Functions */ |