]> Pileus Git - ~andy/gtk/blob - gtk/gtkactivatable.c
9f659e061f59c5a30794cdef217ffecc5e5dbae3
[~andy/gtk] / gtk / gtkactivatable.c
1 /* gtkactivatable.c
2  * Copyright (C) 2008 Tristan Van Berkom <tristan.van.berkom@gmail.com>
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /**
21  * SECTION:gtkactivatable
22  * @Short_Description: An interface for activatable widgets
23  * @Title: GtkActivatable
24  *
25  * Activatable widgets can be connected to a #GtkAction and reflects
26  * the state of its action. A #GtkActivatable can also provide feedback
27  * through its action, as they are responsible for activating their
28  * related actions.
29  *
30  * <refsect2>
31  * <title>Implementing GtkActivatable</title>
32  * <para>
33  * When extending a class that is already #GtkActivatable; it is only
34  * necessary to implement the #GtkActivatable->sync_action_properties()
35  * and #GtkActivatable->update() methods and chain up to the parent
36  * implementation, however when introducing
37  * a new #GtkActivatable class; the #GtkActivatable:related-action and
38  * #GtkActivatable:use-action-appearance properties need to be handled by
39  * the implementor. Handling these properties is mostly a matter of installing
40  * the action pointer and boolean flag on your instance, and calling
41  * gtk_activatable_do_set_related_action() and
42  * gtk_activatable_sync_action_properties() at the appropriate times.
43  * </para>
44  * <example>
45  * <title>A class fragment implementing #GtkActivatable</title>
46  * <programlisting><![CDATA[
47  *
48  * enum {
49  * ...
50  *
51  * PROP_ACTIVATABLE_RELATED_ACTION,
52  * PROP_ACTIVATABLE_USE_ACTION_APPEARANCE
53  * }
54  * 
55  * struct _FooBarPrivate
56  * {
57  * 
58  *   ...
59  * 
60  *   GtkAction      *action;
61  *   gboolean        use_action_appearance;
62  * };
63  * 
64  * ...
65  * 
66  * static void foo_bar_activatable_interface_init         (GtkActivatableIface  *iface);
67  * static void foo_bar_activatable_update                 (GtkActivatable       *activatable,
68  *                                                         GtkAction            *action,
69  *                                                         const gchar          *property_name);
70  * static void foo_bar_activatable_sync_action_properties (GtkActivatable       *activatable,
71  *                                                         GtkAction            *action);
72  * ...
73  *
74  *
75  * static void
76  * foo_bar_class_init (FooBarClass *klass)
77  * {
78  *
79  *   ...
80  *
81  *   g_object_class_override_property (gobject_class, PROP_ACTIVATABLE_RELATED_ACTION, "related-action");
82  *   g_object_class_override_property (gobject_class, PROP_ACTIVATABLE_USE_ACTION_APPEARANCE, "use-action-appearance");
83  *
84  *   ...
85  * }
86  *
87  *
88  * static void
89  * foo_bar_activatable_interface_init (GtkActivatableIface  *iface)
90  * {
91  *   iface->update = foo_bar_activatable_update;
92  *   iface->sync_action_properties = foo_bar_activatable_sync_action_properties;
93  * }
94  * 
95  * ... Break the reference using gtk_activatable_do_set_related_action()...
96  *
97  * static void 
98  * foo_bar_dispose (GObject *object)
99  * {
100  *   FooBar *bar = FOO_BAR (object);
101  *   FooBarPrivate *priv = FOO_BAR_GET_PRIVATE (bar);
102  * 
103  *   ...
104  * 
105  *   if (priv->action)
106  *     {
107  *       gtk_activatable_do_set_related_action (GTK_ACTIVATABLE (bar), NULL);
108  *       priv->action = NULL;
109  *     }
110  *   G_OBJECT_CLASS (foo_bar_parent_class)->dispose (object);
111  * }
112  * 
113  * ... Handle the "related-action" and "use-action-appearance" properties ...
114  *
115  * static void
116  * foo_bar_set_property (GObject         *object,
117  *                       guint            prop_id,
118  *                       const GValue    *value,
119  *                       GParamSpec      *pspec)
120  * {
121  *   FooBar *bar = FOO_BAR (object);
122  *   FooBarPrivate *priv = FOO_BAR_GET_PRIVATE (bar);
123  * 
124  *   switch (prop_id)
125  *     {
126  * 
127  *       ...
128  * 
129  *     case PROP_ACTIVATABLE_RELATED_ACTION:
130  *       foo_bar_set_related_action (bar, g_value_get_object (value));
131  *       break;
132  *     case PROP_ACTIVATABLE_USE_ACTION_APPEARANCE:
133  *       foo_bar_set_use_action_appearance (bar, g_value_get_boolean (value));
134  *       break;
135  *     default:
136  *       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
137  *       break;
138  *     }
139  * }
140  * 
141  * static void
142  * foo_bar_get_property (GObject         *object,
143  *                          guint            prop_id,
144  *                          GValue          *value,
145  *                          GParamSpec      *pspec)
146  * {
147  *   FooBar *bar = FOO_BAR (object);
148  *   FooBarPrivate *priv = FOO_BAR_GET_PRIVATE (bar);
149  * 
150  *   switch (prop_id)
151  *     { 
152  * 
153  *       ...
154  * 
155  *     case PROP_ACTIVATABLE_RELATED_ACTION:
156  *       g_value_set_object (value, priv->action);
157  *       break;
158  *     case PROP_ACTIVATABLE_USE_ACTION_APPEARANCE:
159  *       g_value_set_boolean (value, priv->use_action_appearance);
160  *       break;
161  *     default:
162  *       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
163  *       break;
164  *     }
165  * }
166  * 
167  * 
168  * static void
169  * foo_bar_set_use_action_appearance (FooBar   *bar, 
170  *                                 gboolean  use_appearance)
171  * {
172  *   FooBarPrivate *priv = FOO_BAR_GET_PRIVATE (bar);
173  * 
174  *   if (priv->use_action_appearance != use_appearance)
175  *     {
176  *       priv->use_action_appearance = use_appearance;
177  *       
178  *       gtk_activatable_sync_action_properties (GTK_ACTIVATABLE (bar), priv->action);
179  *     }
180  * }
181  * 
182  * ... call gtk_activatable_do_set_related_action() and then assign the action pointer, 
183  * no need to reference the action here since gtk_activatable_do_set_related_action() already 
184  * holds a reference here for you...
185  * static void
186  * foo_bar_set_related_action (FooBar    *bar, 
187  *                          GtkAction *action)
188  * {
189  *   FooBarPrivate *priv = FOO_BAR_GET_PRIVATE (bar);
190  * 
191  *   if (priv->action == action)
192  *     return;
193  * 
194  *   gtk_activatable_do_set_related_action (GTK_ACTIVATABLE (bar), action);
195  * 
196  *   priv->action = action;
197  * }
198  * 
199  * ... Selectively reset and update activatable depending on the use-action-appearance property ...
200  * static void
201  * gtk_button_activatable_sync_action_properties (GtkActivatable       *activatable,
202  *                                                GtkAction            *action)
203  * {
204  *   GtkButtonPrivate *priv = GTK_BUTTON_GET_PRIVATE (activatable);
205  * 
206  *   if (!action)
207  *     return;
208  * 
209  *   if (gtk_action_is_visible (action))
210  *     gtk_widget_show (GTK_WIDGET (activatable));
211  *   else
212  *     gtk_widget_hide (GTK_WIDGET (activatable));
213  *   
214  *   gtk_widget_set_sensitive (GTK_WIDGET (activatable), gtk_action_is_sensitive (action));
215  * 
216  *   ...
217  *   
218  *   if (priv->use_action_appearance)
219  *     {
220  *       if (gtk_action_get_stock_id (action))
221  *      foo_bar_set_stock (button, gtk_action_get_stock_id (action));
222  *       else if (gtk_action_get_label (action))
223  *      foo_bar_set_label (button, gtk_action_get_label (action));
224  * 
225  *       ...
226  * 
227  *     }
228  * }
229  * 
230  * static void 
231  * foo_bar_activatable_update (GtkActivatable       *activatable,
232  *                             GtkAction            *action,
233  *                             const gchar          *property_name)
234  * {
235  *   FooBarPrivate *priv = FOO_BAR_GET_PRIVATE (activatable);
236  * 
237  *   if (strcmp (property_name, "visible") == 0)
238  *     {
239  *       if (gtk_action_is_visible (action))
240  *      gtk_widget_show (GTK_WIDGET (activatable));
241  *       else
242  *      gtk_widget_hide (GTK_WIDGET (activatable));
243  *     }
244  *   else if (strcmp (property_name, "sensitive") == 0)
245  *     gtk_widget_set_sensitive (GTK_WIDGET (activatable), gtk_action_is_sensitive (action));
246  * 
247  *   ...
248  * 
249  *   if (!priv->use_action_appearance)
250  *     return;
251  * 
252  *   if (strcmp (property_name, "stock-id") == 0)
253  *     foo_bar_set_stock (button, gtk_action_get_stock_id (action));
254  *   else if (strcmp (property_name, "label") == 0)
255  *     foo_bar_set_label (button, gtk_action_get_label (action));
256  * 
257  *   ...
258  * }]]></programlisting>
259  * </example>
260  * </refsect2>
261  */
262
263 #include "config.h"
264 #include "gtkactivatable.h"
265 #include "gtkactiongroup.h"
266 #include "gtkprivate.h"
267 #include "gtkintl.h"
268
269
270 typedef GtkActivatableIface GtkActivatableInterface;
271 G_DEFINE_INTERFACE (GtkActivatable, gtk_activatable, G_TYPE_OBJECT)
272
273 static void
274 gtk_activatable_default_init (GtkActivatableInterface *iface)
275 {
276   /**
277    * GtkActivatable:related-action:
278    * 
279    * The action that this activatable will activate and receive
280    * updates from for various states and possibly appearance.
281    *
282    * <note><para>#GtkActivatable implementors need to handle the this property and 
283    * call gtk_activatable_do_set_related_action() when it changes.</para></note>
284    *
285    * Since: 2.16
286    */
287   g_object_interface_install_property (iface,
288                                        g_param_spec_object ("related-action",
289                                                             P_("Related Action"),
290                                                             P_("The action this activatable will activate and receive updates from"),
291                                                             GTK_TYPE_ACTION,
292                                                             GTK_PARAM_READWRITE));
293
294   /**
295    * GtkActivatable:use-action-appearance:
296    * 
297    * Whether this activatable should reset its layout
298    * and appearance when setting the related action or when
299    * the action changes appearance.
300    *
301    * See the #GtkAction documentation directly to find which properties
302    * should be ignored by the #GtkActivatable when this property is %FALSE.
303    *
304    * <note><para>#GtkActivatable implementors need to handle this property
305    * and call gtk_activatable_sync_action_properties() on the activatable
306    * widget when it changes.</para></note>
307    *
308    * Since: 2.16
309    */
310   g_object_interface_install_property (iface,
311                                        g_param_spec_boolean ("use-action-appearance",
312                                                              P_("Use Action Appearance"),
313                                                              P_("Whether to use the related actions appearance properties"),
314                                                              TRUE,
315                                                              GTK_PARAM_READWRITE));
316
317
318 }
319
320 static void
321 gtk_activatable_update (GtkActivatable *activatable,
322                         GtkAction      *action,
323                         const gchar    *property_name)
324 {
325   GtkActivatableIface *iface;
326
327   g_return_if_fail (GTK_IS_ACTIVATABLE (activatable));
328
329   iface = GTK_ACTIVATABLE_GET_IFACE (activatable);
330   if (iface->update)
331     iface->update (activatable, action, property_name);
332   else
333     g_critical ("GtkActivatable->update() unimplemented for type %s", 
334                 g_type_name (G_OBJECT_TYPE (activatable)));
335 }
336
337 /**
338  * gtk_activatable_sync_action_properties:
339  * @activatable: a #GtkActivatable
340  * @action: (allow-none): the related #GtkAction or %NULL
341  *
342  * This is called to update the activatable completely, this is called
343  * internally when the #GtkActivatable:related-action property is set
344  * or unset and by the implementing class when
345  * #GtkActivatable:use-action-appearance changes.
346  *
347  * Since: 2.16
348  **/
349 void
350 gtk_activatable_sync_action_properties (GtkActivatable *activatable,
351                                         GtkAction      *action)
352 {
353   GtkActivatableIface *iface;
354
355   g_return_if_fail (GTK_IS_ACTIVATABLE (activatable));
356
357   iface = GTK_ACTIVATABLE_GET_IFACE (activatable);
358   if (iface->sync_action_properties)
359     iface->sync_action_properties (activatable, action);
360   else
361     g_critical ("GtkActivatable->sync_action_properties() unimplemented for type %s", 
362                 g_type_name (G_OBJECT_TYPE (activatable)));
363 }
364
365
366 /**
367  * gtk_activatable_set_related_action:
368  * @activatable: a #GtkActivatable
369  * @action: the #GtkAction to set
370  *
371  * Sets the related action on the @activatable object.
372  *
373  * <note><para>#GtkActivatable implementors need to handle the #GtkActivatable:related-action
374  * property and call gtk_activatable_do_set_related_action() when it changes.</para></note>
375  *
376  * Since: 2.16
377  **/
378 void
379 gtk_activatable_set_related_action (GtkActivatable *activatable,
380                                     GtkAction      *action)
381 {
382   g_return_if_fail (GTK_IS_ACTIVATABLE (activatable));
383   g_return_if_fail (action == NULL || GTK_IS_ACTION (action));
384
385   g_object_set (activatable, "related-action", action, NULL);
386 }
387
388 static void
389 gtk_activatable_action_notify (GtkAction      *action,
390                                GParamSpec     *pspec,
391                                GtkActivatable *activatable)
392 {
393   gtk_activatable_update (activatable, action, pspec->name);
394 }
395
396 /**
397  * gtk_activatable_do_set_related_action:
398  * @activatable: a #GtkActivatable
399  * @action: the #GtkAction to set
400  * 
401  * This is a utility function for #GtkActivatable implementors.
402  * 
403  * When implementing #GtkActivatable you must call this when
404  * handling changes of the #GtkActivatable:related-action, and
405  * you must also use this to break references in #GObject->dispose().
406  *
407  * This function adds a reference to the currently set related
408  * action for you, it also makes sure the #GtkActivatable->update()
409  * method is called when the related #GtkAction properties change
410  * and registers to the action's proxy list.
411  *
412  * <note><para>Be careful to call this before setting the local
413  * copy of the #GtkAction property, since this function uses 
414  * gtk_activatable_get_action() to retrieve the previous action</para></note>
415  *
416  * Since: 2.16
417  */
418 void
419 gtk_activatable_do_set_related_action (GtkActivatable *activatable,
420                                        GtkAction      *action)
421 {
422   GtkAction *prev_action;
423
424   prev_action = gtk_activatable_get_related_action (activatable);
425   
426   if (prev_action != action)
427     {
428       if (prev_action)
429         {
430           g_signal_handlers_disconnect_by_func (prev_action, gtk_activatable_action_notify, activatable);
431           
432           /* Check the type so that actions can be activatable too. */
433           if (GTK_IS_WIDGET (activatable))
434             _gtk_action_remove_from_proxy_list (prev_action, GTK_WIDGET (activatable));
435           
436           /* Some apps are using the object data directly...
437            * so continue to set it for a bit longer
438            */
439           g_object_set_data (G_OBJECT (activatable), "gtk-action", NULL);
440
441           /*
442            * We don't want prev_action to be activated
443            * during the sync_action_properties() call when syncing "active".
444            */ 
445           gtk_action_block_activate (prev_action);
446         }
447       
448       /* Some applications rely on their proxy UI to be set up
449        * before they receive the ::connect-proxy signal, so we
450        * need to call sync_action_properties() before add_to_proxy_list().
451        */
452       gtk_activatable_sync_action_properties (activatable, action);
453
454       if (prev_action)
455         {
456           gtk_action_unblock_activate (prev_action);
457           g_object_unref (prev_action);
458         }
459
460       if (action)
461         {
462           g_object_ref (action);
463
464           g_signal_connect (G_OBJECT (action), "notify", G_CALLBACK (gtk_activatable_action_notify), activatable);
465
466           if (GTK_IS_WIDGET (activatable))
467             _gtk_action_add_to_proxy_list (action, GTK_WIDGET (activatable));
468
469           g_object_set_data (G_OBJECT (activatable), "gtk-action", action);
470         }
471     }
472 }
473
474 /**
475  * gtk_activatable_get_related_action:
476  * @activatable: a #GtkActivatable
477  *
478  * Gets the related #GtkAction for @activatable.
479  *
480  * Returns: (transfer none): the related #GtkAction if one is set.
481  *
482  * Since: 2.16
483  **/
484 GtkAction *
485 gtk_activatable_get_related_action (GtkActivatable *activatable)
486 {
487   GtkAction *action;
488
489   g_return_val_if_fail (GTK_IS_ACTIVATABLE (activatable), NULL);
490
491   g_object_get (activatable, "related-action", &action, NULL);
492
493   /* g_object_get() gives us a ref... */
494   if (action)
495     g_object_unref (action);
496
497   return action;
498 }
499
500 /**
501  * gtk_activatable_set_use_action_appearance:
502  * @activatable: a #GtkActivatable
503  * @use_appearance: whether to use the actions appearance
504  *
505  * Sets whether this activatable should reset its layout and appearance
506  * when setting the related action or when the action changes appearance
507  *
508  * <note><para>#GtkActivatable implementors need to handle the
509  * #GtkActivatable:use-action-appearance property and call
510  * gtk_activatable_sync_action_properties() to update @activatable
511  * if needed.</para></note>
512  *
513  * Since: 2.16
514  **/
515 void
516 gtk_activatable_set_use_action_appearance (GtkActivatable *activatable,
517                                            gboolean        use_appearance)
518 {
519   g_object_set (activatable, "use-action-appearance", use_appearance, NULL);
520 }
521
522 /**
523  * gtk_activatable_get_use_action_appearance:
524  * @activatable: a #GtkActivatable
525  *
526  * Gets whether this activatable should reset its layout
527  * and appearance when setting the related action or when
528  * the action changes appearance.
529  *
530  * Returns: whether @activatable uses its actions appearance.
531  *
532  * Since: 2.16
533  **/
534 gboolean
535 gtk_activatable_get_use_action_appearance  (GtkActivatable *activatable)
536 {
537   gboolean use_appearance;
538
539   g_object_get (activatable, "use-action-appearance", &use_appearance, NULL);  
540
541   return use_appearance;
542 }