[evolution/wip/webkit2] Reposition ECalendar children on timeout, not inside size-allocate handler
- From: Tomas Popela <tpopela src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution/wip/webkit2] Reposition ECalendar children on timeout, not inside size-allocate handler
- Date: Tue, 31 May 2016 12:05:36 +0000 (UTC)
commit 9efa5c4223b427fdd130062e26eb4070a9357157
Author: Milan Crha <mcrha redhat com>
Date: Wed Apr 6 10:52:24 2016 +0200
Reposition ECalendar children on timeout, not inside size-allocate handler
This got broken with gtk+ 3.20, as described in bug #764542.
e-util/e-calendar.c | 51 ++++++++++++++++++++++++++++++++++++++++++++-------
1 files changed, 44 insertions(+), 7 deletions(-)
---
diff --git a/e-util/e-calendar.c b/e-util/e-calendar.c
index 9579d67..d5f7391 100644
--- a/e-util/e-calendar.c
+++ b/e-util/e-calendar.c
@@ -66,6 +66,8 @@
#define E_CALENDAR_AUTO_MOVE_TIMEOUT 150
#define E_CALENDAR_AUTO_MOVE_TIMEOUT_DELAY 2
+#define REPOSITION_TIMEOUT_KEY "e-calendar-reposition-timeout-id"
+
static void e_calendar_dispose (GObject *object);
static void e_calendar_realize (GtkWidget *widget);
static void e_calendar_style_updated (GtkWidget *widget);
@@ -330,6 +332,20 @@ e_calendar_new (void)
}
static void
+cancel_pending_reposition_timeout (GObject *cal)
+{
+ guint reposition_timeout_id;
+
+ g_return_if_fail (E_IS_CALENDAR (cal));
+
+ reposition_timeout_id = GPOINTER_TO_UINT (g_object_get_data (cal, REPOSITION_TIMEOUT_KEY));
+ if (reposition_timeout_id) {
+ g_source_remove (reposition_timeout_id);
+ g_object_set_data (cal, REPOSITION_TIMEOUT_KEY, NULL);
+ }
+}
+
+static void
e_calendar_dispose (GObject *object)
{
ECalendar *cal;
@@ -344,6 +360,8 @@ e_calendar_dispose (GObject *object)
cal->timeout_id = 0;
}
+ cancel_pending_reposition_timeout (object);
+
/* Chain up to parent's dispose() method. */
G_OBJECT_CLASS (e_calendar_parent_class)->dispose (object);
}
@@ -425,11 +443,11 @@ e_calendar_get_preferred_height (GtkWidget *widget,
*minimum = *natural = row_height * cal->min_rows + padding.top * 2;
}
-static void
-e_calendar_size_allocate (GtkWidget *widget,
- GtkAllocation *allocation)
+static gboolean
+e_calendar_reposition_timeout_cb (gpointer user_data)
{
- ECalendar *cal;
+ ECalendar *cal = user_data;
+ GtkWidget *widget;
GtkStyleContext *style_context;
GtkBorder padding;
GtkAllocation old_allocation;
@@ -439,14 +457,16 @@ e_calendar_size_allocate (GtkWidget *widget,
gdouble xthickness, ythickness, arrow_button_size, current_x, month_width;
gboolean is_rtl;
- cal = E_CALENDAR (widget);
+ g_return_val_if_fail (E_IS_CALENDAR (cal), FALSE);
+
+ g_object_set_data (G_OBJECT (cal), REPOSITION_TIMEOUT_KEY, NULL);
+
+ widget = GTK_WIDGET (cal);
style_context = gtk_widget_get_style_context (widget);
gtk_style_context_get_padding (style_context, gtk_style_context_get_state (style_context), &padding);
xthickness = padding.left;
ythickness = padding.top;
- (*GTK_WIDGET_CLASS (e_calendar_parent_class)->size_allocate) (widget, allocation);
-
/* Set up Pango prerequisites */
pango_context = gtk_widget_get_pango_context (widget);
font_metrics = pango_context_get_metrics (
@@ -534,6 +554,23 @@ e_calendar_size_allocate (GtkWidget *widget,
NULL);
pango_font_metrics_unref (font_metrics);
+
+ return FALSE;
+}
+
+static void
+e_calendar_size_allocate (GtkWidget *widget,
+ GtkAllocation *allocation)
+{
+ GObject *object;
+
+ (*GTK_WIDGET_CLASS (e_calendar_parent_class)->size_allocate) (widget, allocation);
+
+ object = G_OBJECT (widget);
+
+ cancel_pending_reposition_timeout (object);
+ g_object_set_data (object, REPOSITION_TIMEOUT_KEY, GUINT_TO_POINTER (
+ g_timeout_add (1, e_calendar_reposition_timeout_cb, widget)));
}
void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]