]> Pileus Git - ~andy/gtk/blob - gtk/gtkspinner.c
Updated galician translations
[~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, gboolean active)
368 {
369   GtkSpinnerPrivate *priv;
370
371   active = active != FALSE;
372
373   priv = GTK_SPINNER (spinner)->priv;
374
375   if (priv->active != active)
376     {
377       priv->active = active;
378       g_object_notify (G_OBJECT (spinner), "active");
379
380       if (active && gtk_widget_get_realized (GTK_WIDGET (spinner)) && priv->timeout == 0)
381         {
382           gtk_spinner_add_timeout (spinner);
383         }
384       else if (!active && priv->timeout != 0)
385         {
386           gtk_spinner_remove_timeout (spinner);
387         }
388     }
389 }
390
391 static GType
392 gtk_spinner_accessible_factory_get_accessible_type (void)
393 {
394   return gtk_spinner_accessible_get_type ();
395 }
396
397 static AtkObject *
398 gtk_spinner_accessible_new (GObject *obj)
399 {
400   AtkObject *accessible;
401
402   g_return_val_if_fail (GTK_IS_WIDGET (obj), NULL);
403
404   accessible = g_object_new (gtk_spinner_accessible_get_type (), NULL);
405   atk_object_initialize (accessible, obj);
406
407   return accessible;
408 }
409
410 static AtkObject*
411 gtk_spinner_accessible_factory_create_accessible (GObject *obj)
412 {
413   return gtk_spinner_accessible_new (obj);
414 }
415
416 static void
417 gtk_spinner_accessible_factory_class_init (AtkObjectFactoryClass *klass)
418 {
419   klass->create_accessible = gtk_spinner_accessible_factory_create_accessible;
420   klass->get_accessible_type = gtk_spinner_accessible_factory_get_accessible_type;
421 }
422
423 static GType
424 gtk_spinner_accessible_factory_get_type (void)
425 {
426   static GType type = 0;
427
428   if (!type)
429     {
430       const GTypeInfo tinfo =
431       {
432         sizeof (AtkObjectFactoryClass),
433         NULL,           /* base_init */
434         NULL,           /* base_finalize */
435         (GClassInitFunc) gtk_spinner_accessible_factory_class_init,
436         NULL,           /* class_finalize */
437         NULL,           /* class_data */
438         sizeof (AtkObjectFactory),
439         0,             /* n_preallocs */
440         NULL, NULL
441       };
442
443       type = g_type_register_static (ATK_TYPE_OBJECT_FACTORY,
444                                     I_("GtkSpinnerAccessibleFactory"),
445                                     &tinfo, 0);
446     }
447   return type;
448 }
449
450 static AtkObjectClass *a11y_parent_class = NULL;
451
452 static void
453 gtk_spinner_accessible_initialize (AtkObject *accessible,
454                                    gpointer   widget)
455 {
456   atk_object_set_name (accessible, C_("throbbing progress animation widget", "Spinner"));
457   atk_object_set_description (accessible, _("Provides visual indication of progress"));
458
459   a11y_parent_class->initialize (accessible, widget);
460 }
461
462 static void
463 gtk_spinner_accessible_class_init (AtkObjectClass *klass)
464 {
465   a11y_parent_class = g_type_class_peek_parent (klass);
466
467   klass->initialize = gtk_spinner_accessible_initialize;
468 }
469
470 static void
471 gtk_spinner_accessible_image_get_size (AtkImage *image,
472                                        gint     *width,
473                                        gint     *height)
474 {
475   GtkAllocation allocation;
476   GtkWidget *widget;
477
478   widget = gtk_accessible_get_widget (GTK_ACCESSIBLE (image));
479   if (!widget)
480     {
481       *width = *height = 0;
482     }
483   else
484     {
485       gtk_widget_get_allocation (widget, &allocation);
486       *width = allocation.width;
487       *height = allocation.height;
488     }
489 }
490
491 static void
492 gtk_spinner_accessible_image_interface_init (AtkImageIface *iface)
493 {
494   iface->get_image_size = gtk_spinner_accessible_image_get_size;
495 }
496
497 static GType
498 gtk_spinner_accessible_get_type (void)
499 {
500   static GType type = 0;
501
502   /* Action interface
503      Name etc. ... */
504   if (G_UNLIKELY (type == 0))
505     {
506       const GInterfaceInfo atk_image_info = {
507               (GInterfaceInitFunc) gtk_spinner_accessible_image_interface_init,
508               (GInterfaceFinalizeFunc) NULL,
509               NULL
510       };
511       GType parent_atk_type;
512       GTypeInfo tinfo = { 0 };
513       GTypeQuery query;
514       AtkObjectFactory *factory;
515
516       if ((type = g_type_from_name ("GtkSpinnerAccessible")))
517         return type;
518
519       factory = atk_registry_get_factory (atk_get_default_registry (),
520                                           GTK_TYPE_IMAGE);
521       if (!factory)
522         return G_TYPE_INVALID;
523
524       parent_atk_type = atk_object_factory_get_accessible_type (factory);
525       if (!parent_atk_type)
526         return G_TYPE_INVALID;
527
528       /*
529        * Figure out the size of the class and instance
530        * we are deriving from
531        */
532       g_type_query (parent_atk_type, &query);
533
534       tinfo.class_init = (GClassInitFunc) gtk_spinner_accessible_class_init;
535       tinfo.class_size    = query.class_size;
536       tinfo.instance_size = query.instance_size;
537
538       /* Register the type */
539       type = g_type_register_static (parent_atk_type,
540                                      "GtkSpinnerAccessible",
541                                      &tinfo, 0);
542
543       g_type_add_interface_static (type, ATK_TYPE_IMAGE,
544                                    &atk_image_info);
545     }
546
547   return type;
548 }
549
550 static AtkObject *
551 gtk_spinner_get_accessible (GtkWidget *widget)
552 {
553   static gboolean first_time = TRUE;
554
555   if (first_time)
556     {
557       AtkObjectFactory *factory;
558       AtkRegistry *registry;
559       GType derived_type;
560       GType derived_atk_type;
561
562       /*
563        * Figure out whether accessibility is enabled by looking at the
564        * type of the accessible object which would be created for
565        * the parent type of GtkSpinner.
566        */
567       derived_type = g_type_parent (GTK_TYPE_SPINNER);
568
569       registry = atk_get_default_registry ();
570       factory = atk_registry_get_factory (registry,
571                                           derived_type);
572       derived_atk_type = atk_object_factory_get_accessible_type (factory);
573       if (g_type_is_a (derived_atk_type, GTK_TYPE_ACCESSIBLE))
574         atk_registry_set_factory_type (registry,
575                                        GTK_TYPE_SPINNER,
576                                        gtk_spinner_accessible_factory_get_type ());
577       first_time = FALSE;
578     }
579   return GTK_WIDGET_CLASS (gtk_spinner_parent_class)->get_accessible (widget);
580 }
581
582 /**
583  * gtk_spinner_new:
584  *
585  * Returns a new spinner widget. Not yet started.
586  *
587  * Return value: a new #GtkSpinner
588  *
589  * Since: 2.20
590  */
591 GtkWidget *
592 gtk_spinner_new (void)
593 {
594   return g_object_new (GTK_TYPE_SPINNER, NULL);
595 }
596
597 /**
598  * gtk_spinner_start:
599  * @spinner: a #GtkSpinner
600  *
601  * Starts the animation of the spinner.
602  *
603  * Since: 2.20
604  */
605 void
606 gtk_spinner_start (GtkSpinner *spinner)
607 {
608   g_return_if_fail (GTK_IS_SPINNER (spinner));
609
610   gtk_spinner_set_active (spinner, TRUE);
611 }
612
613 /**
614  * gtk_spinner_stop:
615  * @spinner: a #GtkSpinner
616  *
617  * Stops the animation of the spinner.
618  *
619  * Since: 2.20
620  */
621 void
622 gtk_spinner_stop (GtkSpinner *spinner)
623 {
624   g_return_if_fail (GTK_IS_SPINNER (spinner));
625
626   gtk_spinner_set_active (spinner, FALSE);
627 }