aboutsummaryrefslogtreecommitdiff
path: root/src/transport-widget.c
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2011-07-28 15:07:17 +0100
committerConor Curran <conor.curran@canonical.com>2011-07-28 15:07:17 +0100
commitdb5e00800fb527e9b88cc7c8c1b29ac44b5eee29 (patch)
tree5a3fd1f38e500682f2ab18afd768c2f2e53ff09e /src/transport-widget.c
parentc53c671e8e453068d1ee0b9186d6e337797b4d60 (diff)
downloadayatana-indicator-sound-db5e00800fb527e9b88cc7c8c1b29ac44b5eee29.tar.gz
ayatana-indicator-sound-db5e00800fb527e9b88cc7c8c1b29ac44b5eee29.tar.bz2
ayatana-indicator-sound-db5e00800fb527e9b88cc7c8c1b29ac44b5eee29.zip
tidied style context method calls, more visibility added around querying if the transition is actually running
Diffstat (limited to 'src/transport-widget.c')
-rw-r--r--src/transport-widget.c34
1 files changed, 22 insertions, 12 deletions
diff --git a/src/transport-widget.c b/src/transport-widget.c
index c1ff794..5b3001a 100644
--- a/src/transport-widget.c
+++ b/src/transport-widget.c
@@ -1259,6 +1259,8 @@ _surface_blur (cairo_surface_t* surface,
cairo_surface_mark_dirty (surface);
}
+static gdouble progress = 0.0;
+
static gboolean
draw (GtkWidget* button, cairo_t *cr)
{
@@ -1794,20 +1796,19 @@ draw (GtkWidget* button, cairo_t *cr)
}
else if(priv->current_state == TRANSPORT_STATE_LAUNCHING)
{
- gtk_style_context_set_state (spinner_style_context, GTK_STATE_FLAG_ACTIVE);
-
- gdouble progress;
- gtk_style_context_state_is_running(spinner_style_context, GTK_STATE_ACTIVE, &progress);
-
- GtkStateFlags state = gtk_style_context_get_state(spinner_style_context);
- // state 0 = NORMAL
- // state 1 = ACTIVE
-
- g_debug ("launching in draw state: %i, %f", state ,progress );
- gtk_render_activity (spinner_style_context, cr, 106, 6 , 30, 30);
+ GtkStateFlags state = gtk_style_context_get_state(spinner_style_context);
+ // state 0 = NORMAL
+ // state 1 = ACTIVE
- // need to redraw the cairo context here, cairo_paint() doesn't seem to do it
+ g_debug ("launching in draw state: %i and progress %f", state, progress );
+ gtk_render_activity (spinner_style_context, cr, 106, 6 , 30, 30);
+ g_debug ("context style is running ? = %i",
+ gtk_style_context_state_is_running (spinner_style_context,
+ GTK_STATE_ACTIVE,
+ &progress));
+
+ // need to redraw the cairo context here, cairo_paint() doesn't seem to do it
cairo_paint(cr);
/*
@@ -1912,6 +1913,7 @@ transport_widget_fade_playbutton (gpointer userdata)
gtk_widget_queue_draw (GTK_WIDGET(bar));
return TRUE;
}
+
/**
* transport_widget_update_state()
* Callback for updates from the other side of dbus
@@ -1930,6 +1932,14 @@ transport_widget_property_update(DbusmenuMenuitem* item, gchar* property,
TransportState new_state = (TransportState)g_variant_get_int32(value);
//g_debug("transport_widget_update_state - with value %i", new_state);
if (new_state == TRANSPORT_STATE_LAUNCHING){
+ gtk_style_context_notify_state_change (spinner_style_context,
+ gtk_widget_get_window ( GTK_WIDGET(userdata)),
+ NULL,
+ GTK_STATE_PRELIGHT,
+ TRUE);
+
+ gtk_style_context_set_state (spinner_style_context, GTK_STATE_FLAG_ACTIVE);
+
priv->current_state = TRANSPORT_STATE_LAUNCHING;
priv->launching_timer = g_timeout_add (100,
transport_widget_fade_playbutton,