- gdk_draw_arc(widget->window,
- widget->style->fg_gc[GTK_WIDGET_STATE (widget)],
+ // Copio el contexto gráfico del área de dibujo.
+ GdkGC* gc = gdk_gc_new(GDK_DRAWABLE(widget->window));
+ // Le doy los nuevos valores.
+ set_gc(gc);
+ // Dibujo el círculo.
+ gdk_draw_arc(
+ // Área dibujable.
+ GDK_DRAWABLE(widget->window),
+ // Contexto gráfico,
+ gc,
+ // No lo rellena.