mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
set the background of our bin window also (fixes #58957)
2002-01-09 jacob berkman <jacob@ximian.com> * gtk/gtklayout.c (gtk_layout_style_set): set the background of our bin window also (fixes #58957)
This commit is contained in:
parent
ed50ebfb28
commit
f3f0ad29f1
@ -1,3 +1,8 @@
|
||||
2002-01-09 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/gtklayout.c (gtk_layout_style_set): set the background of
|
||||
our bin window also (fixes #58957)
|
||||
|
||||
Wed Jan 9 19:10:07 2002 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreeselection.c
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-01-09 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/gtklayout.c (gtk_layout_style_set): set the background of
|
||||
our bin window also (fixes #58957)
|
||||
|
||||
Wed Jan 9 19:10:07 2002 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreeselection.c
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-01-09 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/gtklayout.c (gtk_layout_style_set): set the background of
|
||||
our bin window also (fixes #58957)
|
||||
|
||||
Wed Jan 9 19:10:07 2002 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreeselection.c
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-01-09 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/gtklayout.c (gtk_layout_style_set): set the background of
|
||||
our bin window also (fixes #58957)
|
||||
|
||||
Wed Jan 9 19:10:07 2002 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreeselection.c
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-01-09 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/gtklayout.c (gtk_layout_style_set): set the background of
|
||||
our bin window also (fixes #58957)
|
||||
|
||||
Wed Jan 9 19:10:07 2002 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreeselection.c
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-01-09 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/gtklayout.c (gtk_layout_style_set): set the background of
|
||||
our bin window also (fixes #58957)
|
||||
|
||||
Wed Jan 9 19:10:07 2002 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreeselection.c
|
||||
|
@ -1,3 +1,8 @@
|
||||
2002-01-09 jacob berkman <jacob@ximian.com>
|
||||
|
||||
* gtk/gtklayout.c (gtk_layout_style_set): set the background of
|
||||
our bin window also (fixes #58957)
|
||||
|
||||
Wed Jan 9 19:10:07 2002 Jonathan Blandford <jrb@redhat.com>
|
||||
|
||||
* gtk/gtktreeselection.c
|
||||
|
@ -101,6 +101,8 @@ static void gtk_layout_allocate_child (GtkLayout *layout,
|
||||
GtkLayoutChild *child);
|
||||
static void gtk_layout_adjustment_changed (GtkAdjustment *adjustment,
|
||||
GtkLayout *layout);
|
||||
static void gtk_layout_style_set (GtkWidget *widget,
|
||||
GtkStyle *old_style);
|
||||
|
||||
|
||||
static GtkWidgetClass *parent_class = NULL;
|
||||
@ -630,6 +632,7 @@ gtk_layout_class_init (GtkLayoutClass *class)
|
||||
widget_class->size_request = gtk_layout_size_request;
|
||||
widget_class->size_allocate = gtk_layout_size_allocate;
|
||||
widget_class->expose_event = gtk_layout_expose;
|
||||
widget_class->style_set = gtk_layout_style_set;
|
||||
|
||||
container_class->remove = gtk_layout_remove;
|
||||
container_class->forall = gtk_layout_forall;
|
||||
@ -834,6 +837,18 @@ gtk_layout_realize (GtkWidget *widget)
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_layout_style_set (GtkWidget *widget, GtkStyle *old_style)
|
||||
{
|
||||
if (GTK_WIDGET_CLASS (parent_class)->style_set)
|
||||
(* GTK_WIDGET_CLASS (parent_class)->style_set) (widget, old_style);
|
||||
|
||||
if (GTK_WIDGET_REALIZED (widget))
|
||||
{
|
||||
gtk_style_set_background (widget->style, GTK_LAYOUT (widget)->bin_window, GTK_STATE_NORMAL);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_layout_map (GtkWidget *widget)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user