]> Pileus Git - ~andy/gtk/blob - gtk/gtkspinner.c
a11y: Use ATK macros and clean up/2 - GtkSpinner
[~andy/gtk] / gtk / gtkspinner.c
1 /* GTK - The GIMP Toolkit
2  *
3  * Copyright (C) 2007 John Stowers, Neil Jagdish Patel.
4  * Copyright (C) 2009 Bastien Nocera, David Zeuthen
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA  02111-1307, USA.
20  *
21  * Code adapted from egg-spinner
22  * by Christian Hergert <christian.hergert@gmail.com>
23  */
24
25 /*
26  * Modified by the GTK+ Team and others 2007.  See the AUTHORS
27  * file for a list of people on the GTK+ Team.  See the ChangeLog
28  * files for a list of changes.  These files are distributed with
29  * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
30  */
31
32 #include "config.h"
33
34 #include "gtkintl.h"
35 #include "gtkaccessible.h"
36 #include "gtkimage.h"
37 #include "gtkspinner.h"
38 #include "gtkstyle.h"
39
40
41 /**
42  * SECTION:gtkspinner
43  * @Short_description: Show a spinner animation
44  * @Title: GtkSpinner
45  * @See_also: #GtkCellRendererSpinner, #GtkProgressBar
46  *
47  * A GtkSpinner widget displays an icon-size spinning animation.
48  * It is often used as an alternative to a #GtkProgressBar for
49  * displaying indefinite activity, instead of actual progress.
50  *
51  * To start the animation, use gtk_spinner_start(), to stop it
52  * use gtk_spinner_stop().
53  */
54
55
56 #define SPINNER_SIZE 12
57
58 enum {
59   PROP_0,
60   PROP_ACTIVE
61 };
62
63 struct _GtkSpinnerPrivate
64 {
65   guint current;
66   guint num_steps;
67   guint cycle_duration;
68   gboolean active;
69   guint timeout;
70 };
71
72 static void gtk_spinner_dispose        (GObject         *gobject);
73 static void gtk_spinner_map            (GtkWidget       *widget);
74 static void gtk_spinner_unmap          (GtkWidget       *widget);
75 static gboolean gtk_spinner_draw       (GtkWidget       *widget,
76                                         cairo_t         *cr);
77 static void gtk_spinner_style_set      (GtkWidget       *widget,
78                                         GtkStyle        *prev_style);
79 static void gtk_spinner_get_property   (GObject         *object,
80                                         guint            param_id,
81                                         GValue          *value,
82                                         GParamSpec      *pspec);
83 static void gtk_spinner_set_property   (GObject         *object,
84                                         guint            param_id,
85                                         const GValue    *value,
86                                         GParamSpec      *pspec);
87 static void gtk_spinner_set_active     (GtkSpinner      *spinner,
88                                         gboolean         active);
89 static void gtk_spinner_get_preferred_width (GtkWidget  *widget,
90                                         gint            *minimum_size,
91                                         gint            *natural_size);
92 static void gtk_spinner_get_preferred_height (GtkWidget *widget,
93                                         gint            *minimum_size,
94                                         gint            *natural_size);
95
96 static AtkObject *gtk_spinner_get_accessible      (GtkWidget *widget);
97 static GType      gtk_spinner_accessible_get_type (void);
98
99 G_DEFINE_TYPE (GtkSpinner, gtk_spinner, GTK_TYPE_WIDGET)
100
101 static void
102 gtk_spinner_class_init (GtkSpinnerClass *klass)
103 {
104   GObjectClass *gobject_class;
105   GtkWidgetClass *widget_class;
106
107   gobject_class = G_OBJECT_CLASS(klass);
108   g_type_class_add_private (gobject_class, sizeof (GtkSpinnerPrivate));
109   gobject_class->dispose = gtk_spinner_dispose;
110   gobject_class->get_property = gtk_spinner_get_property;
111   gobject_class->set_property = gtk_spinner_set_property;
112
113   widget_class = GTK_WIDGET_CLASS(klass);
114   widget_class->map = gtk_spinner_map;
115   widget_class->unmap = gtk_spinner_unmap;
116   widget_class->draw = gtk_spinner_draw;
117   widget_class->style_set = gtk_spinner_style_set;
118   widget_class->get_accessible = gtk_spinner_get_accessible;
119   widget_class->get_preferred_width = gtk_spinner_get_preferred_width;
120   widget_class->get_preferred_height = gtk_spinner_get_preferred_height;
121
122   /* GtkSpinner:active:
123    *
124    * Whether the spinner is active
125    *
126    * Since: 2.20
127    */
128   g_object_class_install_property (gobject_class,
129                                    PROP_ACTIVE,
130                                    g_param_spec_boolean ("active",
131                                                          P_("Active"),
132                                                          P_("Whether the spinner is active"),
133                                                          FALSE,
134                                                          G_PARAM_READWRITE));
135   /**
136    * GtkSpinner:num-steps:
137    *
138    * The number of steps for the spinner to complete a full loop.
139    * The animation will complete a full cycle in one second by default
140    * (see the #GtkSpinner:cycle-duration style property).
141    *
142    * Since: 2.20
143    */
144   gtk_widget_class_install_style_property (widget_class,
145                                            g_param_spec_uint ("num-steps",
146                                                              P_("Number of steps"),
147                                                              P_("The number of steps for the spinner to complete a full loop. The animation will complete a full cycle in one second by default (see #GtkSpinner:cycle-duration)."),
148                                                              1,
149                                                              G_MAXUINT,
150                                                              12,
151                                                              G_PARAM_READABLE));
152
153   /**
154    * GtkSpinner:cycle-duration:
155    *
156    * The duration in milliseconds for the spinner to complete a full cycle.
157    *
158    * Since: 2.20
159    */
160   gtk_widget_class_install_style_property (widget_class,
161                                            g_param_spec_uint ("cycle-duration",
162                                                              P_("Animation duration"),
163                                                              P_("The length of time in milliseconds for the spinner to complete a full loop"),
164                                                              500,
165                                                              G_MAXUINT,
166                                                              1000,
167                                                              G_PARAM_READABLE));
168 }
169
170 static void
171 gtk_spinner_get_property (GObject    *object,
172                           guint       param_id,
173                           GValue     *value,
174                           GParamSpec *pspec)
175 {
176   GtkSpinnerPrivate *priv;
177
178   priv = GTK_SPINNER (object)->priv;
179
180   switch (param_id)
181     {
182       case PROP_ACTIVE:
183         g_value_set_boolean (value, priv->active);
184         break;
185       default:
186         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
187     }
188 }
189
190 static void
191 gtk_spinner_set_property (GObject      *object,
192                           guint         param_id,
193                           const GValue *value,
194                           GParamSpec   *pspec)
195 {
196   switch (param_id)
197     {
198       case PROP_ACTIVE:
199         gtk_spinner_set_active (GTK_SPINNER (object), g_value_get_boolean (value));
200         break;
201       default:
202         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, param_id, pspec);
203     }
204 }
205
206 static void
207 gtk_spinner_init (GtkSpinner *spinner)
208 {
209   GtkSpinnerPrivate *priv;
210
211   priv = G_TYPE_INSTANCE_GET_PRIVATE (spinner,
212                                       GTK_TYPE_SPINNER,
213                                       GtkSpinnerPrivate);
214   priv->current = 0;
215   priv->timeout = 0;
216
217   spinner->priv = priv;
218
219   gtk_widget_set_has_window (GTK_WIDGET (spinner), FALSE);
220 }
221
222 static void
223 gtk_spinner_get_preferred_width (GtkWidget *widget,
224                                  gint      *minimum_size,
225                                  gint      *natural_size)
226 {
227   if (minimum_size)
228     *minimum_size = SPINNER_SIZE;
229
230   if (natural_size)
231     *natural_size = SPINNER_SIZE;
232 }
233
234 static void
235 gtk_spinner_get_preferred_height (GtkWidget *widget,
236                                   gint      *minimum_size,
237                                   gint      *natural_size)
238 {
239   if (minimum_size)
240     *minimum_size = SPINNER_SIZE;
241
242   if (natural_size)
243     *natural_size = SPINNER_SIZE;
244 }
245
246 static gboolean
247 gtk_spinner_draw (GtkWidget *widget,
248                   cairo_t   *cr)
249 {
250   GtkStateType state_type;
251   GtkSpinnerPrivate *priv;
252
253   priv = GTK_SPINNER (widget)->priv;
254
255   state_type = GTK_STATE_NORMAL;
256   if (!gtk_widget_is_sensitive (widget))
257    state_type = GTK_STATE_INSENSITIVE;
258
259   gtk_paint_spinner (gtk_widget_get_style (widget),
260                      cr,
261                      state_type,
262                      widget,
263                      "spinner",
264                      priv->current,
265                      0, 0,
266                      gtk_widget_get_allocated_width (widget),
267                      gtk_widget_get_allocated_height (widget));
268
269   return FALSE;
270 }
271
272 static gboolean
273 gtk_spinner_timeout (gpointer data)
274 {
275   GtkSpinnerPrivate *priv;
276
277   priv = GTK_SPINNER (data)->priv;
278
279   if (priv->current + 1 >= priv->num_steps)
280     priv->current = 0;
281   else
282     priv->current++;
283
284   gtk_widget_queue_draw (GTK_WIDGET (data));
285
286   return TRUE;
287 }
288
289 static void
290 gtk_spinner_add_timeout (GtkSpinner *spinner)
291 {
292   GtkSpinnerPrivate *priv;
293
294   priv = spinner->priv;
295
296   priv->timeout = gdk_threads_add_timeout ((guint) priv->cycle_duration / priv->num_steps, gtk_spinner_timeout, spinner);
297 }
298
299 static void
300 gtk_spinner_remove_timeout (GtkSpinner *spinner)
301 {
302   GtkSpinnerPrivate *priv;
303
304   priv = spinner->priv;
305
306   g_source_remove (priv->timeout);
307   priv->timeout = 0;
308 }
309
310 static void
311 gtk_spinner_map (GtkWidget *widget)
312 {
313   GtkSpinner *spinner = GTK_SPINNER (widget);
314   GtkSpinnerPrivate *priv = spinner->priv;
315
316   GTK_WIDGET_CLASS (gtk_spinner_parent_class)->map (widget);
317
318   if (priv->active)
319     gtk_spinner_add_timeout (spinner);
320 }
321
322 static void
323 gtk_spinner_unmap (GtkWidget *widget)
324 {
325   GtkSpinner *spinner = GTK_SPINNER (widget);
326   GtkSpinnerPrivate *priv = spinner->priv;
327
328   if (priv->timeout != 0)
329     gtk_spinner_remove_timeout (spinner);
330
331   GTK_WIDGET_CLASS (gtk_spinner_parent_class)->unmap (widget);
332 }
333
334 static void
335 gtk_spinner_style_set (GtkWidget *widget,
336                        GtkStyle  *prev_style)
337 {
338   GtkSpinnerPrivate *priv;
339
340   priv = GTK_SPINNER (widget)->priv;
341
342   gtk_widget_style_get (GTK_WIDGET (widget),
343                         "num-steps", &(priv->num_steps),
344                         "cycle-duration", &(priv->cycle_duration),
345                         NULL);
346
347   if (priv->current > priv->num_steps)
348     priv->current = 0;
349 }
350
351 static void
352 gtk_spinner_dispose (GObject *gobject)
353 {
354   GtkSpinnerPrivate *priv;
355
356   priv = GTK_SPINNER (gobject)->priv;
357
358   if (priv->timeout != 0)
359     {
360       gtk_spinner_remove_timeout (GTK_SPINNER (gobject));
361     }
362
363   G_OBJECT_CLASS (gtk_spinner_parent_class)->dispose (gobject);
364 }
365
366 static void
367 gtk_spinner_set_active (GtkSpinner *spinner,
368                         gboolean    active)
369 {
370   GtkSpinnerPrivate *priv = spinner->priv;
371
372   active = !!active;
373
374   if (priv->active != active)
375     {
376       priv->active = active;
377
378       g_object_notify (G_OBJECT (spinner), "active");
379
380       if (active &&
381           gtk_widget_get_realized (GTK_WIDGET (spinner)) &&
382           priv->timeout == 0)
383         {
384           gtk_spinner_add_timeout (spinner);
385         }
386       else if (!active && priv->timeout != 0)
387         {
388           gtk_spinner_remove_timeout (spinner);
389         }
390     }
391 }
392
393 /* accessible implementation */
394
395 static void
396 gtk_spinner_accessible_image_get_size (AtkImage *image,
397                                        gint     *width,
398                                        gint     *height)
399 {
400   GtkAllocation allocation;
401   GtkWidget *widget;
402
403   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (image));
404   if (widget == NULL)
405     {
406       *width = *height = 0;
407     }
408   else
409     {
410       gtk_widget_get_allocation (widget, &allocation);
411       *width = allocation.width;
412       *height = allocation.height;
413     }
414 }
415
416 static void
417 gtk_spinner_accessible_image_iface_init (AtkImageIface *iface)
418 {
419   iface->get_image_size = gtk_spinner_accessible_image_get_size;
420 }
421
422 /* dummy typedef */
423 typedef struct _GtkSpinnerAccessible            GtkSpinnerAccessible;
424 typedef struct _GtkSpinnerAccessibleClass       GtkSpinnerAccessibleClass;
425
426 ATK_DEFINE_TYPE_WITH_CODE (GtkSpinnerAccessible,
427                            gtk_spinner_accessible,
428                            GTK_TYPE_IMAGE,
429                            G_IMPLEMENT_INTERFACE (ATK_TYPE_IMAGE,
430                                                   gtk_spinner_accessible_image_iface_init));
431
432 static void
433 gtk_spinner_accessible_initialize (AtkObject *accessible,
434                                    gpointer   widget)
435 {
436   ATK_OBJECT_CLASS (gtk_spinner_accessible_parent_class)->initialize (accessible, widget);
437
438   atk_object_set_name (accessible, C_("throbbing progress animation widget", "Spinner"));
439   atk_object_set_description (accessible, _("Provides visual indication of progress"));
440 }
441
442 static void
443 gtk_spinner_accessible_class_init (GtkSpinnerAccessibleClass *klass)
444 {
445   AtkObjectClass *atk_class = ATK_OBJECT_CLASS (klass);
446
447   atk_class->initialize = gtk_spinner_accessible_initialize;
448 }
449
450 static void
451 gtk_spinner_accessible_init (GtkSpinnerAccessible *self)
452 {
453 }
454
455 /* factory */
456 typedef AtkObjectFactory        GtkSpinnerAccessibleFactory;
457 typedef AtkObjectFactoryClass   GtkSpinnerAccessibleFactoryClass;
458
459 G_DEFINE_TYPE (GtkSpinnerAccessibleFactory,
460                gtk_spinner_accessible_factory,
461                ATK_TYPE_OBJECT_FACTORY);
462
463 static GType
464 gtk_spinner_accessible_factory_get_accessible_type (void)
465 {
466   return gtk_spinner_accessible_get_type ();
467 }
468
469 static AtkObject *
470 gtk_spinner_accessible_factory_create_accessible (GObject *obj)
471 {
472   AtkObject *accessible;
473
474   accessible = g_object_new (gtk_spinner_accessible_get_type (), NULL);
475   atk_object_initialize (accessible, obj);
476
477   return accessible;
478 }
479
480 static void
481 gtk_spinner_accessible_factory_class_init (AtkObjectFactoryClass *klass)
482 {
483   klass->create_accessible = gtk_spinner_accessible_factory_create_accessible;
484   klass->get_accessible_type = gtk_spinner_accessible_factory_get_accessible_type;
485 }
486
487 static void
488 gtk_spinner_accessible_factory_init (AtkObjectFactory *factory)
489 {
490 }
491
492 static AtkObject *
493 gtk_spinner_get_accessible (GtkWidget *widget)
494 {
495   static gboolean first_time = TRUE;
496
497   if (first_time)
498     {
499       AtkObjectFactory *factory;
500       AtkRegistry *registry;
501       GType derived_type;
502       GType derived_atk_type;
503
504       /*
505        * Figure out whether accessibility is enabled by looking at the
506        * type of the accessible object which would be created for
507        * the parent type of GtkSpinner.
508        */
509       derived_type = g_type_parent (GTK_TYPE_SPINNER);
510
511       registry = atk_get_default_registry ();
512       factory = atk_registry_get_factory (registry, derived_type);
513       derived_atk_type = atk_object_factory_get_accessible_type (factory);
514       if (g_type_is_a (derived_atk_type, GTK_TYPE_ACCESSIBLE))
515         atk_registry_set_factory_type (registry,
516                                        GTK_TYPE_SPINNER,
517                                        gtk_spinner_accessible_factory_get_type ());
518       first_time = FALSE;
519     }
520
521   return GTK_WIDGET_CLASS (gtk_spinner_parent_class)->get_accessible (widget);
522 }
523
524 /**
525  * gtk_spinner_new:
526  *
527  * Returns a new spinner widget. Not yet started.
528  *
529  * Return value: a new #GtkSpinner
530  *
531  * Since: 2.20
532  */
533 GtkWidget *
534 gtk_spinner_new (void)
535 {
536   return g_object_new (GTK_TYPE_SPINNER, NULL);
537 }
538
539 /**
540  * gtk_spinner_start:
541  * @spinner: a #GtkSpinner
542  *
543  * Starts the animation of the spinner.
544  *
545  * Since: 2.20
546  */
547 void
548 gtk_spinner_start (GtkSpinner *spinner)
549 {
550   g_return_if_fail (GTK_IS_SPINNER (spinner));
551
552   gtk_spinner_set_active (spinner, TRUE);
553 }
554
555 /**
556  * gtk_spinner_stop:
557  * @spinner: a #GtkSpinner
558  *
559  * Stops the animation of the spinner.
560  *
561  * Since: 2.20
562  */
563 void
564 gtk_spinner_stop (GtkSpinner *spinner)
565 {
566   g_return_if_fail (GTK_IS_SPINNER (spinner));
567
568   gtk_spinner_set_active (spinner, FALSE);
569 }