]> Pileus Git - ~andy/gtk/blob - gtk/gtkaccellabel.c
4190d3fca5a2b47d99907ecb903f032baf5cd304
[~andy/gtk] / gtk / gtkaccellabel.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * GtkAccelLabel: GtkLabel with accelerator monitoring facilities.
5  * Copyright (C) 1998 Tim Janik
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 /*
24  * Modified by the GTK+ Team and others 1997-2001.  See the AUTHORS
25  * file for a list of people on the GTK+ Team.  See the ChangeLog
26  * files for a list of changes.  These files are distributed with
27  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
28  */
29
30 #include <string.h>
31
32 #include "gtkaccellabel.h"
33 #include "gtkaccelmap.h"
34 #include "gtkmain.h"
35 #include "gtkintl.h"
36
37 enum {
38   PROP_0,
39   PROP_ACCEL_CLOSURE,
40   PROP_ACCEL_WIDGET
41 };
42
43 static void     gtk_accel_label_class_init   (GtkAccelLabelClass *klass);
44 static void     gtk_accel_label_init         (GtkAccelLabel      *accel_label);
45 static void     gtk_accel_label_set_property (GObject            *object,
46                                               guint               prop_id,
47                                               const GValue       *value,
48                                               GParamSpec         *pspec);
49 static void     gtk_accel_label_get_property (GObject            *object,
50                                               guint               prop_id,
51                                               GValue             *value,
52                                               GParamSpec         *pspec);
53 static void     gtk_accel_label_destroy      (GtkObject          *object);
54 static void     gtk_accel_label_finalize     (GObject            *object);
55 static void     gtk_accel_label_size_request (GtkWidget          *widget,
56                                               GtkRequisition     *requisition);
57 static gboolean gtk_accel_label_expose_event (GtkWidget          *widget,
58                                               GdkEventExpose     *event);
59 static gboolean gtk_accel_label_refetch_idle (GtkAccelLabel      *accel_label);
60
61 static GtkLabelClass *parent_class = NULL;
62
63
64 GType
65 gtk_accel_label_get_type (void)
66 {
67   static GType accel_label_type = 0;
68   
69   if (!accel_label_type)
70     {
71       static const GTypeInfo accel_label_info =
72       {
73         sizeof (GtkAccelLabelClass),
74         NULL,           /* base_init */
75         NULL,           /* base_finalize */
76         (GClassInitFunc) gtk_accel_label_class_init,
77         NULL,           /* class_finalize */
78         NULL,           /* class_data */
79         sizeof (GtkAccelLabel),
80         0,              /* n_preallocs */
81         (GInstanceInitFunc) gtk_accel_label_init,
82       };
83       
84       accel_label_type =
85         g_type_register_static (GTK_TYPE_LABEL, "GtkAccelLabel",
86                                 &accel_label_info, 0);
87     }
88   
89   return accel_label_type;
90 }
91
92 static void
93 gtk_accel_label_class_init (GtkAccelLabelClass *class)
94 {
95   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
96   GtkObjectClass *object_class = GTK_OBJECT_CLASS (class);
97   GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (class);
98   
99   parent_class = g_type_class_peek_parent (class);
100   
101   gobject_class->finalize = gtk_accel_label_finalize;
102   gobject_class->set_property = gtk_accel_label_set_property;
103   gobject_class->get_property = gtk_accel_label_get_property;
104   
105   object_class->destroy = gtk_accel_label_destroy;
106    
107   widget_class->size_request = gtk_accel_label_size_request;
108   widget_class->expose_event = gtk_accel_label_expose_event;
109
110   class->signal_quote1 = g_strdup ("<:");
111   class->signal_quote2 = g_strdup (":>");
112   /* This is the text that should appear next to menu accelerators
113    * that use the shift key. If the text on this key isn't typically
114    * translated on keyboards used for your language, don't translate
115    * this.
116    */
117   class->mod_name_shift = g_strdup (_("Shift"));
118   /* This is the text that should appear next to menu accelerators
119    * that use the control key. If the text on this key isn't typically
120    * translated on keyboards used for your language, don't translate
121    * this.
122    */
123   class->mod_name_control = g_strdup (_("Ctrl"));
124   /* This is the text that should appear next to menu accelerators
125    * that use the alt key. If the text on this key isn't typically
126    * translated on keyboards used for your language, don't translate
127    * this.
128    */
129   class->mod_name_alt = g_strdup (_("Alt"));
130   class->mod_separator = g_strdup ("+");
131   class->accel_seperator = g_strdup (" / ");
132   class->latin1_to_char = TRUE;
133   
134   g_object_class_install_property (gobject_class,
135                                    PROP_ACCEL_CLOSURE,
136                                    g_param_spec_boxed ("accel_closure",
137                                                        _("Accelerator Closure"),
138                                                        _("The closure to be monitored for accelerator changes"),
139                                                        G_TYPE_CLOSURE,
140                                                        G_PARAM_READABLE | G_PARAM_WRITABLE));
141   g_object_class_install_property (gobject_class,
142                                    PROP_ACCEL_WIDGET,
143                                    g_param_spec_object ("accel_widget",
144                                                         _("Accelerator Widget"),
145                                                         _("The widget to be monitored for accelerator changes"),
146                                                         GTK_TYPE_WIDGET,
147                                                         G_PARAM_READABLE | G_PARAM_WRITABLE));
148 }
149
150 static void
151 gtk_accel_label_set_property (GObject      *object,
152                               guint         prop_id,
153                               const GValue *value,
154                               GParamSpec   *pspec)
155 {
156   GtkAccelLabel  *accel_label;
157
158   accel_label = GTK_ACCEL_LABEL (object);
159
160   switch (prop_id)
161     {
162     case PROP_ACCEL_CLOSURE:
163       gtk_accel_label_set_accel_closure (accel_label, g_value_get_boxed (value));
164       break;
165     case PROP_ACCEL_WIDGET:
166       gtk_accel_label_set_accel_widget (accel_label, g_value_get_object (value));
167       break;
168     default:
169       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
170       break;
171     }
172 }
173
174 static void
175 gtk_accel_label_get_property (GObject    *object,
176                               guint       prop_id,
177                               GValue     *value,
178                               GParamSpec *pspec)
179 {
180   GtkAccelLabel  *accel_label;
181
182   accel_label = GTK_ACCEL_LABEL (object);
183
184   switch (prop_id)
185     {
186     case PROP_ACCEL_CLOSURE:
187       g_value_set_boxed (value, accel_label->accel_closure);
188       break;
189     case PROP_ACCEL_WIDGET:
190       g_value_set_object (value, accel_label->accel_widget);
191       break;
192     default:
193       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
194       break;
195     }
196 }
197
198 static void
199 gtk_accel_label_init (GtkAccelLabel *accel_label)
200 {
201   accel_label->queue_id = 0;
202   accel_label->accel_padding = 3;
203   accel_label->accel_widget = NULL;
204   accel_label->accel_closure = NULL;
205   accel_label->accel_group = NULL;
206   accel_label->accel_string = NULL;
207   
208   gtk_accel_label_refetch (accel_label);
209 }
210
211 GtkWidget*
212 gtk_accel_label_new (const gchar *string)
213 {
214   GtkAccelLabel *accel_label;
215   
216   g_return_val_if_fail (string != NULL, NULL);
217   
218   accel_label = g_object_new (GTK_TYPE_ACCEL_LABEL, NULL);
219   
220   gtk_label_set_text (GTK_LABEL (accel_label), string);
221   
222   return GTK_WIDGET (accel_label);
223 }
224
225 static void
226 gtk_accel_label_destroy (GtkObject *object)
227 {
228   GtkAccelLabel *accel_label = GTK_ACCEL_LABEL (object);
229
230   gtk_accel_label_set_accel_widget (accel_label, NULL);
231   gtk_accel_label_set_accel_closure (accel_label, NULL);
232   
233   GTK_OBJECT_CLASS (parent_class)->destroy (object);
234 }
235
236 static void
237 gtk_accel_label_finalize (GObject *object)
238 {
239   GtkAccelLabel *accel_label = GTK_ACCEL_LABEL (object);
240
241   if (accel_label->queue_id)
242     {
243       gtk_idle_remove (accel_label->queue_id);
244       accel_label->queue_id = 0;
245     }
246   g_free (accel_label->accel_string);
247   
248   G_OBJECT_CLASS (parent_class)->finalize (object);
249 }
250
251 /**
252  * gtk_accel_label_get_accel_widget:
253  * @accel_label: a #GtkAccelLabel
254  *
255  * Fetches the widget monitored by this accelerator label. See
256  * gtk_accel_label_set_accel_widget().
257  *
258  * Return value: the object monitored by the accelerator label,
259  *               or %NULL.
260  **/
261 GtkWidget*
262 gtk_accel_label_get_accel_widget (GtkAccelLabel *accel_label)
263 {
264   g_return_val_if_fail (GTK_IS_ACCEL_LABEL (accel_label), NULL);
265
266   return accel_label->accel_widget;
267 }
268
269 guint
270 gtk_accel_label_get_accel_width (GtkAccelLabel *accel_label)
271 {
272   g_return_val_if_fail (GTK_IS_ACCEL_LABEL (accel_label), 0);
273   
274   return (accel_label->accel_string_width +
275           (accel_label->accel_string_width ? accel_label->accel_padding : 0));
276 }
277
278 static void
279 gtk_accel_label_size_request (GtkWidget      *widget,
280                               GtkRequisition *requisition)
281 {
282   GtkAccelLabel *accel_label = GTK_ACCEL_LABEL (widget);
283   PangoLayout *layout;
284   gint width;
285   
286   if (GTK_WIDGET_CLASS (parent_class)->size_request)
287     GTK_WIDGET_CLASS (parent_class)->size_request (widget, requisition);
288
289   layout = gtk_widget_create_pango_layout (widget, accel_label->accel_string);
290   pango_layout_get_pixel_size (layout, &width, NULL);
291   accel_label->accel_string_width = width;
292   
293   g_object_unref (layout);
294 }
295
296 static gint
297 get_first_baseline (PangoLayout *layout)
298 {
299   PangoLayoutIter *iter;
300   gint result;
301
302   iter = pango_layout_get_iter (layout);
303   result = pango_layout_iter_get_baseline (iter);
304   pango_layout_iter_free (iter);
305
306   return PANGO_PIXELS (result);
307 }
308
309 static gboolean 
310 gtk_accel_label_expose_event (GtkWidget      *widget,
311                               GdkEventExpose *event)
312 {
313   GtkAccelLabel *accel_label = GTK_ACCEL_LABEL (widget);
314   GtkMisc *misc = GTK_MISC (accel_label);
315           
316   if (GTK_WIDGET_DRAWABLE (accel_label))
317     {
318       guint ac_width;
319       
320       ac_width = gtk_accel_label_get_accel_width (accel_label);
321       
322       if (widget->allocation.width >= widget->requisition.width + ac_width)
323         {
324           PangoLayout *label_layout;
325           PangoLayout *accel_layout;
326
327           gint x;
328           gint y;
329           
330           widget->allocation.width -= ac_width;
331           if (GTK_WIDGET_CLASS (parent_class)->expose_event)
332             GTK_WIDGET_CLASS (parent_class)->expose_event (widget, event);
333           widget->allocation.width += ac_width;
334           
335           x = widget->allocation.x + widget->allocation.width - misc->xpad - ac_width;
336
337           label_layout = gtk_label_get_layout (GTK_LABEL (accel_label));
338           gtk_label_get_layout_offsets (GTK_LABEL (accel_label), NULL, &y);
339
340           accel_layout = gtk_widget_create_pango_layout (widget, accel_label->accel_string);
341
342           y += get_first_baseline (label_layout) - get_first_baseline (accel_layout);
343
344           gtk_paint_layout (widget->style,
345                             widget->window,
346                             GTK_WIDGET_STATE (widget),
347                             FALSE,
348                             &event->area,
349                             widget,
350                             "accellabel",
351                             x, y,
352                             accel_layout);                            
353
354           g_object_unref (accel_layout);
355         }
356       else
357         {
358           if (GTK_WIDGET_CLASS (parent_class)->expose_event)
359             GTK_WIDGET_CLASS (parent_class)->expose_event (widget, event);
360         }
361     }
362   
363   return FALSE;
364 }
365
366 static void
367 refetch_widget_accel_closure (GtkAccelLabel *accel_label)
368 {
369   GClosure *closure = NULL;
370   GList *clist, *list;
371   
372   g_return_if_fail (GTK_IS_ACCEL_LABEL (accel_label));
373   g_return_if_fail (GTK_IS_WIDGET (accel_label->accel_widget));
374   
375   clist = gtk_widget_list_accel_closures (accel_label->accel_widget);
376   for (list = clist; list; list = list->next)
377     {
378       /* we just take the first closure used */
379       closure = list->data;
380       break;
381     }
382   g_list_free (clist);
383   gtk_accel_label_set_accel_closure (accel_label, closure);
384 }
385
386 /**
387  * gtk_accel_label_set_accel_widget:
388  * @accel_label: a #GtkAccelLabel
389  * @accel_widget: the widget to be monitored.
390  *
391  * Sets the widget to be monitored by this accelerator label. 
392  **/
393 void
394 gtk_accel_label_set_accel_widget (GtkAccelLabel *accel_label,
395                                   GtkWidget     *accel_widget)
396 {
397   g_return_if_fail (GTK_IS_ACCEL_LABEL (accel_label));
398   if (accel_widget)
399     g_return_if_fail (GTK_IS_WIDGET (accel_widget));
400     
401   if (accel_widget != accel_label->accel_widget)
402     {
403       if (accel_label->accel_widget)
404         {
405           gtk_accel_label_set_accel_closure (accel_label, NULL);
406           g_signal_handlers_disconnect_by_func (accel_label->accel_widget,
407                                                 refetch_widget_accel_closure,
408                                                 accel_label);
409           g_object_unref (accel_label->accel_widget);
410         }
411       accel_label->accel_widget = accel_widget;
412       if (accel_label->accel_widget)
413         {
414           g_object_ref (accel_label->accel_widget);
415           g_signal_connect_object (accel_label->accel_widget, "accel_closures_changed",
416                                    G_CALLBACK (refetch_widget_accel_closure),
417                                    accel_label, G_CONNECT_SWAPPED);
418           refetch_widget_accel_closure (accel_label);
419         }
420       g_object_notify (G_OBJECT (accel_label), "accel_widget");
421     }
422 }
423
424 static void
425 gtk_accel_label_queue_refetch (GtkAccelLabel *accel_label)
426 {
427   g_return_if_fail (GTK_IS_ACCEL_LABEL (accel_label));
428
429   if (accel_label->queue_id == 0)
430     accel_label->queue_id = gtk_idle_add_priority (G_PRIORITY_HIGH_IDLE,
431                                                    (GtkFunction) gtk_accel_label_refetch_idle,
432                                                    accel_label);
433 }
434
435 static void
436 check_accel_changed (GtkAccelGroup  *accel_group,
437                      guint           keyval,
438                      GdkModifierType modifier,
439                      GClosure       *accel_closure,
440                      GtkAccelLabel  *accel_label)
441 {
442   if (accel_closure == accel_label->accel_closure)
443     gtk_accel_label_queue_refetch (accel_label);
444 }
445
446 /**
447  * gtk_accel_label_set_accel_closure:
448  * @accel_label: a #GtkAccelLabel
449  * @accel_closure: the closure to monitor for accelerator changes.
450  *
451  * Sets the closure to be monitored by this accelerator label. The closure
452  * must be connected to an accelerator group; see gtk_accel_group_connect().
453  **/
454 void
455 gtk_accel_label_set_accel_closure (GtkAccelLabel *accel_label,
456                                    GClosure      *accel_closure)
457 {
458   g_return_if_fail (GTK_IS_ACCEL_LABEL (accel_label));
459   if (accel_closure)
460     g_return_if_fail (gtk_accel_group_from_accel_closure (accel_closure) != NULL);
461
462   if (accel_closure != accel_label->accel_closure)
463     {
464       if (accel_label->accel_closure)
465         {
466           g_signal_handlers_disconnect_by_func (accel_label->accel_group,
467                                                 check_accel_changed,
468                                                 accel_label);
469           accel_label->accel_group = NULL;
470           g_closure_unref (accel_label->accel_closure);
471         }
472       accel_label->accel_closure = accel_closure;
473       if (accel_label->accel_closure)
474         {
475           g_closure_ref (accel_label->accel_closure);
476           accel_label->accel_group = gtk_accel_group_from_accel_closure (accel_closure);
477           g_signal_connect_object (accel_label->accel_group, "accel_changed",
478                                    G_CALLBACK (check_accel_changed),
479                                    accel_label, 0);
480         }
481       gtk_accel_label_queue_refetch (accel_label);
482       g_object_notify (G_OBJECT (accel_label), "accel_closure");
483     }
484 }
485
486 static gboolean
487 gtk_accel_label_refetch_idle (GtkAccelLabel *accel_label)
488 {
489   gboolean retval;
490
491   GDK_THREADS_ENTER ();
492   retval = gtk_accel_label_refetch (accel_label);
493   GDK_THREADS_LEAVE ();
494
495   return retval;
496 }
497
498 static gboolean
499 find_accel (GtkAccelKey *key,
500             GClosure    *closure,
501             gpointer     data)
502 {
503   return data == (gpointer) closure;
504 }
505
506 gboolean
507 gtk_accel_label_refetch (GtkAccelLabel *accel_label)
508 {
509   GtkAccelLabelClass *class;
510
511   g_return_val_if_fail (GTK_IS_ACCEL_LABEL (accel_label), FALSE);
512
513   class = GTK_ACCEL_LABEL_GET_CLASS (accel_label);
514
515   g_free (accel_label->accel_string);
516   accel_label->accel_string = NULL;
517
518   if (accel_label->accel_closure)
519     {
520       GtkAccelKey *key = gtk_accel_group_find (accel_label->accel_group, find_accel, accel_label->accel_closure);
521
522       if (key && key->accel_flags & GTK_ACCEL_VISIBLE)
523         {
524           GString *gstring;
525           gboolean seen_mod = FALSE;
526           gunichar ch;
527           
528           gstring = g_string_new (accel_label->accel_string);
529           g_string_append (gstring, gstring->len ? class->accel_seperator : "   ");
530           
531           if (key->accel_mods & GDK_SHIFT_MASK)
532             {
533               g_string_append (gstring, class->mod_name_shift);
534               seen_mod = TRUE;
535             }
536           if (key->accel_mods & GDK_CONTROL_MASK)
537             {
538               if (seen_mod)
539                 g_string_append (gstring, class->mod_separator);
540               g_string_append (gstring, class->mod_name_control);
541               seen_mod = TRUE;
542             }
543           if (key->accel_mods & GDK_MOD1_MASK)
544             {
545               if (seen_mod)
546                 g_string_append (gstring, class->mod_separator);
547               g_string_append (gstring, class->mod_name_alt);
548               seen_mod = TRUE;
549             }
550           if (seen_mod)
551             g_string_append (gstring, class->mod_separator);
552
553           ch = gdk_keyval_to_unicode (key->accel_key);
554           if (ch && (g_unichar_isgraph (ch) || ch == ' ') &&
555               (ch < 0x80 || class->latin1_to_char))
556             {
557               switch (ch)
558                 {
559                 case ' ':
560                   g_string_append (gstring, "Space");
561                   break;
562                 case '\\':
563                   g_string_append (gstring, "Backslash");
564                   break;
565                 default:
566                   g_string_append_unichar (gstring, g_unichar_toupper (ch));
567                   break;
568                 }
569             }
570           else
571             {
572               gchar *tmp;
573               
574               tmp = gtk_accelerator_name (key->accel_key, 0);
575               if (tmp[0] != 0 && tmp[1] == 0)
576                 tmp[0] = g_ascii_toupper (tmp[0]);
577               g_string_append (gstring, tmp);
578               g_free (tmp);
579             }
580           g_free (accel_label->accel_string);
581           accel_label->accel_string = gstring->str;
582           g_string_free (gstring, FALSE);
583         }
584       if (!accel_label->accel_string)
585         accel_label->accel_string = g_strdup ("-/-");
586     }
587   
588   if (!accel_label->accel_string)
589     accel_label->accel_string = g_strdup ("");
590
591   if (accel_label->queue_id)
592     {
593       gtk_idle_remove (accel_label->queue_id);
594       accel_label->queue_id = 0;
595     }
596
597   gtk_widget_queue_resize (GTK_WIDGET (accel_label));
598
599   return FALSE;
600 }