]> Pileus Git - ~andy/gtk/blob - gtk/gtktoolpalette.c
GtkToolPalette: Use GtkToolItemGroup* instead of GtkWidget* for setter parameters.
[~andy/gtk] / gtk / gtktoolpalette.c
1 /* GtkToolPalette -- A tool palette with categories and DnD support
2  * Copyright (C) 2008  Openismus GmbH
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  *
18  * Authors:
19  *      Mathias Hasselmann
20  */
21
22 #include "config.h"
23
24 #include <string.h>
25 #include <gtk/gtk.h>
26
27 #include "gtktoolpaletteprivate.h"
28 #include "gtkmarshalers.h"
29
30 #include "gtkprivate.h"
31 #include "gtkintl.h"
32 #include "gtkalias.h"
33
34 #define DEFAULT_ICON_SIZE       GTK_ICON_SIZE_SMALL_TOOLBAR
35 #define DEFAULT_ORIENTATION     GTK_ORIENTATION_VERTICAL
36 #define DEFAULT_TOOLBAR_STYLE   GTK_TOOLBAR_ICONS
37
38 #define DEFAULT_CHILD_EXCLUSIVE FALSE
39 #define DEFAULT_CHILD_EXPAND    FALSE
40
41 /**
42  * SECTION:gtktoolpalette
43  * @Short_description: A tool palette with categories
44  * @Title: GtkToolPalette
45  *
46  * A #GtkToolPalette allows you to add #GtkToolItem<!-- -->s to a palette-like
47  * container with different categories and drag and drop support.
48  *
49  * A #GtkToolPalette is created with a call to gtk_tool_palette_new().
50  *
51  * #GtkToolItem<!-- -->s cannot be added directly to a #GtkToolPalette - 
52  * instead they are added to a #GtkToolItemGroup which can than be added
53  * to a #GtkToolPalette. To add a #GtkToolItemGroup to a #GtkToolPalette,
54  * use gtk_container_add().
55  *
56  * |[
57  * GtkWidget *palette, *group;
58  * GtkToolItem *item;
59  *
60  * palette = gtk_tool_palette_new ();
61  * group = gtk_tool_item_group_new (_("Test Category"));
62  * gtk_container_add (GTK_CONTAINER (palette), group);
63  *
64  * item = gtk_tool_button_new_from_stock (GTK_STOCK_OK);
65  * gtk_tool_item_group_insert (GTK_TOOL_ITEM_GROUP (group), item, -1);
66  * ]|
67  *
68  * The easiest way to use drag and drop with #GtkToolPalette is to call
69  * gtk_tool_palette_add_drag_dest() with the desired drag source @palette
70  * and the desired drag target @widget. Then gtk_tool_palette_get_drag_item()
71  * can be used to get the dragged item in the #GtkWidget::drag-data-received
72  * signal handler of the drag target.
73  *
74  * |[
75  * static void
76  * passive_canvas_drag_data_received (GtkWidget        *widget,
77  *                                    GdkDragContext   *context,
78  *                                    gint              x,
79  *                                    gint              y,
80  *                                    GtkSelectionData *selection,
81  *                                    guint             info,
82  *                                    guint             time,
83  *                                    gpointer          data)
84  * {
85  *   GtkWidget *palette;
86  *   GtkWidget *item;
87  *
88  *   /<!-- -->* Get the dragged item *<!-- -->/
89  *   palette = gtk_widget_get_ancestor (gtk_drag_get_source_widget (context),
90  *                                      GTK_TYPE_TOOL_PALETTE);
91  *   if (palette != NULL)
92  *     item = gtk_tool_palette_get_drag_item (GTK_TOOL_PALETTE (palette),
93  *                                            selection);
94  *
95  *   /<!-- -->* Do something with item *<!-- -->/
96  * }
97  *
98  * GtkWidget *target, palette;
99  *
100  * palette = gtk_tool_palette_new ();
101  * target = gtk_drawing_area_new ();
102  *
103  * g_signal_connect (G_OBJECT (target), "drag-data-received",
104  *                   G_CALLBACK (passive_canvas_drag_data_received), NULL);
105  * gtk_tool_palette_add_drag_dest (GTK_TOOL_PALETTE (palette), target,
106  *                                 GTK_DEST_DEFAULT_ALL,
107  *                                 GTK_TOOL_PALETTE_DRAG_ITEMS,
108  *                                 GDK_ACTION_COPY);
109  * ]|
110  *
111  * Since: 2.20
112  */
113
114 typedef struct _GtkToolItemGroupInfo   GtkToolItemGroupInfo;
115 typedef struct _GtkToolPaletteDragData GtkToolPaletteDragData;
116
117 enum
118 {
119   PROP_NONE,
120   PROP_ICON_SIZE,
121   PROP_ICON_SIZE_SET,
122   PROP_ORIENTATION,
123   PROP_TOOLBAR_STYLE,
124 };
125
126 enum
127 {
128   CHILD_PROP_NONE,
129   CHILD_PROP_EXCLUSIVE,
130   CHILD_PROP_EXPAND,
131 };
132
133 struct _GtkToolItemGroupInfo
134 {
135   GtkToolItemGroup *widget;
136
137   guint             notify_collapsed;
138   guint             pos;
139   guint             exclusive : 1;
140   guint             expand : 1;
141 };
142
143 struct _GtkToolPalettePrivate
144 {
145   GPtrArray* groups;
146
147   GtkAdjustment        *hadjustment;
148   GtkAdjustment        *vadjustment;
149
150   GtkIconSize           icon_size;
151   gboolean              icon_size_set;
152   GtkOrientation        orientation;
153   GtkToolbarStyle       style;
154   gboolean              style_set;
155
156   GtkWidget            *expanding_child;
157
158   GtkSizeGroup         *text_size_group;
159
160   GtkSettings       *settings;
161   gulong             settings_connection;
162
163   guint                 drag_source : 2;
164 };
165
166 struct _GtkToolPaletteDragData
167 {
168   GtkToolPalette *palette;
169   GtkWidget      *item;
170 };
171
172 static GdkAtom dnd_target_atom_item = GDK_NONE;
173 static GdkAtom dnd_target_atom_group = GDK_NONE;
174
175 static const GtkTargetEntry dnd_targets[] =
176 {
177   { "application/x-gtk-tool-palette-item", GTK_TARGET_SAME_APP, 0 },
178   { "application/x-gtk-tool-palette-group", GTK_TARGET_SAME_APP, 0 },
179 };
180
181 G_DEFINE_TYPE_WITH_CODE (GtkToolPalette,
182                gtk_tool_palette,
183                GTK_TYPE_CONTAINER,
184                G_IMPLEMENT_INTERFACE (GTK_TYPE_ORIENTABLE, NULL));
185
186 static void
187 gtk_tool_palette_init (GtkToolPalette *palette)
188 {
189   palette->priv = G_TYPE_INSTANCE_GET_PRIVATE (palette,
190                                                GTK_TYPE_TOOL_PALETTE,
191                                                GtkToolPalettePrivate);
192
193   palette->priv->groups = g_ptr_array_sized_new (4);
194   g_ptr_array_set_free_func (palette->priv->groups, g_free);
195
196   palette->priv->icon_size = DEFAULT_ICON_SIZE;
197   palette->priv->icon_size_set = FALSE;
198   palette->priv->orientation = DEFAULT_ORIENTATION;
199   palette->priv->style = DEFAULT_TOOLBAR_STYLE;
200   palette->priv->style_set = FALSE;
201
202   palette->priv->text_size_group = gtk_size_group_new (GTK_SIZE_GROUP_BOTH);
203 }
204
205 static void
206 gtk_tool_palette_reconfigured (GtkToolPalette *palette)
207 {
208   guint i;
209
210   for (i = 0; i < palette->priv->groups->len; ++i)
211     {
212       GtkToolItemGroupInfo *info = g_ptr_array_index (palette->priv->groups, i);
213       if (info->widget)
214         _gtk_tool_item_group_palette_reconfigured (info->widget);
215     }
216
217   gtk_widget_queue_resize_no_redraw (GTK_WIDGET (palette));
218 }
219
220 static void
221 gtk_tool_palette_set_property (GObject      *object,
222                                guint         prop_id,
223                                const GValue *value,
224                                GParamSpec   *pspec)
225 {
226   GtkToolPalette *palette = GTK_TOOL_PALETTE (object);
227
228   switch (prop_id)
229     {
230       case PROP_ICON_SIZE:
231         if ((guint) g_value_get_enum (value) != palette->priv->icon_size)
232           {
233             palette->priv->icon_size = g_value_get_enum (value);
234             gtk_tool_palette_reconfigured (palette);
235           }
236         break;
237
238       case PROP_ICON_SIZE_SET:
239         if ((guint) g_value_get_enum (value) != palette->priv->icon_size)
240           {
241             palette->priv->icon_size_set = g_value_get_enum (value);
242             gtk_tool_palette_reconfigured (palette);
243           }
244         break;
245
246       case PROP_ORIENTATION:
247         if ((guint) g_value_get_enum (value) != palette->priv->orientation)
248           {
249             palette->priv->orientation = g_value_get_enum (value);
250             gtk_tool_palette_reconfigured (palette);
251           }
252         break;
253
254       case PROP_TOOLBAR_STYLE:
255         if ((guint) g_value_get_enum (value) != palette->priv->style)
256           {
257             palette->priv->style = g_value_get_enum (value);
258             gtk_tool_palette_reconfigured (palette);
259           }
260         break;
261
262       default:
263         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
264         break;
265     }
266 }
267
268 static void
269 gtk_tool_palette_get_property (GObject    *object,
270                                guint       prop_id,
271                                GValue     *value,
272                                GParamSpec *pspec)
273 {
274   GtkToolPalette *palette = GTK_TOOL_PALETTE (object);
275
276   switch (prop_id)
277     {
278       case PROP_ICON_SIZE:
279         g_value_set_enum (value, gtk_tool_palette_get_icon_size (palette));
280         break;
281
282       case PROP_ICON_SIZE_SET:
283         g_value_set_boolean (value, palette->priv->icon_size_set);
284         break;
285
286       case PROP_ORIENTATION:
287         g_value_set_enum (value, palette->priv->orientation);
288         break;
289
290       case PROP_TOOLBAR_STYLE:
291         g_value_set_enum (value, gtk_tool_palette_get_style (palette));
292         break;
293
294       default:
295         G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
296         break;
297     }
298 }
299
300 static void
301 gtk_tool_palette_dispose (GObject *object)
302 {
303   GtkToolPalette *palette = GTK_TOOL_PALETTE (object);
304   guint i;
305
306   if (palette->priv->hadjustment)
307     {
308       g_object_unref (palette->priv->hadjustment);
309       palette->priv->hadjustment = NULL;
310     }
311
312   if (palette->priv->vadjustment)
313     {
314       g_object_unref (palette->priv->vadjustment);
315       palette->priv->vadjustment = NULL;
316     }
317
318   for (i = 0; i < palette->priv->groups->len; ++i)
319     {
320       GtkToolItemGroupInfo *group = g_ptr_array_index (palette->priv->groups, i);
321
322       if (group->notify_collapsed)
323         {
324           g_signal_handler_disconnect (group->widget, group->notify_collapsed);
325           group->notify_collapsed = 0;
326         }
327     }
328
329   if (palette->priv->text_size_group)
330     {
331       g_object_unref (palette->priv->text_size_group);
332       palette->priv->text_size_group = NULL;
333     }
334
335   G_OBJECT_CLASS (gtk_tool_palette_parent_class)->dispose (object);
336 }
337
338 static void
339 gtk_tool_palette_finalize (GObject *object)
340 {
341   GtkToolPalette *palette = GTK_TOOL_PALETTE (object);
342
343   g_ptr_array_free (palette->priv->groups, TRUE);
344
345   G_OBJECT_CLASS (gtk_tool_palette_parent_class)->finalize (object);
346 }
347
348 static void
349 gtk_tool_palette_size_request (GtkWidget      *widget,
350                                GtkRequisition *requisition)
351 {
352   const gint border_width = GTK_CONTAINER (widget)->border_width;
353   GtkToolPalette *palette = GTK_TOOL_PALETTE (widget);
354   GtkRequisition child_requisition;
355   guint i;
356
357   requisition->width = 0;
358   requisition->height = 0;
359
360   for (i = 0; i < palette->priv->groups->len; ++i)
361     {
362       GtkToolItemGroupInfo *group = g_ptr_array_index (palette->priv->groups, i);
363
364       if (!group->widget)
365         continue;
366
367       gtk_widget_size_request (GTK_WIDGET (group->widget), &child_requisition);
368
369       if (GTK_ORIENTATION_VERTICAL == palette->priv->orientation)
370         {
371           requisition->width = MAX (requisition->width, child_requisition.width);
372           requisition->height += child_requisition.height;
373         }
374       else
375         {
376           requisition->width += child_requisition.width;
377           requisition->height = MAX (requisition->height, child_requisition.height);
378         }
379     }
380
381   requisition->width += border_width * 2;
382   requisition->height += border_width * 2;
383 }
384
385 static void
386 gtk_tool_palette_size_allocate (GtkWidget     *widget,
387                                 GtkAllocation *allocation)
388 {
389   const gint border_width = GTK_CONTAINER (widget)->border_width;
390   GtkToolPalette *palette = GTK_TOOL_PALETTE (widget);
391   GtkAdjustment *adjustment = NULL;
392   GtkAllocation child_allocation;
393
394   gint n_expand_groups = 0;
395   gint remaining_space = 0;
396   gint expand_space = 0;
397
398   gint page_start, page_size = 0;
399   gint offset = 0;
400   guint i;
401
402   gint min_offset = -1, max_offset = -1;
403
404   gint x;
405
406   gint *group_sizes = g_newa (gint, palette->priv->groups->len);
407
408   GtkTextDirection direction = gtk_widget_get_direction (widget);
409
410   GTK_WIDGET_CLASS (gtk_tool_palette_parent_class)->size_allocate (widget, allocation);
411
412   if (GTK_ORIENTATION_VERTICAL == palette->priv->orientation)
413     {
414       adjustment = palette->priv->vadjustment;
415       page_size = allocation->height;
416     }
417   else
418     {
419       adjustment = palette->priv->hadjustment;
420       page_size = allocation->width;
421     }
422
423   if (adjustment)
424     offset = gtk_adjustment_get_value (adjustment);
425   if (GTK_ORIENTATION_HORIZONTAL == palette->priv->orientation &&
426       GTK_TEXT_DIR_RTL == direction)
427     offset = -offset;
428
429   if (GTK_ORIENTATION_VERTICAL == palette->priv->orientation)
430     child_allocation.width = allocation->width - border_width * 2;
431   else
432     child_allocation.height = allocation->height - border_width * 2;
433
434   if (GTK_ORIENTATION_VERTICAL == palette->priv->orientation)
435     remaining_space = allocation->height;
436   else
437     remaining_space = allocation->width;
438
439   /* figure out the required size of all groups to be able to distribute the
440    * remaining space on allocation
441    */
442   for (i = 0; i < palette->priv->groups->len; ++i)
443     {
444       GtkToolItemGroupInfo *group = g_ptr_array_index (palette->priv->groups, i);
445       gint size;
446
447       if (!group->widget)
448         continue;
449
450       widget = GTK_WIDGET (group->widget);
451
452       if (gtk_tool_item_group_get_n_items (group->widget))
453         {
454           if (GTK_ORIENTATION_VERTICAL == palette->priv->orientation)
455             size = _gtk_tool_item_group_get_height_for_width (group->widget, child_allocation.width);
456           else
457             size = _gtk_tool_item_group_get_width_for_height (group->widget, child_allocation.height);
458
459           if (group->expand && !gtk_tool_item_group_get_collapsed (group->widget))
460             n_expand_groups += 1;
461         }
462       else
463         size = 0;
464
465       remaining_space -= size;
466       group_sizes[i] = size;
467
468       /* if the widget is currently expanding an offset which allows to
469        * display as much of the widget as possible is calculated
470        */
471       if (widget == palette->priv->expanding_child)
472         {
473           gint limit =
474             GTK_ORIENTATION_VERTICAL == palette->priv->orientation ?
475             child_allocation.width : child_allocation.height;
476
477           gint real_size;
478           guint j;
479
480           min_offset = 0;
481
482           for (j = 0; j < i; ++j)
483             min_offset += group_sizes[j];
484
485           max_offset = min_offset + group_sizes[i];
486
487           real_size = _gtk_tool_item_group_get_size_for_limit
488             (GTK_TOOL_ITEM_GROUP (widget), limit,
489              GTK_ORIENTATION_VERTICAL == palette->priv->orientation,
490              FALSE);
491
492           if (size == real_size)
493             palette->priv->expanding_child = NULL;
494         }
495     }
496
497   if (n_expand_groups > 0)
498     {
499       remaining_space = MAX (0, remaining_space);
500       expand_space = remaining_space / n_expand_groups;
501     }
502
503   if (max_offset != -1)
504     {
505       gint limit =
506         GTK_ORIENTATION_VERTICAL == palette->priv->orientation ?
507         allocation->height : allocation->width;
508
509       offset = MIN (MAX (offset, max_offset - limit), min_offset);
510     }
511
512   if (remaining_space > 0)
513     offset = 0;
514
515   x = border_width;
516   child_allocation.y = border_width;
517
518   if (GTK_ORIENTATION_VERTICAL == palette->priv->orientation)
519     child_allocation.y -= offset;
520   else
521     x -= offset;
522
523   /* allocate all groups at the calculated positions */
524   for (i = 0; i < palette->priv->groups->len; ++i)
525     {
526       GtkToolItemGroupInfo *group = g_ptr_array_index (palette->priv->groups, i);
527       GtkWidget *widget;
528
529       if (!group->widget)
530         continue;
531
532       widget = GTK_WIDGET (group->widget);
533
534       if (gtk_tool_item_group_get_n_items (group->widget))
535         {
536           gint size = group_sizes[i];
537
538           if (group->expand && !gtk_tool_item_group_get_collapsed (group->widget))
539             {
540               size += MIN (expand_space, remaining_space);
541               remaining_space -= expand_space;
542             }
543
544           if (GTK_ORIENTATION_VERTICAL == palette->priv->orientation)
545             child_allocation.height = size;
546           else
547             child_allocation.width = size;
548
549           if (GTK_ORIENTATION_HORIZONTAL == palette->priv->orientation &&
550               GTK_TEXT_DIR_RTL == direction)
551             child_allocation.x = allocation->width - x - child_allocation.width;
552           else
553             child_allocation.x = x;
554
555           gtk_widget_size_allocate (widget, &child_allocation);
556           gtk_widget_show (widget);
557
558           if (GTK_ORIENTATION_VERTICAL == palette->priv->orientation)
559             child_allocation.y += child_allocation.height;
560           else
561             x += child_allocation.width;
562         }
563       else
564         gtk_widget_hide (widget);
565     }
566
567   if (GTK_ORIENTATION_VERTICAL == palette->priv->orientation)
568     {
569       child_allocation.y += border_width;
570       child_allocation.y += offset;
571
572       page_start = child_allocation.y;
573     }
574   else
575     {
576       x += border_width;
577       x += offset;
578
579       page_start = x;
580     }
581
582   /* update the scrollbar to match the displayed adjustment */
583   if (adjustment)
584     {
585       gdouble value;
586
587       adjustment->page_increment = page_size * 0.9;
588       adjustment->step_increment = page_size * 0.1;
589       adjustment->page_size = page_size;
590
591       if (GTK_ORIENTATION_VERTICAL == palette->priv->orientation ||
592           GTK_TEXT_DIR_LTR == direction)
593         {
594           adjustment->lower = 0;
595           adjustment->upper = MAX (0, page_start);
596
597           value = MIN (offset, adjustment->upper - adjustment->page_size);
598           gtk_adjustment_clamp_page (adjustment, value, offset + page_size);
599         }
600       else
601         {
602           adjustment->lower = page_size - MAX (0, page_start);
603           adjustment->upper = page_size;
604
605           offset = -offset;
606
607           value = MAX (offset, adjustment->lower);
608           gtk_adjustment_clamp_page (adjustment, offset, value + page_size);
609         }
610
611       gtk_adjustment_changed (adjustment);
612     }
613 }
614
615 static gboolean
616 gtk_tool_palette_expose_event (GtkWidget      *widget,
617                                GdkEventExpose *event)
618 {
619   GtkToolPalette *palette = GTK_TOOL_PALETTE (widget);
620   GdkDisplay *display;
621   cairo_t *cr;
622   guint i;
623
624   display = gdk_drawable_get_display (widget->window);
625
626   if (!gdk_display_supports_composite (display))
627     return FALSE;
628
629   cr = gdk_cairo_create (widget->window);
630   gdk_cairo_region (cr, event->region);
631   cairo_clip (cr);
632
633   cairo_push_group (cr);
634
635   for (i = 0; i < palette->priv->groups->len; ++i)
636   {
637     GtkToolItemGroupInfo *info = g_ptr_array_index (palette->priv->groups, i);
638     if (info->widget)
639       _gtk_tool_item_group_paint (info->widget, cr);
640   }
641
642   cairo_pop_group_to_source (cr);
643
644   cairo_paint (cr);
645   cairo_destroy (cr);
646
647   return FALSE;
648 }
649
650 static void
651 gtk_tool_palette_realize (GtkWidget *widget)
652 {
653   const gint border_width = GTK_CONTAINER (widget)->border_width;
654   gint attributes_mask = GDK_WA_X | GDK_WA_Y | GDK_WA_VISUAL | GDK_WA_COLORMAP;
655   GdkWindowAttr attributes;
656
657   attributes.window_type = GDK_WINDOW_CHILD;
658   attributes.x = widget->allocation.x + border_width;
659   attributes.y = widget->allocation.y + border_width;
660   attributes.width = widget->allocation.width - border_width * 2;
661   attributes.height = widget->allocation.height - border_width * 2;
662   attributes.wclass = GDK_INPUT_OUTPUT;
663   attributes.visual = gtk_widget_get_visual (widget);
664   attributes.colormap = gtk_widget_get_colormap (widget);
665   attributes.event_mask = GDK_VISIBILITY_NOTIFY_MASK | GDK_EXPOSURE_MASK
666                         | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK
667                         | GDK_BUTTON_MOTION_MASK;
668
669   widget->window = gdk_window_new (gtk_widget_get_parent_window (widget),
670                                    &attributes, attributes_mask);
671
672   gdk_window_set_user_data (widget->window, widget);
673   widget->style = gtk_style_attach (widget->style, widget->window);
674   gtk_style_set_background (widget->style, widget->window, GTK_STATE_NORMAL);
675   GTK_WIDGET_SET_FLAGS (widget, GTK_REALIZED);
676
677   gtk_container_forall (GTK_CONTAINER (widget),
678                         (GtkCallback) gtk_widget_set_parent_window,
679                         widget->window);
680
681   gtk_widget_queue_resize_no_redraw (widget);
682 }
683
684 static void
685 gtk_tool_palette_adjustment_value_changed (GtkAdjustment *adjustment,
686                                            gpointer       data)
687 {
688   GtkWidget *widget = GTK_WIDGET (data);
689   gtk_tool_palette_size_allocate (widget, &widget->allocation);
690 }
691
692 static void
693 gtk_tool_palette_set_scroll_adjustments (GtkWidget     *widget,
694                                          GtkAdjustment *hadjustment,
695                                          GtkAdjustment *vadjustment)
696 {
697   GtkToolPalette *palette = GTK_TOOL_PALETTE (widget);
698
699   if (hadjustment)
700     g_object_ref_sink (hadjustment);
701   if (vadjustment)
702     g_object_ref_sink (vadjustment);
703
704   if (palette->priv->hadjustment)
705     g_object_unref (palette->priv->hadjustment);
706   if (palette->priv->vadjustment)
707     g_object_unref (palette->priv->vadjustment);
708
709   palette->priv->hadjustment = hadjustment;
710   palette->priv->vadjustment = vadjustment;
711
712   if (palette->priv->hadjustment)
713     g_signal_connect (palette->priv->hadjustment, "value-changed",
714                       G_CALLBACK (gtk_tool_palette_adjustment_value_changed),
715                       palette);
716   if (palette->priv->vadjustment)
717     g_signal_connect (palette->priv->vadjustment, "value-changed",
718                       G_CALLBACK (gtk_tool_palette_adjustment_value_changed),
719                       palette);
720 }
721
722 static void
723 gtk_tool_palette_add (GtkContainer *container,
724                       GtkWidget    *child)
725 {
726   GtkToolPalette *palette;
727   GtkToolItemGroupInfo *info = g_new0(GtkToolItemGroupInfo, 1);
728
729   g_return_if_fail (GTK_IS_TOOL_PALETTE (container));
730   g_return_if_fail (GTK_IS_TOOL_ITEM_GROUP (child));
731
732   palette = GTK_TOOL_PALETTE (container);
733
734   g_ptr_array_add (palette->priv->groups, info);
735   info->pos = palette->priv->groups->len - 1;
736   info->widget = g_object_ref_sink (child);
737
738   gtk_widget_set_parent (child, GTK_WIDGET (palette));
739 }
740
741 static void
742 gtk_tool_palette_remove (GtkContainer *container,
743                          GtkWidget    *child)
744 {
745   GtkToolPalette *palette;
746   guint i;
747
748   g_return_if_fail (GTK_IS_TOOL_PALETTE (container));
749   palette = GTK_TOOL_PALETTE (container);
750
751   for (i = 0; i < palette->priv->groups->len; ++i)
752     {
753       GtkToolItemGroupInfo *info = g_ptr_array_index (palette->priv->groups, i);
754       if (GTK_WIDGET(info->widget) == child)
755         {
756           g_object_unref (child);
757           gtk_widget_unparent (child);
758
759           g_ptr_array_remove_index (palette->priv->groups, i);
760         }
761     }
762 }
763
764 static void
765 gtk_tool_palette_forall (GtkContainer *container,
766                          gboolean      internals,
767                          GtkCallback   callback,
768                          gpointer      callback_data)
769 {
770   GtkToolPalette *palette = GTK_TOOL_PALETTE (container);
771   guint i;
772
773
774   for (i = 0; i < palette->priv->groups->len; ++i)
775     {
776       GtkToolItemGroupInfo *info = g_ptr_array_index (palette->priv->groups, i);
777       if (info->widget)
778         callback (GTK_WIDGET (info->widget),
779                   callback_data);
780     }
781 }
782
783 static GType
784 gtk_tool_palette_child_type (GtkContainer *container)
785 {
786   return GTK_TYPE_TOOL_ITEM_GROUP;
787 }
788
789 static void
790 gtk_tool_palette_set_child_property (GtkContainer *container,
791                                      GtkWidget    *child,
792                                      guint         prop_id,
793                                      const GValue *value,
794                                      GParamSpec   *pspec)
795 {
796   GtkToolPalette *palette = GTK_TOOL_PALETTE (container);
797
798   switch (prop_id)
799     {
800       case CHILD_PROP_EXCLUSIVE:
801         gtk_tool_palette_set_exclusive (palette, GTK_TOOL_ITEM_GROUP (child), 
802           g_value_get_boolean (value));
803         break;
804
805       case CHILD_PROP_EXPAND:
806         gtk_tool_palette_set_expand (palette, GTK_TOOL_ITEM_GROUP (child), 
807           g_value_get_boolean (value));
808         break;
809
810       default:
811         GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID (container, prop_id, pspec);
812         break;
813     }
814 }
815
816 static void
817 gtk_tool_palette_get_child_property (GtkContainer *container,
818                                      GtkWidget    *child,
819                                      guint         prop_id,
820                                      GValue       *value,
821                                      GParamSpec   *pspec)
822 {
823   GtkToolPalette *palette = GTK_TOOL_PALETTE (container);
824
825   switch (prop_id)
826     {
827       case CHILD_PROP_EXCLUSIVE:
828         g_value_set_boolean (value, 
829           gtk_tool_palette_get_exclusive (palette, GTK_TOOL_ITEM_GROUP (child)));
830         break;
831
832       case CHILD_PROP_EXPAND:
833         g_value_set_boolean (value, 
834           gtk_tool_palette_get_expand (palette, GTK_TOOL_ITEM_GROUP (child)));
835         break;
836
837       default:
838         GTK_CONTAINER_WARN_INVALID_CHILD_PROPERTY_ID (container, prop_id, pspec);
839         break;
840     }
841 }
842
843 static void
844 style_change_notify (GtkToolPalette *palette)
845 {
846   GtkToolPalettePrivate* priv = palette->priv;
847
848   if (!priv->style_set)
849     {
850       /* pretend it was set, then unset, thus reverting to new default */
851       priv->style_set = TRUE;
852       gtk_tool_palette_unset_style (palette);
853     }
854 }
855
856 static void
857 icon_size_change_notify (GtkToolPalette *palette)
858 {
859   GtkToolPalettePrivate* priv = palette->priv;
860
861   if (!priv->icon_size_set)
862     {
863       /* pretend it was set, then unset, thus reverting to new default */
864       priv->icon_size_set = TRUE;
865       gtk_tool_palette_unset_icon_size (palette);
866     }
867 }
868
869 static void
870 gtk_tool_palette_settings_change_notify (GtkSettings      *settings,
871                                          const GParamSpec *pspec,
872                                          GtkToolPalette   *palette)
873 {
874   if (strcmp (pspec->name, "gtk-toolbar-style") == 0)
875     style_change_notify (palette);
876   else if (strcmp (pspec->name, "gtk-toolbar-icon-size") == 0)
877     icon_size_change_notify (palette);
878 }
879
880 static void
881 gtk_tool_palette_screen_changed (GtkWidget *widget,
882                                  GdkScreen *previous_screen)
883 {
884   GtkToolPalette *palette = GTK_TOOL_PALETTE (widget);
885   GtkToolPalettePrivate* priv = palette->priv;
886   GtkSettings *old_settings = priv->settings;
887   GtkSettings *settings;
888
889   if (gtk_widget_has_screen (GTK_WIDGET (palette)))
890     settings = gtk_widget_get_settings (GTK_WIDGET (palette));
891   else
892     settings = NULL;
893
894   if (settings == old_settings)
895     return;
896
897   if (old_settings)
898   {
899     g_signal_handler_disconnect (old_settings, priv->settings_connection);
900     g_object_unref (old_settings);
901   }
902
903   if (settings)
904   {
905     priv->settings_connection =
906       g_signal_connect (settings, "notify",
907                         G_CALLBACK (gtk_tool_palette_settings_change_notify),
908                         palette);
909     priv->settings = g_object_ref (settings);
910   }
911   else
912     priv->settings = NULL;
913
914   gtk_tool_palette_reconfigured (palette);
915 }
916
917
918 static void
919 gtk_tool_palette_class_init (GtkToolPaletteClass *cls)
920 {
921   GObjectClass      *oclass   = G_OBJECT_CLASS (cls);
922   GtkWidgetClass    *wclass   = GTK_WIDGET_CLASS (cls);
923   GtkContainerClass *cclass   = GTK_CONTAINER_CLASS (cls);
924
925   oclass->set_property        = gtk_tool_palette_set_property;
926   oclass->get_property        = gtk_tool_palette_get_property;
927   oclass->dispose             = gtk_tool_palette_dispose;
928   oclass->finalize            = gtk_tool_palette_finalize;
929
930   wclass->size_request        = gtk_tool_palette_size_request;
931   wclass->size_allocate       = gtk_tool_palette_size_allocate;
932   wclass->expose_event        = gtk_tool_palette_expose_event;
933   wclass->realize             = gtk_tool_palette_realize;
934
935   cclass->add                 = gtk_tool_palette_add;
936   cclass->remove              = gtk_tool_palette_remove;
937   cclass->forall              = gtk_tool_palette_forall;
938   cclass->child_type          = gtk_tool_palette_child_type;
939   cclass->set_child_property  = gtk_tool_palette_set_child_property;
940   cclass->get_child_property  = gtk_tool_palette_get_child_property;
941
942   cls->set_scroll_adjustments = gtk_tool_palette_set_scroll_adjustments;
943
944   /* Handle screen-changed so we can update our GtkSettings.
945    */
946   wclass->screen_changed      = gtk_tool_palette_screen_changed;
947
948   /**
949    * GtkToolPalette::set-scroll-adjustments:
950    * @widget: the GtkToolPalette that received the signal
951    * @hadjustment: The horizontal adjustment
952    * @vadjustment: The vertical adjustment
953    *
954    * Set the scroll adjustments for the viewport.
955    * Usually scrolled containers like GtkScrolledWindow will emit this
956    * signal to connect two instances of GtkScrollbar to the scroll
957    * directions of the GtkToolpalette.
958    *
959    * Since: 2.20
960    */
961   wclass->set_scroll_adjustments_signal =
962     g_signal_new ("set-scroll-adjustments",
963                   G_TYPE_FROM_CLASS (oclass),
964                   G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
965                   G_STRUCT_OFFSET (GtkToolPaletteClass, set_scroll_adjustments),
966                   NULL, NULL,
967                   _gtk_marshal_VOID__OBJECT_OBJECT,
968                   G_TYPE_NONE, 2,
969                   GTK_TYPE_ADJUSTMENT,
970                   GTK_TYPE_ADJUSTMENT);
971
972   g_object_class_override_property (oclass, PROP_ORIENTATION, "orientation");
973
974   /**
975    * GtkToolPalette:icon-size:
976    *
977    * The size of the icons in a tool palette is normally determined by
978    * the #GtkSettings:toolbar-icon-size setting. When this property is set,
979    * it overrides the setting.
980    *
981    * This should only be used for special-purpose tool palettes, normal
982    * application tool palettes should respect the user preferences for the
983    * size of icons.
984    *
985    * Since: 2.20
986    */
987   g_object_class_install_property (oclass,
988                                    PROP_ICON_SIZE,
989                                    g_param_spec_enum ("icon-size",
990                                                       P_("Icon size"),
991                                                       P_("Size of icons in this tool palette"),
992                                                       GTK_TYPE_ICON_SIZE,
993                                                       DEFAULT_ICON_SIZE,
994                                                       GTK_PARAM_READWRITE));
995
996   /**
997    * GtkToolPalette:icon-size-set:
998    *
999    * Is %TRUE if the #GtkToolPalette:icon-size property has been set.
1000    *
1001    * Since: 2.20
1002    */
1003   g_object_class_install_property (oclass,
1004                                    PROP_ICON_SIZE_SET,
1005                                    g_param_spec_boolean ("icon-size-set",
1006                                                       P_("Icon size set"),
1007                                                       P_("Whether the icon-size property has been set"),
1008                                                       FALSE,
1009                                                       GTK_PARAM_READWRITE));
1010
1011   /**
1012    * GtkToolPalette:toolbar-style:
1013    *
1014    * The style of items in the tool palette.
1015    *
1016    * Since: 2.20
1017    */
1018   g_object_class_install_property (oclass, PROP_TOOLBAR_STYLE,
1019                                    g_param_spec_enum ("toolbar-style",
1020                                                       P_("Toolbar Style"),
1021                                                       P_("Style of items in the tool palette"),
1022                                                       GTK_TYPE_TOOLBAR_STYLE,
1023                                                       DEFAULT_TOOLBAR_STYLE,
1024                                                       GTK_PARAM_READWRITE));
1025
1026
1027   /**
1028    * GtkToolPalette:exclusive:
1029    *
1030    * Whether the item group should be the only one that is expanded
1031    * at a given time.
1032    *
1033    * Since: 2.20
1034    */
1035   gtk_container_class_install_child_property (cclass, CHILD_PROP_EXCLUSIVE,
1036                                               g_param_spec_boolean ("exclusive",
1037                                                                     P_("Exclusive"),
1038                                                                     P_("Whether the item group should be the only expanded at a given time"),
1039                                                                     DEFAULT_CHILD_EXCLUSIVE,
1040                                                                     GTK_PARAM_READWRITE));
1041
1042   /**
1043    * GtkToolPalette:expand:
1044    *
1045    * Whether the item group should receive extra space when the palette grows.
1046    * at a given time.
1047    *
1048    * Since: 2.20
1049    */
1050   gtk_container_class_install_child_property (cclass, CHILD_PROP_EXPAND,
1051                                               g_param_spec_boolean ("expand",
1052                                                                     P_("Expand"),
1053                                                                     P_("Whether the item group should receive extra space when the palette grows"),
1054                                                                     DEFAULT_CHILD_EXPAND,
1055                                                                     GTK_PARAM_READWRITE));
1056
1057   g_type_class_add_private (cls, sizeof (GtkToolPalettePrivate));
1058
1059   dnd_target_atom_item = gdk_atom_intern_static_string (dnd_targets[0].target);
1060   dnd_target_atom_group = gdk_atom_intern_static_string (dnd_targets[1].target);
1061 }
1062
1063 /**
1064  * gtk_tool_palette_new:
1065  *
1066  * Creates a new tool palette.
1067  *
1068  * Returns: a new #GtkToolPalette
1069  *
1070  * Since: 2.20
1071  */
1072 GtkWidget*
1073 gtk_tool_palette_new (void)
1074 {
1075   return g_object_new (GTK_TYPE_TOOL_PALETTE, NULL);
1076 }
1077
1078 /**
1079  * gtk_tool_palette_set_icon_size:
1080  * @palette: a #GtkToolPalette
1081  * @icon_size: (type int): the #GtkIconSize that icons in the tool
1082  *     palette shall have
1083  *
1084  * Sets the size of icons in the tool palette.
1085  *
1086  * Since: 2.20
1087  */
1088 void
1089 gtk_tool_palette_set_icon_size (GtkToolPalette *palette,
1090                                 GtkIconSize     icon_size)
1091 {
1092   GtkToolPalettePrivate *priv;
1093
1094   g_return_if_fail (GTK_IS_TOOL_PALETTE (palette));
1095   g_return_if_fail (icon_size != GTK_ICON_SIZE_INVALID);
1096
1097   priv = palette->priv;
1098
1099   if (!priv->icon_size_set)
1100     {
1101       priv->icon_size_set = TRUE;
1102       g_object_notify (G_OBJECT (palette), "icon-size-set");
1103     }
1104
1105   if (priv->icon_size == icon_size)
1106     return;
1107
1108   priv->icon_size = icon_size;
1109   g_object_notify (G_OBJECT (palette), "icon-size");
1110
1111   gtk_tool_palette_reconfigured (palette);
1112
1113   gtk_widget_queue_resize (GTK_WIDGET (palette));
1114 }
1115
1116 static GtkSettings *
1117 toolpalette_get_settings (GtkToolPalette *palette)
1118 {
1119   GtkToolPalettePrivate *priv = palette->priv;
1120   return priv->settings;
1121 }
1122
1123 /**
1124  * gtk_tool_palette_unset_icon_size:
1125  * @palette: a #GtkToolPalette
1126  *
1127  * Unsets the tool palette icon size set with gtk_tool_palette_set_icon_size(),
1128  * so that user preferences will be used to determine the icon size.
1129  *
1130  * Since: 2.20
1131  */
1132 void
1133 gtk_tool_palette_unset_icon_size (GtkToolPalette *palette)
1134 {
1135   GtkToolPalettePrivate* priv = palette->priv;
1136   GtkIconSize size;
1137
1138   g_return_if_fail (GTK_IS_TOOL_PALETTE (palette));
1139
1140   if (palette->priv->icon_size_set)
1141     {
1142       GtkSettings *settings = toolpalette_get_settings (palette);
1143
1144       if (settings)
1145         {
1146           g_object_get (settings,
1147             "gtk-toolbar-icon-size", &size,
1148             NULL);
1149         }
1150       else
1151         size = DEFAULT_ICON_SIZE;
1152
1153       if (size != palette->priv->icon_size)
1154       {
1155         gtk_tool_palette_set_icon_size (palette, size);
1156         g_object_notify (G_OBJECT (palette), "icon-size");
1157             }
1158
1159       priv->icon_size_set = FALSE;
1160       g_object_notify (G_OBJECT (palette), "icon-size-set");
1161     }
1162 }
1163
1164 /* Set the "toolbar-style" property and do appropriate things.
1165  * GtkToolbar does this by emitting a signal instead of just
1166  * calling a function...
1167  */
1168 static void
1169 gtk_tool_palette_change_style (GtkToolPalette  *palette,
1170                                GtkToolbarStyle  style)
1171 {
1172   GtkToolPalettePrivate* priv = palette->priv;
1173
1174   if (priv->style != style)
1175     {
1176       priv->style = style;
1177
1178       gtk_tool_palette_reconfigured (palette);
1179
1180       gtk_widget_queue_resize (GTK_WIDGET (palette));
1181       g_object_notify (G_OBJECT (palette), "toolbar-style");
1182     }
1183 }
1184
1185
1186 /**
1187  * gtk_tool_palette_set_style:
1188  * @palette: a #GtkToolPalette
1189  * @style: the #GtkToolbarStyle that items in the tool palette shall have
1190  *
1191  * Sets the style (text, icons or both) of items in the tool palette.
1192  *
1193  * Since: 2.20
1194  */
1195 void
1196 gtk_tool_palette_set_style (GtkToolPalette  *palette,
1197                             GtkToolbarStyle  style)
1198 {
1199   g_return_if_fail (GTK_IS_TOOL_PALETTE (palette));
1200
1201   palette->priv->style_set = TRUE;
1202   gtk_tool_palette_change_style (palette, style);
1203 }
1204
1205
1206 /**
1207  * gtk_tool_palette_unset_style:
1208  * @palette: a #GtkToolPalette
1209  *
1210  * Unsets a toolbar style set with gtk_tool_palette_set_style(),
1211  * so that user preferences will be used to determine the toolbar style.
1212  *
1213  * Since: 2.20
1214  */
1215 void
1216 gtk_tool_palette_unset_style (GtkToolPalette *palette)
1217 {
1218   GtkToolPalettePrivate* priv = palette->priv;
1219   GtkToolbarStyle style;
1220
1221   g_return_if_fail (GTK_IS_TOOL_PALETTE (palette));
1222
1223   if (priv->style_set)
1224     {
1225       GtkSettings *settings = toolpalette_get_settings (palette);
1226
1227       if (settings)
1228         g_object_get (settings,
1229                       "gtk-toolbar-style", &style,
1230                       NULL);
1231       else
1232         style = DEFAULT_TOOLBAR_STYLE;
1233
1234       if (style != priv->style)
1235         gtk_tool_palette_change_style (palette, style);
1236
1237       priv->style_set = FALSE;
1238     }
1239 }
1240
1241 /**
1242  * gtk_tool_palette_get_icon_size:
1243  * @palette: a #GtkToolPalette
1244  *
1245  * Gets the size of icons in the tool palette.
1246  * See gtk_tool_palette_set_icon_size().
1247  *
1248  * Returns: (type int): the #GtkIconSize of icons in the tool palette
1249  *
1250  * Since: 2.20
1251  */
1252 GtkIconSize
1253 gtk_tool_palette_get_icon_size (GtkToolPalette *palette)
1254 {
1255   g_return_val_if_fail (GTK_IS_TOOL_PALETTE (palette), DEFAULT_ICON_SIZE);
1256
1257   return palette->priv->icon_size;
1258 }
1259
1260 /**
1261  * gtk_tool_palette_get_style:
1262  * @palette: a #GtkToolPalette
1263  *
1264  * Gets the style (icons, text or both) of items in the tool palette.
1265  *
1266  * Returns: the #GtkToolbarStyle of items in the tool palette.
1267  *
1268  * Since: 2.20
1269  */
1270 GtkToolbarStyle
1271 gtk_tool_palette_get_style (GtkToolPalette *palette)
1272 {
1273   g_return_val_if_fail (GTK_IS_TOOL_PALETTE (palette), DEFAULT_TOOLBAR_STYLE);
1274
1275   return palette->priv->style;
1276 }
1277
1278 gint
1279 _gtk_tool_palette_compare_groups (gconstpointer a,
1280                                   gconstpointer b)
1281 {
1282   const GtkToolItemGroupInfo *group_a = a;
1283   const GtkToolItemGroupInfo *group_b = b;
1284
1285   return group_a->pos - group_b->pos;
1286 }
1287
1288 /**
1289  * gtk_tool_palette_set_group_position:
1290  * @palette: a #GtkToolPalette
1291  * @group: a #GtkToolItemGroup which is a child of palette
1292  * @position: a new index for group
1293  *
1294  * Sets the position of the group as an index of the tool palette.
1295  * If position is 0 the group will become the first child, if position is
1296  * -1 it will become the last child.
1297  *
1298  * Since: 2.20
1299  */
1300 void
1301 gtk_tool_palette_set_group_position (GtkToolPalette   *palette,
1302                                      GtkToolItemGroup *group,
1303                                      gint             position)
1304 {
1305   GtkToolItemGroupInfo *group_new;
1306   GtkToolItemGroupInfo *group_old;
1307   gint old_position;
1308
1309   g_return_if_fail (GTK_IS_TOOL_PALETTE (palette));
1310   g_return_if_fail (GTK_IS_TOOL_ITEM_GROUP (group));
1311   g_return_if_fail (position >= -1);
1312
1313   if (-1 == position)
1314     position = palette->priv->groups->len - 1;
1315
1316   g_return_if_fail ((guint) position < palette->priv->groups->len);
1317
1318   group_new = g_ptr_array_index (palette->priv->groups, position);
1319
1320   if (GTK_TOOL_ITEM_GROUP (group) == group_new->widget)
1321     return;
1322
1323   old_position = gtk_tool_palette_get_group_position (palette, group);
1324   g_return_if_fail (old_position >= 0);
1325
1326   group_old = g_ptr_array_index (palette->priv->groups, old_position);
1327
1328   group_new->pos = position;
1329   group_old->pos = old_position;
1330
1331   g_ptr_array_sort (palette->priv->groups, _gtk_tool_palette_compare_groups);
1332
1333   gtk_widget_queue_resize (GTK_WIDGET (palette));
1334 }
1335
1336 static void
1337 gtk_tool_palette_group_notify_collapsed (GtkToolItemGroup *group,
1338                                          GParamSpec       *pspec,
1339                                          gpointer          data)
1340 {
1341   GtkToolPalette *palette = GTK_TOOL_PALETTE (data);
1342   guint i;
1343
1344   if (gtk_tool_item_group_get_collapsed (group))
1345     return;
1346
1347   for (i = 0; i < palette->priv->groups->len; ++i)
1348     {
1349       GtkToolItemGroupInfo *info = g_ptr_array_index (palette->priv->groups, i);
1350       GtkToolItemGroup *current_group = info->widget;
1351
1352       if (current_group && current_group != group)
1353         gtk_tool_item_group_set_collapsed (current_group, TRUE);
1354     }
1355 }
1356
1357 /**
1358  * gtk_tool_palette_set_exclusive:
1359  * @palette: a #GtkToolPalette
1360  * @group: a #GtkToolItemGroup which is a child of palette
1361  * @exclusive: whether the group should be exclusive or not
1362  *
1363  * Sets whether the group should be exclusive or not.
1364  * If an exclusive group is expanded all other groups are collapsed.
1365  *
1366  * Since: 2.20
1367  */
1368 void
1369 gtk_tool_palette_set_exclusive (GtkToolPalette   *palette,
1370                                 GtkToolItemGroup *group,
1371                                 gboolean          exclusive)
1372 {
1373   GtkToolItemGroupInfo *group_info;
1374   gint position;
1375
1376   g_return_if_fail (GTK_IS_TOOL_PALETTE (palette));
1377   g_return_if_fail (GTK_IS_TOOL_ITEM_GROUP (group));
1378
1379   position = gtk_tool_palette_get_group_position (palette, group);
1380   g_return_if_fail (position >= 0);
1381
1382   group_info = g_ptr_array_index (palette->priv->groups, position);
1383
1384   if (exclusive == group_info->exclusive)
1385     return;
1386
1387   group_info->exclusive = exclusive;
1388
1389   if (group_info->exclusive != (0 != group_info->notify_collapsed))
1390     {
1391       if (group_info->exclusive)
1392         {
1393           group_info->notify_collapsed =
1394             g_signal_connect (group, "notify::collapsed",
1395                               G_CALLBACK (gtk_tool_palette_group_notify_collapsed),
1396                               palette);
1397         }
1398       else
1399         {
1400           g_signal_handler_disconnect (group, group_info->notify_collapsed);
1401           group_info->notify_collapsed = 0;
1402         }
1403     }
1404
1405   gtk_tool_palette_group_notify_collapsed (group_info->widget, NULL, palette);
1406   gtk_widget_child_notify (GTK_WIDGET (group), "exclusive");
1407 }
1408
1409 /**
1410  * gtk_tool_palette_set_expand:
1411  * @palette: a #GtkToolPalette
1412  * @group: a #GtkToolItemGroup which is a child of palette
1413  * @expand: whether the group should be given extra space
1414  *
1415  * Sets whether the group should be given extra space.
1416  *
1417  * Since: 2.20
1418  */
1419 void
1420 gtk_tool_palette_set_expand (GtkToolPalette   *palette,
1421                              GtkToolItemGroup *group,
1422                              gboolean        expand)
1423 {
1424   GtkToolItemGroupInfo *group_info;
1425   gint position;
1426
1427   g_return_if_fail (GTK_IS_TOOL_PALETTE (palette));
1428   g_return_if_fail (GTK_IS_TOOL_ITEM_GROUP (group));
1429
1430   position = gtk_tool_palette_get_group_position (palette, group);
1431   g_return_if_fail (position >= 0);
1432
1433   group_info = g_ptr_array_index (palette->priv->groups, position);
1434
1435   if (expand != group_info->expand)
1436     {
1437       group_info->expand = expand;
1438       gtk_widget_queue_resize (GTK_WIDGET (palette));
1439       gtk_widget_child_notify (GTK_WIDGET (group), "expand");
1440     }
1441 }
1442
1443 /**
1444  * gtk_tool_palette_get_group_position:
1445  * @palette: a #GtkToolPalette
1446  * @group: a #GtkToolItemGroup
1447  *
1448  * Gets the position of @group in @palette as index.
1449  * See gtk_tool_palette_set_group_position().
1450  *
1451  * Returns: the index of group or -1 if @group is not a child of @palette
1452  *
1453  * Since: 2.20
1454  */
1455 gint
1456 gtk_tool_palette_get_group_position (GtkToolPalette   *palette,
1457                                      GtkToolItemGroup *group)
1458 {
1459   guint i;
1460
1461   g_return_val_if_fail (GTK_IS_TOOL_PALETTE (palette), -1);
1462   g_return_val_if_fail (GTK_IS_TOOL_ITEM_GROUP (group), -1);
1463
1464   for (i = 0; i < palette->priv->groups->len; ++i)
1465     {
1466       GtkToolItemGroupInfo *info = g_ptr_array_index (palette->priv->groups, i);
1467       if ((gpointer) group == info->widget)
1468         return i;
1469     }
1470
1471   return -1;
1472 }
1473
1474 /**
1475  * gtk_tool_palette_get_exclusive:
1476  * @palette: a #GtkToolPalette
1477  * @group: a #GtkToolItemGroup which is a child of palette
1478  *
1479  * Gets whether @group is exclusive or not.
1480  * See gtk_tool_palette_set_exclusive().
1481  *
1482  * Returns: %TRUE if @group is exclusive
1483  *
1484  * Since: 2.20
1485  */
1486 gboolean
1487 gtk_tool_palette_get_exclusive (GtkToolPalette   *palette,
1488                                 GtkToolItemGroup *group)
1489 {
1490   gint position;
1491   GtkToolItemGroupInfo *info;
1492
1493   g_return_val_if_fail (GTK_IS_TOOL_PALETTE (palette), DEFAULT_CHILD_EXCLUSIVE);
1494   g_return_val_if_fail (GTK_IS_TOOL_ITEM_GROUP (group), DEFAULT_CHILD_EXCLUSIVE);
1495
1496   position = gtk_tool_palette_get_group_position (palette, group);
1497   g_return_val_if_fail (position >= 0, DEFAULT_CHILD_EXCLUSIVE);
1498
1499   info = g_ptr_array_index (palette->priv->groups, position);
1500
1501   return info->exclusive;
1502 }
1503
1504 /**
1505  * gtk_tool_palette_get_expand:
1506  * @palette: a #GtkToolPalette
1507  * @group: a #GtkToolItemGroup which is a child of palette
1508  *
1509  * Gets whether group should be given extra space.
1510  * See gtk_tool_palette_set_expand().
1511  *
1512  * Returns: %TRUE if group should be given extra space, %FALSE otherwise
1513  *
1514  * Since: 2.20
1515  */
1516 gboolean
1517 gtk_tool_palette_get_expand (GtkToolPalette   *palette,
1518                              GtkToolItemGroup *group)
1519 {
1520   gint position;
1521   GtkToolItemGroupInfo *info;
1522
1523   g_return_val_if_fail (GTK_IS_TOOL_PALETTE (palette), DEFAULT_CHILD_EXPAND);
1524   g_return_val_if_fail (GTK_IS_TOOL_ITEM_GROUP (group), DEFAULT_CHILD_EXPAND);
1525
1526   position = gtk_tool_palette_get_group_position (palette, group);
1527   g_return_val_if_fail (position >= 0, DEFAULT_CHILD_EXPAND);
1528
1529   info = g_ptr_array_index (palette->priv->groups, position);
1530
1531   return info->expand;
1532 }
1533
1534 /**
1535  * gtk_tool_palette_get_drop_item:
1536  * @palette: a #GtkToolPalette
1537  * @x: the x position
1538  * @y: the y position
1539  *
1540  * Gets the item at position (x, y).
1541  * See gtk_tool_palette_get_drop_group().
1542  *
1543  * Returns: the #GtkToolItem at position or %NULL if there is no such item
1544  *
1545  * Since: 2.20
1546  */
1547 GtkToolItem*
1548 gtk_tool_palette_get_drop_item (GtkToolPalette *palette,
1549                                 gint            x,
1550                                 gint            y)
1551 {
1552   GtkWidget *group = gtk_tool_palette_get_drop_group (palette, x, y);
1553
1554   if (group)
1555     return gtk_tool_item_group_get_drop_item (GTK_TOOL_ITEM_GROUP (group),
1556                                               x - group->allocation.x,
1557                                               y - group->allocation.y);
1558
1559   return NULL;
1560 }
1561
1562 /**
1563  * gtk_tool_palette_get_drop_group:
1564  * @palette: a #GtkToolPalette
1565  * @x: the x position
1566  * @y: the y position
1567  *
1568  * Gets the group at position (x, y).
1569  *
1570  * Returns: the #GtkToolItemGroup at position or %NULL
1571  *     if there is no such group
1572  *
1573  * Since: 2.20
1574  */
1575 GtkWidget*
1576 gtk_tool_palette_get_drop_group (GtkToolPalette *palette,
1577                                  gint            x,
1578                                  gint            y)
1579 {
1580   GtkAllocation *allocation;
1581   guint i;
1582
1583   g_return_val_if_fail (GTK_IS_TOOL_PALETTE (palette), NULL);
1584
1585   allocation = &GTK_WIDGET (palette)->allocation;
1586
1587   g_return_val_if_fail (x >= 0 && x < allocation->width, NULL);
1588   g_return_val_if_fail (y >= 0 && y < allocation->height, NULL);
1589
1590   for (i = 0; i < palette->priv->groups->len; ++i)
1591     {
1592       GtkToolItemGroupInfo *group = g_ptr_array_index (palette->priv->groups, i);
1593       GtkWidget *widget;
1594       gint x0, y0;
1595
1596       if (!group->widget)
1597         continue;
1598
1599       widget = GTK_WIDGET (group->widget);
1600
1601       x0 = x - widget->allocation.x;
1602       y0 = y - widget->allocation.y;
1603
1604       if (x0 >= 0 && x0 < widget->allocation.width &&
1605           y0 >= 0 && y0 < widget->allocation.height)
1606         return widget;
1607     }
1608
1609   return NULL;
1610 }
1611
1612 /**
1613  * gtk_tool_palette_get_drag_item:
1614  * @palette: a #GtkToolPalette
1615  * @selection: a #GtkSelectionData
1616  *
1617  * Get the dragged item from the selection.
1618  * This could be a #GtkToolItem or a #GtkToolItemGroup.
1619  *
1620  * Returns: the dragged item in selection
1621  *
1622  * Since: 2.20
1623  */
1624 GtkWidget*
1625 gtk_tool_palette_get_drag_item (GtkToolPalette         *palette,
1626                                 const GtkSelectionData *selection)
1627 {
1628   GtkToolPaletteDragData *data;
1629
1630   g_return_val_if_fail (GTK_IS_TOOL_PALETTE (palette), NULL);
1631   g_return_val_if_fail (NULL != selection, NULL);
1632
1633   g_return_val_if_fail (selection->format == 8, NULL);
1634   g_return_val_if_fail (selection->length == sizeof (GtkToolPaletteDragData), NULL);
1635   g_return_val_if_fail (selection->target == dnd_target_atom_item ||
1636                         selection->target == dnd_target_atom_group,
1637                         NULL);
1638
1639   data = (GtkToolPaletteDragData*) selection->data;
1640
1641   g_return_val_if_fail (data->palette == palette, NULL);
1642
1643   if (dnd_target_atom_item == selection->target)
1644     g_return_val_if_fail (GTK_IS_TOOL_ITEM (data->item), NULL);
1645   else if (dnd_target_atom_group == selection->target)
1646     g_return_val_if_fail (GTK_IS_TOOL_ITEM_GROUP (data->item), NULL);
1647
1648   return data->item;
1649 }
1650
1651 /**
1652  * gtk_tool_palette_set_drag_source:
1653  * @palette: a #GtkToolPalette
1654  * @targets: the #GtkToolPaletteDragTarget<!-- -->s
1655  *     which the widget should support
1656  *
1657  * Sets the tool palette as a drag source.
1658  * Enables all groups and items in the tool palette as drag sources
1659  * on button 1 and button 3 press with copy and move actions.
1660  * See gtk_drag_source_set().
1661  *
1662  * Since: 2.20
1663  */
1664 void
1665 gtk_tool_palette_set_drag_source (GtkToolPalette            *palette,
1666                                   GtkToolPaletteDragTargets  targets)
1667 {
1668   guint i;
1669
1670   g_return_if_fail (GTK_IS_TOOL_PALETTE (palette));
1671
1672   if ((palette->priv->drag_source & targets) == targets)
1673     return;
1674
1675   palette->priv->drag_source |= targets;
1676
1677   for (i = 0; i < palette->priv->groups->len; ++i)
1678     {
1679       GtkToolItemGroupInfo *info = g_ptr_array_index (palette->priv->groups, i);
1680       if (info->widget)
1681         gtk_container_forall (GTK_CONTAINER (info->widget),
1682                               _gtk_tool_palette_child_set_drag_source,
1683                               palette);
1684     }
1685 }
1686
1687 /**
1688  * gtk_tool_palette_add_drag_dest:
1689  * @palette: a #GtkToolPalette
1690  * @widget: a #GtkWidget which should be a drag destination for @palette
1691  * @flags: the flags that specify what actions GTK+ should take for drops
1692  *     on that widget
1693  * @targets: the #GtkToolPaletteDragTarget<!-- -->s which the widget
1694  *     should support
1695  * @actions: the #GdkDragAction<!-- -->s which the widget should suppport
1696  *
1697  * Sets @palette as drag source (see gtk_tool_palette_set_drag_source())
1698  * and sets @widget as a drag destination for drags from @palette.
1699  * See gtk_drag_dest_set().
1700  *
1701  * Since: 2.20
1702  */
1703 void
1704 gtk_tool_palette_add_drag_dest (GtkToolPalette            *palette,
1705                                 GtkWidget                 *widget,
1706                                 GtkDestDefaults            flags,
1707                                 GtkToolPaletteDragTargets  targets,
1708                                 GdkDragAction              actions)
1709 {
1710   GtkTargetEntry entries[G_N_ELEMENTS (dnd_targets)];
1711   gint n_entries = 0;
1712
1713   g_return_if_fail (GTK_IS_TOOL_PALETTE (palette));
1714   g_return_if_fail (GTK_IS_WIDGET (widget));
1715
1716   gtk_tool_palette_set_drag_source (palette,
1717                                     targets);
1718
1719   if (targets & GTK_TOOL_PALETTE_DRAG_ITEMS)
1720     entries[n_entries++] = dnd_targets[0];
1721   if (targets & GTK_TOOL_PALETTE_DRAG_GROUPS)
1722     entries[n_entries++] = dnd_targets[1];
1723
1724   gtk_drag_dest_set (widget, flags, entries, n_entries, actions);
1725 }
1726
1727 void
1728 _gtk_tool_palette_get_item_size (GtkToolPalette *palette,
1729                                  GtkRequisition *item_size,
1730                                  gboolean        homogeneous_only,
1731                                  gint           *requested_rows)
1732 {
1733   GtkRequisition max_requisition;
1734   gint max_rows;
1735   guint i;
1736
1737   g_return_if_fail (GTK_IS_TOOL_PALETTE (palette));
1738   g_return_if_fail (NULL != item_size);
1739
1740   max_requisition.width = 0;
1741   max_requisition.height = 0;
1742   max_rows = 0;
1743
1744   /* iterate over all groups and calculate the max item_size and max row request */
1745   for (i = 0; i < palette->priv->groups->len; ++i)
1746     {
1747       GtkRequisition requisition;
1748       gint rows;
1749       GtkToolItemGroupInfo *group = g_ptr_array_index (palette->priv->groups, i);
1750
1751       if (!group->widget)
1752         continue;
1753
1754       _gtk_tool_item_group_item_size_request (group->widget, &requisition, homogeneous_only, &rows);
1755
1756       max_requisition.width = MAX (max_requisition.width, requisition.width);
1757       max_requisition.height = MAX (max_requisition.height, requisition.height);
1758       max_rows = MAX (max_rows, rows);
1759     }
1760
1761   *item_size = max_requisition;
1762   if (requested_rows)
1763     *requested_rows = max_rows;
1764 }
1765
1766 static void
1767 gtk_tool_palette_item_drag_data_get (GtkWidget        *widget,
1768                                      GdkDragContext   *context,
1769                                      GtkSelectionData *selection,
1770                                      guint             info,
1771                                      guint             time,
1772                                      gpointer          data)
1773 {
1774   GtkToolPaletteDragData drag_data = { GTK_TOOL_PALETTE (data), NULL };
1775
1776   if (selection->target == dnd_target_atom_item)
1777     drag_data.item = gtk_widget_get_ancestor (widget, GTK_TYPE_TOOL_ITEM);
1778
1779   if (drag_data.item)
1780     gtk_selection_data_set (selection, selection->target, 8,
1781                             (guchar*) &drag_data, sizeof (drag_data));
1782 }
1783
1784 static void
1785 gtk_tool_palette_child_drag_data_get (GtkWidget        *widget,
1786                                       GdkDragContext   *context,
1787                                       GtkSelectionData *selection,
1788                                       guint             info,
1789                                       guint             time,
1790                                       gpointer          data)
1791 {
1792   GtkToolPaletteDragData drag_data = { GTK_TOOL_PALETTE (data), NULL };
1793
1794   if (selection->target == dnd_target_atom_group)
1795     drag_data.item = gtk_widget_get_ancestor (widget, GTK_TYPE_TOOL_ITEM_GROUP);
1796
1797   if (drag_data.item)
1798     gtk_selection_data_set (selection, selection->target, 8,
1799                             (guchar*) &drag_data, sizeof (drag_data));
1800 }
1801
1802 void
1803 _gtk_tool_palette_child_set_drag_source (GtkWidget *child,
1804                                          gpointer   data)
1805 {
1806   GtkToolPalette *palette = GTK_TOOL_PALETTE (data);
1807
1808   /* Check drag_source,
1809    * to work properly when called from gtk_tool_item_group_insert().
1810    */
1811   if (!palette->priv->drag_source)
1812     return;
1813
1814   if (GTK_IS_TOOL_ITEM (child) &&
1815       (palette->priv->drag_source & GTK_TOOL_PALETTE_DRAG_ITEMS))
1816     {
1817       /* Connect to child instead of the item itself,
1818        * to work arround bug 510377.
1819        */
1820       if (GTK_IS_TOOL_BUTTON (child))
1821         child = gtk_bin_get_child (GTK_BIN (child));
1822
1823       if (!child)
1824         return;
1825
1826       gtk_drag_source_set (child, GDK_BUTTON1_MASK | GDK_BUTTON3_MASK,
1827                            &dnd_targets[0], 1, GDK_ACTION_COPY | GDK_ACTION_MOVE);
1828
1829       g_signal_connect (child, "drag-data-get",
1830                         G_CALLBACK (gtk_tool_palette_item_drag_data_get),
1831                         palette);
1832     }
1833   else if (GTK_IS_BUTTON (child) &&
1834            (palette->priv->drag_source & GTK_TOOL_PALETTE_DRAG_GROUPS))
1835     {
1836       gtk_drag_source_set (child, GDK_BUTTON1_MASK | GDK_BUTTON3_MASK,
1837                            &dnd_targets[1], 1, GDK_ACTION_COPY | GDK_ACTION_MOVE);
1838
1839       g_signal_connect (child, "drag-data-get",
1840                         G_CALLBACK (gtk_tool_palette_child_drag_data_get),
1841                         palette);
1842     }
1843 }
1844
1845 /**
1846  * gtk_tool_palette_get_drag_target_item:
1847  *
1848  * Gets the target entry for a dragged #GtkToolItem.
1849  *
1850  * Returns: the #GtkTargetEntry for a dragged item.
1851  *
1852  * Since: 2.20
1853  */
1854 G_CONST_RETURN GtkTargetEntry*
1855 gtk_tool_palette_get_drag_target_item (void)
1856 {
1857   return &dnd_targets[0];
1858 }
1859
1860 /**
1861  * gtk_tool_palette_get_drag_target_group:
1862  *
1863  * Get the target entry for a dragged #GtkToolItemGroup.
1864  *
1865  * Returns: the #GtkTargetEntry for a dragged group
1866  *
1867  * Since: 2.20
1868  */
1869 G_CONST_RETURN GtkTargetEntry*
1870 gtk_tool_palette_get_drag_target_group (void)
1871 {
1872   return &dnd_targets[1];
1873 }
1874
1875 void
1876 _gtk_tool_palette_set_expanding_child (GtkToolPalette *palette,
1877                                        GtkWidget      *widget)
1878 {
1879   g_return_if_fail (GTK_IS_TOOL_PALETTE (palette));
1880   palette->priv->expanding_child = widget;
1881 }
1882
1883 /**
1884  * gtk_tool_palette_get_hadjustment:
1885  * @palette: a #GtkToolPalette
1886  *
1887  * Gets the horizontal adjustment of the tool palette.
1888  *
1889  * Returns: the horizontal adjustment of @palette
1890  *
1891  * Since: 2.20
1892  */
1893 GtkAdjustment*
1894 gtk_tool_palette_get_hadjustment (GtkToolPalette *palette)
1895 {
1896   g_return_val_if_fail (GTK_IS_TOOL_PALETTE (palette), NULL);
1897
1898   return palette->priv->hadjustment;
1899 }
1900
1901 /**
1902  * gtk_tool_palette_get_vadjustment:
1903  * @palette: a #GtkToolPalette
1904  *
1905  * Gets the vertical adjustment of the tool palette.
1906  *
1907  * Returns: the vertical adjustment of @palette
1908  *
1909  * Since: 2.20
1910  */
1911 GtkAdjustment*
1912 gtk_tool_palette_get_vadjustment (GtkToolPalette *palette)
1913 {
1914   g_return_val_if_fail (GTK_IS_TOOL_PALETTE (palette), NULL);
1915
1916   return palette->priv->vadjustment;
1917 }
1918
1919 GtkSizeGroup *
1920 _gtk_tool_palette_get_size_group (GtkToolPalette *palette)
1921 {
1922   g_return_val_if_fail (GTK_IS_TOOL_PALETTE (palette), NULL);
1923
1924   return palette->priv->text_size_group;
1925 }
1926
1927
1928 #define __GTK_TOOL_PALETTE_C__
1929 #include "gtkaliasdef.c"