gtk+ r21525 - in trunk: . gtk
- From: matthiasc svn gnome org
- To: svn-commits-list gnome org
- Subject: gtk+ r21525 - in trunk: . gtk
- Date: Fri, 26 Sep 2008 23:58:12 +0000 (UTC)
Author: matthiasc
Date: Fri Sep 26 23:58:12 2008
New Revision: 21525
URL: http://svn.gnome.org/viewvc/gtk+?rev=21525&view=rev
Log:
2008-09-26 Matthias Clasen <mclasen redhat com>
Bug 553578 - tabs are not drawn correctly
* gtk/gtknotebook.c: Track the visibility state of notebook tabs
between allocations so that we know to redraw the tab labels if
tabs are hidden and shown without changing position.
Reported by Marek KaÅÃk, patch by Owen Taylor.
Modified:
trunk/ChangeLog
trunk/gtk/gtknotebook.c
Modified: trunk/gtk/gtknotebook.c
==============================================================================
--- trunk/gtk/gtknotebook.c (original)
+++ trunk/gtk/gtknotebook.c Fri Sep 26 23:58:12 2008
@@ -153,6 +153,11 @@
guint reorderable : 1;
guint detachable : 1;
+ /* if true, the tab label was visible on last allocation; we track this so
+ * that we know to redraw the tab area if a tab label was hidden then shown
+ * without changing position */
+ guint tab_allocated_visible : 1;
+
GtkRequisition requisition;
GtkAllocation allocation;
@@ -5556,9 +5561,15 @@
gint tab_curvature;
gint tab_pos = get_effective_tab_pos (notebook);
gboolean tab_allocation_changed;
+ gboolean was_visible = page->tab_allocated_visible;
- if (!page->tab_label)
- return FALSE;
+ if (!page->tab_label ||
+ !GTK_WIDGET_VISIBLE (page->tab_label) ||
+ !gtk_widget_get_child_visible (page->tab_label))
+ {
+ page->tab_allocated_visible = FALSE;
+ return was_visible;
+ }
xthickness = widget->style->xthickness;
ythickness = widget->style->ythickness;
@@ -5630,6 +5641,12 @@
gtk_widget_size_allocate (page->tab_label, &child_allocation);
+ if (!was_visible)
+ {
+ page->tab_allocated_visible = TRUE;
+ tab_allocation_changed = TRUE;
+ }
+
return tab_allocation_changed;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]