]> Pileus Git - ~andy/gtk/blob - gtk/gtkstatusbar.c
When finding a matching non-scalable dir, keep going and look for a closer
[~andy/gtk] / gtk / gtkstatusbar.c
1 /* GTK - The GIMP Toolkit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  * GtkStatusbar Copyright (C) 1998 Shawn T. Amundson
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 /*
22  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
23  * file for a list of people on the GTK+ Team.  See the ChangeLog
24  * files for a list of changes.  These files are distributed with
25  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
26  */
27
28 #include <config.h>
29 #include "gtkframe.h"
30 #include "gtklabel.h"
31 #include "gtkmarshalers.h"
32 #include "gtkstatusbar.h"
33 #include "gtkwindow.h"
34 #include "gtkprivate.h"
35 #include "gtkintl.h"
36 #include "gtkalias.h"
37
38 typedef struct _GtkStatusbarMsg GtkStatusbarMsg;
39
40 struct _GtkStatusbarMsg
41 {
42   gchar *text;
43   guint context_id;
44   guint message_id;
45 };
46
47 enum
48 {
49   SIGNAL_TEXT_PUSHED,
50   SIGNAL_TEXT_POPPED,
51   SIGNAL_LAST
52 };
53
54 enum 
55 {
56   PROP_ZERO,
57   PROP_HAS_RESIZE_GRIP
58 };
59
60 static void     gtk_statusbar_destroy           (GtkObject         *object);
61 static void     gtk_statusbar_update            (GtkStatusbar      *statusbar,
62                                                  guint              context_id,
63                                                  const gchar       *text);
64 static void     gtk_statusbar_size_allocate     (GtkWidget         *widget,
65                                                  GtkAllocation     *allocation);
66 static void     gtk_statusbar_realize           (GtkWidget         *widget);
67 static void     gtk_statusbar_unrealize         (GtkWidget         *widget);
68 static void     gtk_statusbar_map               (GtkWidget         *widget);
69 static void     gtk_statusbar_unmap             (GtkWidget         *widget);
70 static gboolean gtk_statusbar_button_press      (GtkWidget         *widget,
71                                                  GdkEventButton    *event);
72 static gboolean gtk_statusbar_expose_event      (GtkWidget         *widget,
73                                                  GdkEventExpose    *event);
74 static void     gtk_statusbar_size_request      (GtkWidget         *widget,
75                                                  GtkRequisition    *requisition);
76 static void     gtk_statusbar_size_allocate     (GtkWidget         *widget,
77                                                  GtkAllocation     *allocation);
78 static void     gtk_statusbar_direction_changed (GtkWidget         *widget,
79                                                  GtkTextDirection   prev_dir);
80 static void     gtk_statusbar_state_changed     (GtkWidget        *widget,
81                                                  GtkStateType      previous_state);
82 static void     gtk_statusbar_create_window     (GtkStatusbar      *statusbar);
83 static void     gtk_statusbar_destroy_window    (GtkStatusbar      *statusbar);
84 static void     gtk_statusbar_get_property      (GObject           *object,
85                                                  guint              prop_id,
86                                                  GValue            *value,
87                                                  GParamSpec        *pspec);
88 static void     gtk_statusbar_set_property      (GObject           *object,
89                                                  guint              prop_id,
90                                                  const GValue      *value,
91                                                  GParamSpec        *pspec);
92 static void     label_selectable_changed        (GtkWidget         *label,
93                                                  GParamSpec        *pspec,
94                                                  gpointer           data);
95
96
97 static guint              statusbar_signals[SIGNAL_LAST] = { 0 };
98
99 G_DEFINE_TYPE (GtkStatusbar, gtk_statusbar, GTK_TYPE_HBOX)
100
101 static void
102 gtk_statusbar_class_init (GtkStatusbarClass *class)
103 {
104   GObjectClass *gobject_class;
105   GtkObjectClass *object_class;
106   GtkWidgetClass *widget_class;
107
108   gobject_class = (GObjectClass *) class;
109   object_class = (GtkObjectClass *) class;
110   widget_class = (GtkWidgetClass *) class;
111
112   gobject_class->set_property = gtk_statusbar_set_property;
113   gobject_class->get_property = gtk_statusbar_get_property;
114
115   object_class->destroy = gtk_statusbar_destroy;
116
117   widget_class->realize = gtk_statusbar_realize;
118   widget_class->unrealize = gtk_statusbar_unrealize;
119   widget_class->map = gtk_statusbar_map;
120   widget_class->unmap = gtk_statusbar_unmap;
121   widget_class->button_press_event = gtk_statusbar_button_press;
122   widget_class->expose_event = gtk_statusbar_expose_event;
123   widget_class->size_request = gtk_statusbar_size_request;
124   widget_class->size_allocate = gtk_statusbar_size_allocate;
125   widget_class->direction_changed = gtk_statusbar_direction_changed;
126   widget_class->state_changed = gtk_statusbar_state_changed;
127   
128   class->text_pushed = gtk_statusbar_update;
129   class->text_popped = gtk_statusbar_update;
130   
131   /**
132    * GtkStatusbar:has-resize-grip:
133    *
134    * Whether the statusbar has a grip for resizing the toplevel window.
135    *
136    * Since: 2.4
137    */
138   g_object_class_install_property (gobject_class,
139                                    PROP_HAS_RESIZE_GRIP,
140                                    g_param_spec_boolean ("has-resize-grip",
141                                                          P_("Has Resize Grip"),
142                                                          P_("Whether the statusbar has a grip for resizing the toplevel"),
143                                                          TRUE,
144                                                          GTK_PARAM_READWRITE));
145
146   /** 
147    * GtkStatusbar::text-pushed:
148    * @statusbar: the object which received the signal.
149    * @context_id: the context id of the relevant message/statusbar.
150    * @text: the message that was pushed.
151    * 
152    * Is emitted whenever a new message gets pushed onto a statusbar's stack.
153    */
154   statusbar_signals[SIGNAL_TEXT_PUSHED] =
155     g_signal_new (I_("text_pushed"),
156                   G_OBJECT_CLASS_TYPE (class),
157                   G_SIGNAL_RUN_LAST,
158                   G_STRUCT_OFFSET (GtkStatusbarClass, text_pushed),
159                   NULL, NULL,
160                   _gtk_marshal_VOID__UINT_STRING,
161                   G_TYPE_NONE, 2,
162                   G_TYPE_UINT,
163                   G_TYPE_STRING);
164
165   /**
166    * GtkStatusbar::text-popped:
167    * @statusbar: the object which received the signal.
168    * @context_id: the context id of the relevant message/statusbar.
169    * @text: the message that was just popped.
170    *
171    * Is emitted whenever a new message is popped off a statusbar's stack.
172    */
173   statusbar_signals[SIGNAL_TEXT_POPPED] =
174     g_signal_new (I_("text_popped"),
175                   G_OBJECT_CLASS_TYPE (class),
176                   G_SIGNAL_RUN_LAST,
177                   G_STRUCT_OFFSET (GtkStatusbarClass, text_popped),
178                   NULL, NULL,
179                   _gtk_marshal_VOID__UINT_STRING,
180                   G_TYPE_NONE, 2,
181                   G_TYPE_UINT,
182                   G_TYPE_STRING);
183
184   gtk_widget_class_install_style_property (widget_class,
185                                            g_param_spec_enum ("shadow-type",
186                                                               P_("Shadow type"),
187                                                               P_("Style of bevel around the statusbar text"),
188                                                               GTK_TYPE_SHADOW_TYPE,
189                                                               GTK_SHADOW_IN,
190                                                               GTK_PARAM_READABLE));
191 }
192
193 static void
194 gtk_statusbar_init (GtkStatusbar *statusbar)
195 {
196   GtkBox *box;
197   GtkShadowType shadow_type;
198   
199   box = GTK_BOX (statusbar);
200
201   box->spacing = 2;
202   box->homogeneous = FALSE;
203
204   statusbar->has_resize_grip = TRUE;
205
206   gtk_widget_style_get (GTK_WIDGET (statusbar), "shadow-type", &shadow_type, NULL);
207   
208   statusbar->frame = gtk_frame_new (NULL);
209   gtk_frame_set_shadow_type (GTK_FRAME (statusbar->frame), shadow_type);
210   gtk_box_pack_start (box, statusbar->frame, TRUE, TRUE, 0);
211   gtk_widget_show (statusbar->frame);
212
213   statusbar->label = gtk_label_new ("");
214   gtk_label_set_single_line_mode (GTK_LABEL (statusbar->label), TRUE);
215   gtk_misc_set_alignment (GTK_MISC (statusbar->label), 0.0, 0.5);
216   g_signal_connect (statusbar->label, "notify::selectable",
217                     G_CALLBACK (label_selectable_changed), statusbar);
218   gtk_label_set_ellipsize (GTK_LABEL (statusbar->label), PANGO_ELLIPSIZE_END);
219   gtk_container_add (GTK_CONTAINER (statusbar->frame), statusbar->label);
220   gtk_widget_show (statusbar->label);
221
222   statusbar->seq_context_id = 1;
223   statusbar->seq_message_id = 1;
224   statusbar->messages = NULL;
225   statusbar->keys = NULL;
226 }
227
228 /**
229  * gtk_statusbar_new:
230  *
231  * Creates a new #GtkStatusbar ready for messages.
232  *
233  * Returns: the new #GtkStatusbar
234  */
235 GtkWidget* 
236 gtk_statusbar_new (void)
237 {
238   return g_object_new (GTK_TYPE_STATUSBAR, NULL);
239 }
240
241 static void
242 gtk_statusbar_update (GtkStatusbar *statusbar,
243                       guint         context_id,
244                       const gchar  *text)
245 {
246   g_return_if_fail (GTK_IS_STATUSBAR (statusbar));
247
248   if (!text)
249     text = "";
250
251   gtk_label_set_text (GTK_LABEL (statusbar->label), text);
252 }
253
254 /**
255  * gtk_statusbar_get_context_id:
256  * @statusbar: a #GtkStatusbar
257  * @context_description: textual description of what context 
258  *                       the new message is being used in
259  *
260  * Returns a new context identifier, given a description 
261  * of the actual context. Note that the description is 
262  * <emphasis>not</emphasis> shown in the UI.
263  *
264  * Returns: an integer id
265  */
266 guint
267 gtk_statusbar_get_context_id (GtkStatusbar *statusbar,
268                               const gchar  *context_description)
269 {
270   gchar *string;
271   guint *id;
272   
273   g_return_val_if_fail (GTK_IS_STATUSBAR (statusbar), 0);
274   g_return_val_if_fail (context_description != NULL, 0);
275
276   /* we need to preserve namespaces on object datas */
277   string = g_strconcat ("gtk-status-bar-context:", context_description, NULL);
278
279   id = g_object_get_data (G_OBJECT (statusbar), string);
280   if (!id)
281     {
282       id = g_new (guint, 1);
283       *id = statusbar->seq_context_id++;
284       g_object_set_data_full (G_OBJECT (statusbar), string, id, g_free);
285       statusbar->keys = g_slist_prepend (statusbar->keys, string);
286     }
287   else
288     g_free (string);
289
290   return *id;
291 }
292
293 /**
294  * gtk_statusbar_push:
295  * @statusbar: a #GtkStatusbar
296  * @context_id: the message's context id, as returned by
297  *              gtk_statusbar_get_context_id()
298  * @text: the message to add to the statusbar
299  * 
300  * Pushes a new message onto a statusbar's stack.
301  *
302  * Returns: a message id that can be used with 
303  *          gtk_statusbar_remove().
304  */
305 guint
306 gtk_statusbar_push (GtkStatusbar *statusbar,
307                     guint         context_id,
308                     const gchar  *text)
309 {
310   GtkStatusbarMsg *msg;
311
312   g_return_val_if_fail (GTK_IS_STATUSBAR (statusbar), 0);
313   g_return_val_if_fail (text != NULL, 0);
314
315   msg = g_slice_new (GtkStatusbarMsg);
316   msg->text = g_strdup (text);
317   msg->context_id = context_id;
318   msg->message_id = statusbar->seq_message_id++;
319
320   statusbar->messages = g_slist_prepend (statusbar->messages, msg);
321
322   g_signal_emit (statusbar,
323                  statusbar_signals[SIGNAL_TEXT_PUSHED],
324                  0,
325                  msg->context_id,
326                  msg->text);
327
328   return msg->message_id;
329 }
330
331 /**
332  * gtk_statusbar_pop:
333  * @statusbar: a #GtkStatusBar
334  * @context_id: a context identifier
335  * 
336  * Removes the first message in the #GtkStatusBar's stack
337  * with the given context id. 
338  *
339  * Note that this may not change the displayed message, if 
340  * the message at the top of the stack has a different 
341  * context id.
342  */
343 void
344 gtk_statusbar_pop (GtkStatusbar *statusbar,
345                    guint         context_id)
346 {
347   GtkStatusbarMsg *msg;
348
349   g_return_if_fail (GTK_IS_STATUSBAR (statusbar));
350
351   if (statusbar->messages)
352     {
353       GSList *list;
354
355       for (list = statusbar->messages; list; list = list->next)
356         {
357           msg = list->data;
358
359           if (msg->context_id == context_id)
360             {
361               statusbar->messages = g_slist_remove_link (statusbar->messages,
362                                                          list);
363               g_free (msg->text);
364               g_slice_free (GtkStatusbarMsg, msg);
365               g_slist_free_1 (list);
366               break;
367             }
368         }
369     }
370
371   msg = statusbar->messages ? statusbar->messages->data : NULL;
372
373   g_signal_emit (statusbar,
374                  statusbar_signals[SIGNAL_TEXT_POPPED],
375                  0,
376                  (guint) (msg ? msg->context_id : 0),
377                  msg ? msg->text : NULL);
378 }
379
380 /**
381  * gtk_statusbar_remove:
382  * @statusbar: a #GtkStatusBar
383  * @context_id: a context identifier
384  * @message_id: a message identifier, as returned by gtk_statusbar_push()
385  *
386  * Forces the removal of a message from a statusbar's stack. 
387  * The exact @context_id and @message_id must be specified.
388  */
389 void
390 gtk_statusbar_remove (GtkStatusbar *statusbar,
391                       guint        context_id,
392                       guint        message_id)
393 {
394   GtkStatusbarMsg *msg;
395
396   g_return_if_fail (GTK_IS_STATUSBAR (statusbar));
397   g_return_if_fail (message_id > 0);
398
399   msg = statusbar->messages ? statusbar->messages->data : NULL;
400   if (msg)
401     {
402       GSList *list;
403
404       /* care about signal emission if the topmost item is removed */
405       if (msg->context_id == context_id &&
406           msg->message_id == message_id)
407         {
408           gtk_statusbar_pop (statusbar, context_id);
409           return;
410         }
411       
412       for (list = statusbar->messages; list; list = list->next)
413         {
414           msg = list->data;
415           
416           if (msg->context_id == context_id &&
417               msg->message_id == message_id)
418             {
419               statusbar->messages = g_slist_remove_link (statusbar->messages, list);
420               g_free (msg->text);
421               g_slice_free (GtkStatusbarMsg, msg);
422               g_slist_free_1 (list);
423               
424               break;
425             }
426         }
427     }
428 }
429
430 /**
431  * gtk_statusbar_set_has_resize_grip:
432  * @statusbar: a #GtkStatusBar
433  * @setting: %TRUE to have a resize grip
434  *
435  * Sets whether the statusbar has a resize grip. 
436  * %TRUE by default.
437  */
438 void
439 gtk_statusbar_set_has_resize_grip (GtkStatusbar *statusbar,
440                                    gboolean      setting)
441 {
442   g_return_if_fail (GTK_IS_STATUSBAR (statusbar));
443
444   setting = setting != FALSE;
445
446   if (setting != statusbar->has_resize_grip)
447     {
448       statusbar->has_resize_grip = setting;
449       gtk_widget_queue_resize (statusbar->label);
450       gtk_widget_queue_draw (GTK_WIDGET (statusbar));
451
452       if (GTK_WIDGET_REALIZED (statusbar))
453         {
454           if (statusbar->has_resize_grip && statusbar->grip_window == NULL)
455             {
456               gtk_statusbar_create_window (statusbar);
457               if (GTK_WIDGET_MAPPED (statusbar))
458                 gdk_window_show (statusbar->grip_window);
459             }
460           else if (!statusbar->has_resize_grip && statusbar->grip_window != NULL)
461             gtk_statusbar_destroy_window (statusbar);
462         }
463       
464       g_object_notify (G_OBJECT (statusbar), "has-resize-grip");
465     }
466 }
467
468 /**
469  * gtk_statusbar_get_has_resize_grip:
470  * @statusbar: a #GtkStatusBar
471  * 
472  * Returns whether the statusbar has a resize grip.
473  *
474  * Returns: %TRUE if the statusbar has a resize grip.
475  */
476 gboolean
477 gtk_statusbar_get_has_resize_grip (GtkStatusbar *statusbar)
478 {
479   g_return_val_if_fail (GTK_IS_STATUSBAR (statusbar), FALSE);
480
481   return statusbar->has_resize_grip;
482 }
483
484 static void
485 gtk_statusbar_destroy (GtkObject *object)
486 {
487   GtkStatusbar *statusbar;
488   GSList *list;
489
490   g_return_if_fail (GTK_IS_STATUSBAR (object));
491
492   statusbar = GTK_STATUSBAR (object);
493
494   for (list = statusbar->messages; list; list = list->next)
495     {
496       GtkStatusbarMsg *msg;
497
498       msg = list->data;
499       g_free (msg->text);
500       g_slice_free (GtkStatusbarMsg, msg);
501     }
502   g_slist_free (statusbar->messages);
503   statusbar->messages = NULL;
504
505   for (list = statusbar->keys; list; list = list->next)
506     g_free (list->data);
507   g_slist_free (statusbar->keys);
508   statusbar->keys = NULL;
509
510   GTK_OBJECT_CLASS (gtk_statusbar_parent_class)->destroy (object);
511 }
512
513 static void
514 gtk_statusbar_set_property (GObject      *object, 
515                             guint         prop_id, 
516                             const GValue *value, 
517                             GParamSpec   *pspec)
518 {
519   GtkStatusbar *statusbar = GTK_STATUSBAR (object);
520
521   switch (prop_id) 
522     {
523     case PROP_HAS_RESIZE_GRIP:
524       gtk_statusbar_set_has_resize_grip (statusbar, g_value_get_boolean (value));
525       break;
526     default:
527       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
528       break;
529     }
530 }
531
532 static void
533 gtk_statusbar_get_property (GObject    *object, 
534                             guint       prop_id, 
535                             GValue     *value, 
536                             GParamSpec *pspec)
537 {
538   GtkStatusbar *statusbar = GTK_STATUSBAR (object);
539         
540   switch (prop_id) 
541     {
542     case PROP_HAS_RESIZE_GRIP:
543       g_value_set_boolean (value, statusbar->has_resize_grip);
544       break;
545     default:
546       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
547       break;
548     }
549 }
550
551 static GdkWindowEdge
552 get_grip_edge (GtkStatusbar *statusbar)
553 {
554   GtkWidget *widget = GTK_WIDGET (statusbar);
555
556   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR) 
557     return GDK_WINDOW_EDGE_SOUTH_EAST; 
558   else
559     return GDK_WINDOW_EDGE_SOUTH_WEST; 
560 }
561
562 static void
563 get_grip_rect (GtkStatusbar *statusbar,
564                GdkRectangle *rect)
565 {
566   GtkWidget *widget;
567   gint w, h;
568   
569   widget = GTK_WIDGET (statusbar);
570
571   /* These are in effect the max/default size of the grip. */
572   w = 18;
573   h = 18;
574
575   if (w > widget->allocation.width)
576     w = widget->allocation.width;
577
578   if (h > widget->allocation.height - widget->style->ythickness)
579     h = widget->allocation.height - widget->style->ythickness;
580   
581   rect->width = w;
582   rect->height = h;
583   rect->y = widget->allocation.y + widget->allocation.height - h;
584
585   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR) 
586     rect->x = widget->allocation.x + widget->allocation.width - w;
587   else 
588     rect->x = widget->allocation.x + widget->style->xthickness;
589 }
590
591 static void
592 set_grip_cursor (GtkStatusbar *statusbar)
593 {
594   if (statusbar->has_resize_grip)
595     {
596       GtkWidget *widget = GTK_WIDGET (statusbar);
597       GdkDisplay *display = gtk_widget_get_display (widget);
598       GdkCursorType cursor_type;
599       GdkCursor *cursor;
600       
601       if (GTK_WIDGET_IS_SENSITIVE (widget))
602         {
603           if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR)
604             cursor_type = GDK_BOTTOM_RIGHT_CORNER;
605           else
606             cursor_type = GDK_BOTTOM_LEFT_CORNER;
607
608           cursor = gdk_cursor_new_for_display (display, cursor_type);
609           gdk_window_set_cursor (statusbar->grip_window, cursor);
610           gdk_cursor_unref (cursor);
611         }
612       else
613         gdk_window_set_cursor (statusbar->grip_window, NULL);
614     }
615 }
616
617 static void
618 gtk_statusbar_create_window (GtkStatusbar *statusbar)
619 {
620   GtkWidget *widget;
621   GdkWindowAttr attributes;
622   gint attributes_mask;
623   GdkRectangle rect;
624   
625   g_return_if_fail (GTK_WIDGET_REALIZED (statusbar));
626   g_return_if_fail (statusbar->has_resize_grip);
627   
628   widget = GTK_WIDGET (statusbar);
629
630   get_grip_rect (statusbar, &rect);
631
632   attributes.x = rect.x;
633   attributes.y = rect.y;
634   attributes.width = rect.width;
635   attributes.height = rect.height;
636   attributes.window_type = GDK_WINDOW_CHILD;
637   attributes.wclass = GDK_INPUT_ONLY;
638   attributes.event_mask = gtk_widget_get_events (widget) |
639     GDK_BUTTON_PRESS_MASK;
640
641   attributes_mask = GDK_WA_X | GDK_WA_Y;
642
643   statusbar->grip_window = gdk_window_new (widget->window,
644                                            &attributes, attributes_mask);
645
646   gdk_window_set_user_data (statusbar->grip_window, widget);
647
648   set_grip_cursor (statusbar);
649 }
650
651 static void
652 gtk_statusbar_direction_changed (GtkWidget        *widget,
653                                  GtkTextDirection  prev_dir)
654 {
655   GtkStatusbar *statusbar = GTK_STATUSBAR (widget);
656
657   set_grip_cursor (statusbar);
658 }
659
660 static void
661 gtk_statusbar_state_changed (GtkWidget    *widget,
662                              GtkStateType  previous_state)   
663 {
664   GtkStatusbar *statusbar = GTK_STATUSBAR (widget);
665
666   set_grip_cursor (statusbar);
667 }
668
669 static void
670 gtk_statusbar_destroy_window (GtkStatusbar *statusbar)
671 {
672   gdk_window_set_user_data (statusbar->grip_window, NULL);
673   gdk_window_destroy (statusbar->grip_window);
674   statusbar->grip_window = NULL;
675 }
676
677 static void
678 gtk_statusbar_realize (GtkWidget *widget)
679 {
680   GtkStatusbar *statusbar;
681
682   statusbar = GTK_STATUSBAR (widget);
683   
684   (* GTK_WIDGET_CLASS (gtk_statusbar_parent_class)->realize) (widget);
685
686   if (statusbar->has_resize_grip)
687     gtk_statusbar_create_window (statusbar);
688 }
689
690 static void
691 gtk_statusbar_unrealize (GtkWidget *widget)
692 {
693   GtkStatusbar *statusbar;
694
695   statusbar = GTK_STATUSBAR (widget);
696
697   if (statusbar->grip_window)
698     gtk_statusbar_destroy_window (statusbar);
699   
700   (* GTK_WIDGET_CLASS (gtk_statusbar_parent_class)->unrealize) (widget);
701 }
702
703 static void
704 gtk_statusbar_map (GtkWidget *widget)
705 {
706   GtkStatusbar *statusbar;
707
708   statusbar = GTK_STATUSBAR (widget);
709   
710   (* GTK_WIDGET_CLASS (gtk_statusbar_parent_class)->map) (widget);
711   
712   if (statusbar->grip_window)
713     gdk_window_show (statusbar->grip_window);
714 }
715
716 static void
717 gtk_statusbar_unmap (GtkWidget *widget)
718 {
719   GtkStatusbar *statusbar;
720
721   statusbar = GTK_STATUSBAR (widget);
722
723   if (statusbar->grip_window)
724     gdk_window_hide (statusbar->grip_window);
725   
726   (* GTK_WIDGET_CLASS (gtk_statusbar_parent_class)->unmap) (widget);
727 }
728
729 static gboolean
730 gtk_statusbar_button_press (GtkWidget      *widget,
731                             GdkEventButton *event)
732 {
733   GtkStatusbar *statusbar;
734   GtkWidget *ancestor;
735   GdkWindowEdge edge;
736   
737   statusbar = GTK_STATUSBAR (widget);
738   
739   if (!statusbar->has_resize_grip ||
740       event->type != GDK_BUTTON_PRESS ||
741       event->window != statusbar->grip_window)
742     return FALSE;
743   
744   ancestor = gtk_widget_get_toplevel (widget);
745
746   if (!GTK_IS_WINDOW (ancestor))
747     return FALSE;
748
749   edge = get_grip_edge (statusbar);
750
751   if (event->button == 1)
752     gtk_window_begin_resize_drag (GTK_WINDOW (ancestor),
753                                   edge,
754                                   event->button,
755                                   event->x_root, event->y_root,
756                                   event->time);
757   else if (event->button == 2)
758     gtk_window_begin_move_drag (GTK_WINDOW (ancestor),
759                                 event->button,
760                                 event->x_root, event->y_root,
761                                 event->time);
762   else
763     return FALSE;
764   
765   return TRUE;
766 }
767
768 static gboolean
769 gtk_statusbar_expose_event (GtkWidget      *widget,
770                             GdkEventExpose *event)
771 {
772   GtkStatusbar *statusbar;
773   GdkRectangle rect;
774   
775   statusbar = GTK_STATUSBAR (widget);
776
777   GTK_WIDGET_CLASS (gtk_statusbar_parent_class)->expose_event (widget, event);
778
779   if (statusbar->has_resize_grip)
780     {
781       GdkWindowEdge edge;
782       
783       edge = get_grip_edge (statusbar);
784
785       get_grip_rect (statusbar, &rect);
786
787       gtk_paint_resize_grip (widget->style,
788                              widget->window,
789                              GTK_WIDGET_STATE (widget),
790                              NULL,
791                              widget,
792                              "statusbar",
793                              edge,
794                              rect.x, rect.y,
795                              /* don't draw grip over the frame, though you
796                               * can click on the frame.
797                               */
798                              rect.width - widget->style->xthickness,
799                              rect.height - widget->style->ythickness);
800     }
801
802   return FALSE;
803 }
804
805 static void
806 gtk_statusbar_size_request (GtkWidget      *widget,
807                             GtkRequisition *requisition)
808 {
809   GtkStatusbar *statusbar;
810   GtkShadowType shadow_type;
811   
812   statusbar = GTK_STATUSBAR (widget);
813
814   gtk_widget_style_get (GTK_WIDGET (statusbar), "shadow-type", &shadow_type, NULL);  
815   gtk_frame_set_shadow_type (GTK_FRAME (statusbar->frame), shadow_type);
816   
817   GTK_WIDGET_CLASS (gtk_statusbar_parent_class)->size_request (widget, requisition);
818 }
819
820 /* look for extra children between the frame containing
821  * the label and where we want to draw the resize grip 
822  */
823 static gboolean
824 has_extra_children (GtkStatusbar *statusbar)
825 {
826   GList *l;
827   GtkBoxChild *child, *frame;
828
829   frame = NULL;
830   for (l = GTK_BOX (statusbar)->children; l; l = l->next)
831     {
832       frame = l->data;
833
834       if (frame->widget == statusbar->frame)
835         break;
836     }
837   
838   for (l = l->next; l; l = l->next)
839     {
840       child = l->data;
841
842       if (!GTK_WIDGET_VISIBLE (child->widget))
843         continue;
844
845       if (frame->pack == GTK_PACK_START || child->pack == GTK_PACK_END)
846         return TRUE;
847     }
848
849   return FALSE;
850 }
851
852 static void
853 gtk_statusbar_size_allocate  (GtkWidget     *widget,
854                               GtkAllocation *allocation)
855 {
856   GtkStatusbar *statusbar = GTK_STATUSBAR (widget);
857   gboolean extra_children = FALSE;
858   GdkRectangle rect;
859
860   if (statusbar->has_resize_grip)
861     {
862       widget->allocation = *allocation;
863       get_grip_rect (statusbar, &rect);    
864       
865       extra_children = has_extra_children (statusbar);
866       
867       /* If there are extra children, we don't want them to occupy
868        * the space where we draw the resize grip, so we temporarily
869        * shrink the allocation.
870        * If there are no extra children, we want the frame to get
871        * the full allocation, and we fix up the allocation of the
872        * label afterwards to make room for the grip.
873        */
874       if (extra_children)
875         {
876           allocation->width -= rect.width;
877           if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) 
878             allocation->x += rect.width;
879         }
880     }
881
882   /* chain up normally */
883   GTK_WIDGET_CLASS (gtk_statusbar_parent_class)->size_allocate (widget, allocation);
884
885   if (statusbar->has_resize_grip)
886     {
887       if (statusbar->grip_window)
888         {
889           gdk_window_raise (statusbar->grip_window);
890           gdk_window_move_resize (statusbar->grip_window,
891                                   rect.x, rect.y,
892                                   rect.width, rect.height);
893         }
894
895       if (extra_children) 
896         {
897           allocation->width += rect.width;
898           if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) 
899             allocation->x -= rect.width;
900           
901           widget->allocation = *allocation;
902         }
903       else
904         {
905           GtkWidget *child;
906
907           /* Use the frame's child instead of statusbar->label directly, in case
908            * the label has been replaced by a container as the frame's child
909            * (and the label reparented into that container).
910            */
911           child = gtk_bin_get_child (GTK_BIN (statusbar->frame));
912
913           if (child->allocation.width + rect.width > statusbar->frame->allocation.width)
914             {
915               /* shrink the label to make room for the grip */
916               *allocation = child->allocation;
917               allocation->width = MAX (1, allocation->width - rect.width);
918               if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) 
919                 allocation->x += child->allocation.width - allocation->width;
920
921               gtk_widget_size_allocate (child, allocation);
922             }
923         }
924     }
925 }
926
927 static void
928 label_selectable_changed (GtkWidget  *label,
929                           GParamSpec *pspec,
930                           gpointer    data)
931 {
932   GtkStatusbar *statusbar = GTK_STATUSBAR (data);
933
934   if (statusbar && 
935       statusbar->has_resize_grip && statusbar->grip_window)
936     gdk_window_raise (statusbar->grip_window);
937 }
938
939 #define __GTK_STATUSBAR_C__
940 #include "gtkaliasdef.c"