]> Pileus Git - ~andy/gtk/blob - gtk/gtkstatusbar.c
No need to allocate a guint; just stuff the ID into the pointer directly.
[~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 = GPOINTER_TO_UINT (g_object_get_data (G_OBJECT (statusbar), string));
280   if (id == 0)
281     {
282       id = statusbar->seq_context_id++;
283       g_object_set_data_full (G_OBJECT (statusbar), string, GUINT_TO_POINTER (id), NULL);
284       statusbar->keys = g_slist_prepend (statusbar->keys, string);
285     }
286   else
287     g_free (string);
288
289   return id;
290 }
291
292 /**
293  * gtk_statusbar_push:
294  * @statusbar: a #GtkStatusbar
295  * @context_id: the message's context id, as returned by
296  *              gtk_statusbar_get_context_id()
297  * @text: the message to add to the statusbar
298  * 
299  * Pushes a new message onto a statusbar's stack.
300  *
301  * Returns: a message id that can be used with 
302  *          gtk_statusbar_remove().
303  */
304 guint
305 gtk_statusbar_push (GtkStatusbar *statusbar,
306                     guint         context_id,
307                     const gchar  *text)
308 {
309   GtkStatusbarMsg *msg;
310
311   g_return_val_if_fail (GTK_IS_STATUSBAR (statusbar), 0);
312   g_return_val_if_fail (text != NULL, 0);
313
314   msg = g_slice_new (GtkStatusbarMsg);
315   msg->text = g_strdup (text);
316   msg->context_id = context_id;
317   msg->message_id = statusbar->seq_message_id++;
318
319   statusbar->messages = g_slist_prepend (statusbar->messages, msg);
320
321   g_signal_emit (statusbar,
322                  statusbar_signals[SIGNAL_TEXT_PUSHED],
323                  0,
324                  msg->context_id,
325                  msg->text);
326
327   return msg->message_id;
328 }
329
330 /**
331  * gtk_statusbar_pop:
332  * @statusbar: a #GtkStatusBar
333  * @context_id: a context identifier
334  * 
335  * Removes the first message in the #GtkStatusBar's stack
336  * with the given context id. 
337  *
338  * Note that this may not change the displayed message, if 
339  * the message at the top of the stack has a different 
340  * context id.
341  */
342 void
343 gtk_statusbar_pop (GtkStatusbar *statusbar,
344                    guint         context_id)
345 {
346   GtkStatusbarMsg *msg;
347
348   g_return_if_fail (GTK_IS_STATUSBAR (statusbar));
349
350   if (statusbar->messages)
351     {
352       GSList *list;
353
354       for (list = statusbar->messages; list; list = list->next)
355         {
356           msg = list->data;
357
358           if (msg->context_id == context_id)
359             {
360               statusbar->messages = g_slist_remove_link (statusbar->messages,
361                                                          list);
362               g_free (msg->text);
363               g_slice_free (GtkStatusbarMsg, msg);
364               g_slist_free_1 (list);
365               break;
366             }
367         }
368     }
369
370   msg = statusbar->messages ? statusbar->messages->data : NULL;
371
372   g_signal_emit (statusbar,
373                  statusbar_signals[SIGNAL_TEXT_POPPED],
374                  0,
375                  (guint) (msg ? msg->context_id : 0),
376                  msg ? msg->text : NULL);
377 }
378
379 /**
380  * gtk_statusbar_remove:
381  * @statusbar: a #GtkStatusBar
382  * @context_id: a context identifier
383  * @message_id: a message identifier, as returned by gtk_statusbar_push()
384  *
385  * Forces the removal of a message from a statusbar's stack. 
386  * The exact @context_id and @message_id must be specified.
387  */
388 void
389 gtk_statusbar_remove (GtkStatusbar *statusbar,
390                       guint        context_id,
391                       guint        message_id)
392 {
393   GtkStatusbarMsg *msg;
394
395   g_return_if_fail (GTK_IS_STATUSBAR (statusbar));
396   g_return_if_fail (message_id > 0);
397
398   msg = statusbar->messages ? statusbar->messages->data : NULL;
399   if (msg)
400     {
401       GSList *list;
402
403       /* care about signal emission if the topmost item is removed */
404       if (msg->context_id == context_id &&
405           msg->message_id == message_id)
406         {
407           gtk_statusbar_pop (statusbar, context_id);
408           return;
409         }
410       
411       for (list = statusbar->messages; list; list = list->next)
412         {
413           msg = list->data;
414           
415           if (msg->context_id == context_id &&
416               msg->message_id == message_id)
417             {
418               statusbar->messages = g_slist_remove_link (statusbar->messages, list);
419               g_free (msg->text);
420               g_slice_free (GtkStatusbarMsg, msg);
421               g_slist_free_1 (list);
422               
423               break;
424             }
425         }
426     }
427 }
428
429 /**
430  * gtk_statusbar_set_has_resize_grip:
431  * @statusbar: a #GtkStatusBar
432  * @setting: %TRUE to have a resize grip
433  *
434  * Sets whether the statusbar has a resize grip. 
435  * %TRUE by default.
436  */
437 void
438 gtk_statusbar_set_has_resize_grip (GtkStatusbar *statusbar,
439                                    gboolean      setting)
440 {
441   g_return_if_fail (GTK_IS_STATUSBAR (statusbar));
442
443   setting = setting != FALSE;
444
445   if (setting != statusbar->has_resize_grip)
446     {
447       statusbar->has_resize_grip = setting;
448       gtk_widget_queue_resize (statusbar->label);
449       gtk_widget_queue_draw (GTK_WIDGET (statusbar));
450
451       if (GTK_WIDGET_REALIZED (statusbar))
452         {
453           if (statusbar->has_resize_grip && statusbar->grip_window == NULL)
454             {
455               gtk_statusbar_create_window (statusbar);
456               if (GTK_WIDGET_MAPPED (statusbar))
457                 gdk_window_show (statusbar->grip_window);
458             }
459           else if (!statusbar->has_resize_grip && statusbar->grip_window != NULL)
460             gtk_statusbar_destroy_window (statusbar);
461         }
462       
463       g_object_notify (G_OBJECT (statusbar), "has-resize-grip");
464     }
465 }
466
467 /**
468  * gtk_statusbar_get_has_resize_grip:
469  * @statusbar: a #GtkStatusBar
470  * 
471  * Returns whether the statusbar has a resize grip.
472  *
473  * Returns: %TRUE if the statusbar has a resize grip.
474  */
475 gboolean
476 gtk_statusbar_get_has_resize_grip (GtkStatusbar *statusbar)
477 {
478   g_return_val_if_fail (GTK_IS_STATUSBAR (statusbar), FALSE);
479
480   return statusbar->has_resize_grip;
481 }
482
483 static void
484 gtk_statusbar_destroy (GtkObject *object)
485 {
486   GtkStatusbar *statusbar;
487   GSList *list;
488
489   g_return_if_fail (GTK_IS_STATUSBAR (object));
490
491   statusbar = GTK_STATUSBAR (object);
492
493   for (list = statusbar->messages; list; list = list->next)
494     {
495       GtkStatusbarMsg *msg;
496
497       msg = list->data;
498       g_free (msg->text);
499       g_slice_free (GtkStatusbarMsg, msg);
500     }
501   g_slist_free (statusbar->messages);
502   statusbar->messages = NULL;
503
504   for (list = statusbar->keys; list; list = list->next)
505     g_free (list->data);
506   g_slist_free (statusbar->keys);
507   statusbar->keys = NULL;
508
509   GTK_OBJECT_CLASS (gtk_statusbar_parent_class)->destroy (object);
510 }
511
512 static void
513 gtk_statusbar_set_property (GObject      *object, 
514                             guint         prop_id, 
515                             const GValue *value, 
516                             GParamSpec   *pspec)
517 {
518   GtkStatusbar *statusbar = GTK_STATUSBAR (object);
519
520   switch (prop_id) 
521     {
522     case PROP_HAS_RESIZE_GRIP:
523       gtk_statusbar_set_has_resize_grip (statusbar, g_value_get_boolean (value));
524       break;
525     default:
526       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
527       break;
528     }
529 }
530
531 static void
532 gtk_statusbar_get_property (GObject    *object, 
533                             guint       prop_id, 
534                             GValue     *value, 
535                             GParamSpec *pspec)
536 {
537   GtkStatusbar *statusbar = GTK_STATUSBAR (object);
538         
539   switch (prop_id) 
540     {
541     case PROP_HAS_RESIZE_GRIP:
542       g_value_set_boolean (value, statusbar->has_resize_grip);
543       break;
544     default:
545       G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
546       break;
547     }
548 }
549
550 static GdkWindowEdge
551 get_grip_edge (GtkStatusbar *statusbar)
552 {
553   GtkWidget *widget = GTK_WIDGET (statusbar);
554
555   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR) 
556     return GDK_WINDOW_EDGE_SOUTH_EAST; 
557   else
558     return GDK_WINDOW_EDGE_SOUTH_WEST; 
559 }
560
561 static void
562 get_grip_rect (GtkStatusbar *statusbar,
563                GdkRectangle *rect)
564 {
565   GtkWidget *widget;
566   gint w, h;
567   
568   widget = GTK_WIDGET (statusbar);
569
570   /* These are in effect the max/default size of the grip. */
571   w = 18;
572   h = 18;
573
574   if (w > widget->allocation.width)
575     w = widget->allocation.width;
576
577   if (h > widget->allocation.height - widget->style->ythickness)
578     h = widget->allocation.height - widget->style->ythickness;
579   
580   rect->width = w;
581   rect->height = h;
582   rect->y = widget->allocation.y + widget->allocation.height - h;
583
584   if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR) 
585     rect->x = widget->allocation.x + widget->allocation.width - w;
586   else 
587     rect->x = widget->allocation.x + widget->style->xthickness;
588 }
589
590 static void
591 set_grip_cursor (GtkStatusbar *statusbar)
592 {
593   if (statusbar->has_resize_grip)
594     {
595       GtkWidget *widget = GTK_WIDGET (statusbar);
596       GdkDisplay *display = gtk_widget_get_display (widget);
597       GdkCursorType cursor_type;
598       GdkCursor *cursor;
599       
600       if (GTK_WIDGET_IS_SENSITIVE (widget))
601         {
602           if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_LTR)
603             cursor_type = GDK_BOTTOM_RIGHT_CORNER;
604           else
605             cursor_type = GDK_BOTTOM_LEFT_CORNER;
606
607           cursor = gdk_cursor_new_for_display (display, cursor_type);
608           gdk_window_set_cursor (statusbar->grip_window, cursor);
609           gdk_cursor_unref (cursor);
610         }
611       else
612         gdk_window_set_cursor (statusbar->grip_window, NULL);
613     }
614 }
615
616 static void
617 gtk_statusbar_create_window (GtkStatusbar *statusbar)
618 {
619   GtkWidget *widget;
620   GdkWindowAttr attributes;
621   gint attributes_mask;
622   GdkRectangle rect;
623   
624   g_return_if_fail (GTK_WIDGET_REALIZED (statusbar));
625   g_return_if_fail (statusbar->has_resize_grip);
626   
627   widget = GTK_WIDGET (statusbar);
628
629   get_grip_rect (statusbar, &rect);
630
631   attributes.x = rect.x;
632   attributes.y = rect.y;
633   attributes.width = rect.width;
634   attributes.height = rect.height;
635   attributes.window_type = GDK_WINDOW_CHILD;
636   attributes.wclass = GDK_INPUT_ONLY;
637   attributes.event_mask = gtk_widget_get_events (widget) |
638     GDK_BUTTON_PRESS_MASK;
639
640   attributes_mask = GDK_WA_X | GDK_WA_Y;
641
642   statusbar->grip_window = gdk_window_new (widget->window,
643                                            &attributes, attributes_mask);
644
645   gdk_window_set_user_data (statusbar->grip_window, widget);
646
647   set_grip_cursor (statusbar);
648 }
649
650 static void
651 gtk_statusbar_direction_changed (GtkWidget        *widget,
652                                  GtkTextDirection  prev_dir)
653 {
654   GtkStatusbar *statusbar = GTK_STATUSBAR (widget);
655
656   set_grip_cursor (statusbar);
657 }
658
659 static void
660 gtk_statusbar_state_changed (GtkWidget    *widget,
661                              GtkStateType  previous_state)   
662 {
663   GtkStatusbar *statusbar = GTK_STATUSBAR (widget);
664
665   set_grip_cursor (statusbar);
666 }
667
668 static void
669 gtk_statusbar_destroy_window (GtkStatusbar *statusbar)
670 {
671   gdk_window_set_user_data (statusbar->grip_window, NULL);
672   gdk_window_destroy (statusbar->grip_window);
673   statusbar->grip_window = NULL;
674 }
675
676 static void
677 gtk_statusbar_realize (GtkWidget *widget)
678 {
679   GtkStatusbar *statusbar;
680
681   statusbar = GTK_STATUSBAR (widget);
682   
683   (* GTK_WIDGET_CLASS (gtk_statusbar_parent_class)->realize) (widget);
684
685   if (statusbar->has_resize_grip)
686     gtk_statusbar_create_window (statusbar);
687 }
688
689 static void
690 gtk_statusbar_unrealize (GtkWidget *widget)
691 {
692   GtkStatusbar *statusbar;
693
694   statusbar = GTK_STATUSBAR (widget);
695
696   if (statusbar->grip_window)
697     gtk_statusbar_destroy_window (statusbar);
698   
699   (* GTK_WIDGET_CLASS (gtk_statusbar_parent_class)->unrealize) (widget);
700 }
701
702 static void
703 gtk_statusbar_map (GtkWidget *widget)
704 {
705   GtkStatusbar *statusbar;
706
707   statusbar = GTK_STATUSBAR (widget);
708   
709   (* GTK_WIDGET_CLASS (gtk_statusbar_parent_class)->map) (widget);
710   
711   if (statusbar->grip_window)
712     gdk_window_show (statusbar->grip_window);
713 }
714
715 static void
716 gtk_statusbar_unmap (GtkWidget *widget)
717 {
718   GtkStatusbar *statusbar;
719
720   statusbar = GTK_STATUSBAR (widget);
721
722   if (statusbar->grip_window)
723     gdk_window_hide (statusbar->grip_window);
724   
725   (* GTK_WIDGET_CLASS (gtk_statusbar_parent_class)->unmap) (widget);
726 }
727
728 static gboolean
729 gtk_statusbar_button_press (GtkWidget      *widget,
730                             GdkEventButton *event)
731 {
732   GtkStatusbar *statusbar;
733   GtkWidget *ancestor;
734   GdkWindowEdge edge;
735   
736   statusbar = GTK_STATUSBAR (widget);
737   
738   if (!statusbar->has_resize_grip ||
739       event->type != GDK_BUTTON_PRESS ||
740       event->window != statusbar->grip_window)
741     return FALSE;
742   
743   ancestor = gtk_widget_get_toplevel (widget);
744
745   if (!GTK_IS_WINDOW (ancestor))
746     return FALSE;
747
748   edge = get_grip_edge (statusbar);
749
750   if (event->button == 1)
751     gtk_window_begin_resize_drag (GTK_WINDOW (ancestor),
752                                   edge,
753                                   event->button,
754                                   event->x_root, event->y_root,
755                                   event->time);
756   else if (event->button == 2)
757     gtk_window_begin_move_drag (GTK_WINDOW (ancestor),
758                                 event->button,
759                                 event->x_root, event->y_root,
760                                 event->time);
761   else
762     return FALSE;
763   
764   return TRUE;
765 }
766
767 static gboolean
768 gtk_statusbar_expose_event (GtkWidget      *widget,
769                             GdkEventExpose *event)
770 {
771   GtkStatusbar *statusbar;
772   GdkRectangle rect;
773   
774   statusbar = GTK_STATUSBAR (widget);
775
776   GTK_WIDGET_CLASS (gtk_statusbar_parent_class)->expose_event (widget, event);
777
778   if (statusbar->has_resize_grip)
779     {
780       GdkWindowEdge edge;
781       
782       edge = get_grip_edge (statusbar);
783
784       get_grip_rect (statusbar, &rect);
785
786       gtk_paint_resize_grip (widget->style,
787                              widget->window,
788                              GTK_WIDGET_STATE (widget),
789                              &event->area,
790                              widget,
791                              "statusbar",
792                              edge,
793                              rect.x, rect.y,
794                              /* don't draw grip over the frame, though you
795                               * can click on the frame.
796                               */
797                              rect.width - widget->style->xthickness,
798                              rect.height - widget->style->ythickness);
799     }
800
801   return FALSE;
802 }
803
804 static void
805 gtk_statusbar_size_request (GtkWidget      *widget,
806                             GtkRequisition *requisition)
807 {
808   GtkStatusbar *statusbar;
809   GtkShadowType shadow_type;
810   
811   statusbar = GTK_STATUSBAR (widget);
812
813   gtk_widget_style_get (GTK_WIDGET (statusbar), "shadow-type", &shadow_type, NULL);  
814   gtk_frame_set_shadow_type (GTK_FRAME (statusbar->frame), shadow_type);
815   
816   GTK_WIDGET_CLASS (gtk_statusbar_parent_class)->size_request (widget, requisition);
817 }
818
819 /* look for extra children between the frame containing
820  * the label and where we want to draw the resize grip 
821  */
822 static gboolean
823 has_extra_children (GtkStatusbar *statusbar)
824 {
825   GList *l;
826   GtkBoxChild *child, *frame;
827
828   frame = NULL;
829   for (l = GTK_BOX (statusbar)->children; l; l = l->next)
830     {
831       frame = l->data;
832
833       if (frame->widget == statusbar->frame)
834         break;
835     }
836   
837   for (l = l->next; l; l = l->next)
838     {
839       child = l->data;
840
841       if (!GTK_WIDGET_VISIBLE (child->widget))
842         continue;
843
844       if (frame->pack == GTK_PACK_START || child->pack == GTK_PACK_END)
845         return TRUE;
846     }
847
848   return FALSE;
849 }
850
851 static void
852 gtk_statusbar_size_allocate  (GtkWidget     *widget,
853                               GtkAllocation *allocation)
854 {
855   GtkStatusbar *statusbar = GTK_STATUSBAR (widget);
856   gboolean extra_children = FALSE;
857   GdkRectangle rect;
858
859   if (statusbar->has_resize_grip)
860     {
861       widget->allocation = *allocation;
862       get_grip_rect (statusbar, &rect);    
863       
864       extra_children = has_extra_children (statusbar);
865       
866       /* If there are extra children, we don't want them to occupy
867        * the space where we draw the resize grip, so we temporarily
868        * shrink the allocation.
869        * If there are no extra children, we want the frame to get
870        * the full allocation, and we fix up the allocation of the
871        * label afterwards to make room for the grip.
872        */
873       if (extra_children)
874         {
875           allocation->width -= rect.width;
876           if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) 
877             allocation->x += rect.width;
878         }
879     }
880
881   /* chain up normally */
882   GTK_WIDGET_CLASS (gtk_statusbar_parent_class)->size_allocate (widget, allocation);
883
884   if (statusbar->has_resize_grip)
885     {
886       if (statusbar->grip_window)
887         {
888           gdk_window_raise (statusbar->grip_window);
889           gdk_window_move_resize (statusbar->grip_window,
890                                   rect.x, rect.y,
891                                   rect.width, rect.height);
892         }
893
894       if (extra_children) 
895         {
896           allocation->width += rect.width;
897           if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) 
898             allocation->x -= rect.width;
899           
900           widget->allocation = *allocation;
901         }
902       else
903         {
904           GtkWidget *child;
905
906           /* Use the frame's child instead of statusbar->label directly, in case
907            * the label has been replaced by a container as the frame's child
908            * (and the label reparented into that container).
909            */
910           child = gtk_bin_get_child (GTK_BIN (statusbar->frame));
911
912           if (child->allocation.width + rect.width > statusbar->frame->allocation.width)
913             {
914               /* shrink the label to make room for the grip */
915               *allocation = child->allocation;
916               allocation->width = MAX (1, allocation->width - rect.width);
917               if (gtk_widget_get_direction (widget) == GTK_TEXT_DIR_RTL) 
918                 allocation->x += child->allocation.width - allocation->width;
919
920               gtk_widget_size_allocate (child, allocation);
921             }
922         }
923     }
924 }
925
926 static void
927 label_selectable_changed (GtkWidget  *label,
928                           GParamSpec *pspec,
929                           gpointer    data)
930 {
931   GtkStatusbar *statusbar = GTK_STATUSBAR (data);
932
933   if (statusbar && 
934       statusbar->has_resize_grip && statusbar->grip_window)
935     gdk_window_raise (statusbar->grip_window);
936 }
937
938 #define __GTK_STATUSBAR_C__
939 #include "gtkaliasdef.c"