diff options
author | Owen Taylor <otaylor@redhat.com> | 2002-08-01 23:43:13 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2002-08-01 23:43:13 +0000 |
commit | 63489392e6c1e452054eb930fa7bd493e51cba9a (patch) | |
tree | 3ad603c3bbd2ea819fa025229dd02658fa08fd0e /gtk/gtkstyle.h | |
parent | 615deb3e4ad2411c61c6b5ed4c5e445218b139bf (diff) | |
download | gdk-pixbuf-63489392e6c1e452054eb930fa7bd493e51cba9a.tar.gz |
New demo for window migration between different displays and screens.
Thu Aug 1 19:09:39 2002 Owen Taylor <otaylor@redhat.com>
* demos/gtk-demo/changedisplay.c: New demo for
window migration between different displays and screens.
* gtk/gtkrc.c gtkstyle.[ch]: Add
_gtk_style_init_for_settings(), so that gtkrc.c
can initialize the styles it creates for the
right display.
* gdk/gdkdisplaymanager.c (gdk_screen_get_default)
* gtk/gtksettings.c (gtk_settings_get_default)
* gtk/gtkstyle.c (gtk_style_init): Handle absence of
a default screen.
* gdk/x11/gdkmain-x11.c (_gdk_windowing_set_default_display):
Handle display == NULL.x
* gdk/gdkdisplay.c (gdk_display_dispose): Free the
event queue.
* gdk/x11/gdkevents-x11.c gdk/x11/gdkdisplay-x11.c:
Remove the event source when closing a display.
* gdk/gdkdisplay.[ch]: Add a ::closed signal, dispose()
isn't convenient enough by itself.
* gdk/x11/gdkevents-x11.c (gdk_xsettings_watch_cb):
Create foreign windows for watch windows if there isn't
an existing window, instead of installing a global filter.
* gdk/x11/gdkscreen-x11.c gdk/x11/gdkprivate-x11.h
gdk/x11/gdkevents-x11.c (_gdk_x11_events_uninit_screen):
Clean up the xsettings_client when we are done with
it.
* gdk/x11/gdkevents-x11.c (_gdk_events_init): Remove
excess call to _gdk_x11_events_init_screen()
Diffstat (limited to 'gtk/gtkstyle.h')
-rw-r--r-- | gtk/gtkstyle.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtkstyle.h b/gtk/gtkstyle.h index ce4c3901c..0fbdf06fd 100644 --- a/gtk/gtkstyle.h +++ b/gtk/gtkstyle.h @@ -56,6 +56,7 @@ typedef struct _GtkRcStyle GtkRcStyle; typedef struct _GtkIconSet GtkIconSet; typedef struct _GtkIconSource GtkIconSource; typedef struct _GtkRcProperty GtkRcProperty; +typedef struct _GtkSettings GtkSettings; typedef gboolean (*GtkRcPropertyParser) (const GParamSpec *pspec, const GString *rc_string, GValue *property_value); @@ -861,6 +862,8 @@ const GValue* _gtk_style_peek_property_value (GtkStyle *style, GParamSpec *pspec, GtkRcPropertyParser parser); +void _gtk_style_init_for_settings (GtkStyle *style, + GtkSettings *settings); /* deprecated */ #ifndef GTK_DISABLE_DEPRECATED |