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