2009-05-12 Claudio Saavedra <csaavedra@igalia.com>
[hildon] / hildon / hildon-touch-selector.c
1 /*
2  * This file is a part of hildon
3  *
4  * Copyright (C) 2005, 2008 Nokia Corporation.
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version. or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free
18  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */
20
21 /**
22  * SECTION:hildon-touch-selector
23  * @short_description: A selector widget with several columns.
24  *
25  * #HildonTouchSelector is a selector widget, that allows users to
26  * select items from one to many predefined lists. It is very similar
27  * to #GtkComboBox, but with several individual pannable columns.
28  *
29  * Normally, you would use #HildonTouchSelector together with a
30  * #HildonPickerDialog activated from a button. For the most common
31  * cases, you should use #HildonPickerButton.
32  *
33  * The composition of each column in the selector is represented by a
34  * #GtkTreeModel. To add a new column to a #HildonTouchSelector, use
35  * hildon_touch_selector_append_column(). If you want to add a
36  * text-only column, without special attributes, use
37  * hildon_touch_selector_append_text_column().
38  *
39  * It is highly recommended that you use only one column
40  * #HildonTouchSelector<!-- -->s.
41  * If you only need a text only, one column selector, you can create it with
42  * hildon_touch_selector_new_text() and populate with
43  * hildon_touch_selector_append_text(), hildon_touch_selector_prepend_text(),
44  * and hildon_touch_selector_insert_text().
45  *
46  * If you need a selector widget that also accepts user inputs, you
47  * can use #HildonTouchSelectorEntry.
48  *
49  * The current selection has a string representation. In the most common cases,
50  * each column model will contain a text column. You can configure
51  * which column in particular using the #HildonTouchSelectorColumn property
52  * #HildonTouchSelectorColumn:text-column
53  *
54  * You can get this string representation using
55  * hildon_touch_selector_get_current_text().
56  * You can configure how the selection is printed with
57  * hildon_touch_selector_set_print_func(), that sets the current hildon touch
58  * selector print function. The widget has a default print function, that
59  * uses the #HildonTouchSelectorColumn:text-column property on each
60  * #HildonTouchSelectorColumn to compose the final representation.
61  *
62  * If you create the selector using hildon_touch_selector_new_text() you
63  * don't need to take care of this property, as the model is created internally.
64  * If you create the selector using hildon_touch_selector_new(), you
65  * need to specify properly the property for your custom model in order to get a
66  * non-empty string representation, or define your custom print function.
67  *
68  * <example>
69  * <title>Creating a HildonTouchSelector</title>
70  * <programlisting>
71  * void
72  * selection_changed (HildonTouchSelector * selector,
73  *                    gpointer *user_data)
74  * {
75  *   gchar *current_selection = NULL;
76  * <!-- -->
77  *   current_selection = hildon_touch_selector_get_current_text (selector);
78  *   g_debug ("Current selection : &percnt;s", current_selection);
79  * }
80  * <!-- -->
81  * static GtkWidget *
82  * create_customized_selector ()
83  * {
84  *   GtkWidget *selector = NULL;
85  *   GSList *icon_list = NULL;
86  *   GtkListStore *store_icons = NULL;
87  *   GSList *item = NULL;
88  *   GtkCellRenderer *renderer = NULL;
89  *   HildonTouchSelectorColumn *column = NULL;
90  * <!-- -->
91  *   selector = hildon_touch_selector_new ();
92  * <!-- -->
93  *   icon_list = gtk_stock_list_ids ();
94  * <!-- -->
95  *   store_icons = gtk_list_store_new (1, G_TYPE_STRING);
96  *   for (item = icon_list; item; item = g_slist_next (item)) {
97  *     GtkTreeIter iter;
98  *     gchar *label = item->data;
99  * <!-- -->
100  *     gtk_list_store_append (store_icons, &amp;iter);
101  *     gtk_list_store_set (store_icons, &amp;iter, 0, label, -1);
102  *     g_free (label);
103  *   }
104  *   g_slist_free (icon_list);
105  * <!-- -->
106  *   renderer = gtk_cell_renderer_pixbuf_new ();
107  *   gtk_cell_renderer_set_fixed_size (renderer, -1, 100);
108  * <!-- -->
109  *   column = hildon_touch_selector_append_column (HILDON_TOUCH_SELECTOR (selector),
110  *                                                 GTK_TREE_MODEL (store_icons),
111  *                                                 renderer, "stock-id", 0, NULL);
112  * <!-- -->
113  *   g_object_set (G_OBJECT (column), "text-column", 0, NULL);
114  * <!-- -->
115  *   hildon_touch_selector_set_column_selection_mode (HILDON_TOUCH_SELECTOR (selector),
116  *                                                    HILDON_TOUCH_SELECTOR_SELECTION_MODE_MULTIPLE);
117  * <!-- -->
118  *   g_signal_connect (G_OBJECT (selector), "changed",
119  *                     G_CALLBACK (selection_changed), NULL);
120  * <!-- -->
121  *   return selector;
122  * }
123  * <!-- -->
124  * static GtkWidget *
125  * create_simple_selector ()
126  * {
127  *   GtkWidget *selector = NULL;
128  *   gint i;
129  * <!-- -->
130  *   selector = hildon_touch_selector_new_text ();
131  *   hildon_touch_selector_set_column_selection_mode (HILDON_TOUCH_SELECTOR (selector),
132  *                                                    HILDON_TOUCH_SELECTOR_SELECTION_MODE_MULTIPLE);
133  * <!-- -->
134  *   g_signal_connect (G_OBJECT (selector), "changed",
135  *                     G_CALLBACK (selection_changed), NULL);
136  * <!-- -->
137  *   for (i = 1; i <= 10 ; i++) {
138  *     gchar *label = g_strdup_printf ("Item &amp;percnt;d", i);
139  * <!-- -->
140  *     hildon_touch_selector_append_text (HILDON_TOUCH_SELECTOR (selector),
141  *                                        label);
142  * <!-- -->
143  *     g_free (label);
144  *   }
145  * <!-- -->
146  *   return selector;
147  * }
148  * </programlisting>
149  * </example>
150  */
151
152 /**
153  * SECTION:hildon-touch-selector-column
154  * @short_description: A visible column in a #HildonTouchSelector
155  *
156  * #HildonTouchSelectorColumn object represents a visible column in
157  * #HildonTouchSelector. It allows to manage the cell renderers related to each
158  * column.
159  */
160
161 #undef HILDON_DISABLE_DEPRECATED
162
163 #ifdef HAVE_CONFIG_H
164 #include <config.h>
165 #endif
166
167 #include <string.h>
168 #include <stdlib.h>
169
170 #include "hildon-gtk.h"
171
172 #include "hildon-pannable-area.h"
173 #include "hildon-touch-selector.h"
174 #include "hildon-touch-selector-private.h"
175
176 #define HILDON_TOUCH_SELECTOR_GET_PRIVATE(obj)                          \
177   (G_TYPE_INSTANCE_GET_PRIVATE ((obj), HILDON_TYPE_TOUCH_SELECTOR, HildonTouchSelectorPrivate))
178
179 G_DEFINE_TYPE (HildonTouchSelector, hildon_touch_selector, GTK_TYPE_VBOX)
180
181 /*
182  * IMPLEMENTATION NOTES:
183  * Struct to maintain the data of each column. The columns are the elements
184  * of the widget that belongs properly to the selection behaviour. Although
185  * internally the columns are arranged in a private #GtkHBox, as the selector
186  * itself is a #GtkVBox, you can add more widgets, like buttons etc., so
187  * you finally could have a widget with more elements that the columns, but
188  * this doesn't belongs to the selection logic
189  */
190 struct _HildonTouchSelectorColumnPrivate
191 {
192   HildonTouchSelector *parent;    /* the selector that contains this column */
193   GtkTreeModel *model;
194   gint text_column;
195   GtkTreeView *tree_view;
196   gulong realize_handler;
197   GtkTreePath *initial_path;
198
199   GtkWidget *panarea;           /* the pannable widget */
200 };
201
202 struct _HildonTouchSelectorPrivate
203 {
204   GSList *columns;              /* the selection columns */
205   GtkWidget *hbox;              /* the container for the selector's columns */
206   gboolean initial_scroll;      /* whether initial fancy scrolling to selection */
207
208   gboolean changed_blocked;
209
210   HildonTouchSelectorPrintFunc print_func;
211   gpointer print_user_data;
212   GDestroyNotify print_destroy_func;
213 };
214
215 enum
216 {
217   PROP_HAS_MULTIPLE_SELECTION = 1,
218   PROP_INITIAL_SCROLL
219 };
220
221 enum
222 {
223   CHANGED,
224   COLUMNS_CHANGED,
225   LAST_SIGNAL
226 };
227
228 static gint hildon_touch_selector_signals[LAST_SIGNAL] = { 0 };
229
230 static void
231 hildon_touch_selector_dispose                   (GObject * object);
232
233 static void
234 hildon_touch_selector_get_property              (GObject * object,
235                                                  guint prop_id,
236                                                  GValue * value,
237                                                  GParamSpec * pspec);
238 static void
239 hildon_touch_selector_set_property              (GObject *object,
240                                                  guint prop_id,
241                                                  const GValue *value,
242                                                  GParamSpec *pspec);
243 /* gtkwidget */
244
245 /* gtkcontainer */
246 static void hildon_touch_selector_remove        (GtkContainer * container,
247                                                  GtkWidget * widget);
248 /* private functions */
249 static void _row_tapped_cb                      (GtkTreeView * tree_view,
250                                                  GtkTreePath * path,
251                                                  gpointer user_data);
252 static gchar *_default_print_func               (HildonTouchSelector * selector,
253                                                  gpointer user_data);
254
255 static HildonTouchSelectorColumn *_create_new_column (HildonTouchSelector * selector,
256                                                  GtkTreeModel * model,
257                                                  gboolean *emit_changed,
258                                                  GtkCellRenderer * renderer,
259                                                  va_list args);
260 static gboolean
261 on_realize_cb                                  (GtkWidget *widget,
262                                                 gpointer data);
263 static void
264 on_row_changed                                 (GtkTreeModel *model,
265                                                 GtkTreePath *path,
266                                                 GtkTreeIter *iter,
267                                                 gpointer userdata);
268
269 static void
270 hildon_touch_selector_scroll_to (HildonTouchSelectorColumn *column,
271                                  GtkTreeView *tv,
272                                  GtkTreePath *path);
273 static gboolean
274 _hildon_touch_selector_center_on_selected_items (HildonTouchSelector *selector,
275                                                  HildonTouchSelectorColumn *column);
276 static void
277 _hildon_touch_selector_set_model                (HildonTouchSelector * selector,
278                                                  gint num_column,
279                                                  GtkTreeModel * model);
280 static gboolean
281 _hildon_touch_selector_has_multiple_selection   (HildonTouchSelector * selector);
282
283 static void
284 hildon_touch_selector_emit_value_changed        (HildonTouchSelector *selector,
285                                                  gint column);
286
287 /* GtkCellLayout implementation (HildonTouchSelectorColumn)*/
288 static void hildon_touch_selector_column_cell_layout_init         (GtkCellLayoutIface      *iface);
289
290 static void hildon_touch_selector_column_cell_layout_pack_start   (GtkCellLayout         *cell_layout,
291                                                                    GtkCellRenderer       *cell,
292                                                                    gboolean               expand);
293 static void hildon_touch_selector_column_cell_layout_pack_end     (GtkCellLayout         *cell_layout,
294                                                                    GtkCellRenderer       *cell,
295                                                                    gboolean               expand);
296 static void hildon_touch_selector_column_cell_layout_clear        (GtkCellLayout         *cell_layout);
297 static void hildon_touch_selector_column_cell_layout_add_attribute(GtkCellLayout         *cell_layout,
298                                                                    GtkCellRenderer       *cell,
299                                                                    const gchar           *attribute,
300                                                                    gint                   column);
301 static void hildon_touch_selector_column_cell_layout_set_cell_data_func (GtkCellLayout         *cell_layout,
302                                                                          GtkCellRenderer       *cell,
303                                                                          GtkCellLayoutDataFunc  func,
304                                                                          gpointer               func_data,
305                                                                          GDestroyNotify         destroy);
306 static void hildon_touch_selector_column_cell_layout_clear_attributes   (GtkCellLayout         *cell_layout,
307                                                                          GtkCellRenderer       *cell);
308 static void hildon_touch_selector_column_cell_layout_reorder       (GtkCellLayout         *cell_layout,
309                                                                     GtkCellRenderer       *cell,
310                                                                     gint                   position);
311 static GList *hildon_touch_selector_column_cell_layout_get_cells   (GtkCellLayout         *cell_layout);
312
313
314 static void
315 hildon_touch_selector_class_init (HildonTouchSelectorClass * class)
316 {
317   GObjectClass *gobject_class;
318   GtkObjectClass *object_class;
319   GtkContainerClass *container_class;
320
321   gobject_class = G_OBJECT_CLASS (class);
322   object_class = GTK_OBJECT_CLASS (class);
323   container_class = GTK_CONTAINER_CLASS (class);
324
325   /* GObject */
326   gobject_class->dispose = hildon_touch_selector_dispose;
327   gobject_class->get_property = hildon_touch_selector_get_property;
328   gobject_class->set_property = hildon_touch_selector_set_property;
329
330   /* GtkWidget */
331
332   /* GtkContainer */
333   container_class->remove = hildon_touch_selector_remove;
334
335   /* HildonTouchSelector */
336   class->changed = NULL;
337   class->set_model = _hildon_touch_selector_set_model;
338
339   class->has_multiple_selection = _hildon_touch_selector_has_multiple_selection;
340
341   /* signals */
342   /**
343    * HildonTouchSelector::changed:
344    * @widget: the object which received the signal
345    * @column: the number of the column that has changed
346    *
347    * The "changed" signal is emitted when the active item on any column is changed.
348    * This can be due to the user selecting a different item from the list, or
349    * due to a call to hildon_touch_selector_select_iter() on one of the columns.
350    *
351    * Since: 2.2
352    */
353   hildon_touch_selector_signals[CHANGED] =
354     g_signal_new ("changed",
355                   G_OBJECT_CLASS_TYPE (class),
356                   G_SIGNAL_RUN_LAST,
357                   G_STRUCT_OFFSET (HildonTouchSelectorClass, changed),
358                   NULL, NULL,
359                   g_cclosure_marshal_VOID__INT, G_TYPE_NONE, 1, G_TYPE_INT);
360
361   /**
362    * HildonTouchSelector::columns-changed:
363    * @selector: the object which received the signal
364    *
365    * The "columns-changed" signal is emitted when the number
366    * of columns in the #HildonTouchSelector change.
367    *
368    * Since: 2.2
369    */
370   hildon_touch_selector_signals[COLUMNS_CHANGED] =
371     g_signal_new ("columns-changed",
372                   G_OBJECT_CLASS_TYPE (class),
373                   G_SIGNAL_RUN_LAST, 0,
374                   NULL, NULL,
375                   g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0);
376
377   /* properties */
378
379   g_object_class_install_property (gobject_class, PROP_HAS_MULTIPLE_SELECTION,
380                                    g_param_spec_boolean ("has-multiple-selection",
381                                                          "has multiple selection",
382                                                          "Whether the widget has multiple "
383                                                          "selection (like multiple columns, "
384                                                          "multiselection mode, or multiple "
385                                                          "internal widgets) and therefore "
386                                                          "it may need a confirmation button, "
387                                                          "for instance.",
388                                                          FALSE,
389                                                          G_PARAM_READABLE));
390
391   g_object_class_install_property (G_OBJECT_CLASS (gobject_class),
392                                    PROP_INITIAL_SCROLL,
393                                    g_param_spec_boolean ("initial-scroll",
394                                                          "Initial scroll",
395                                                          "Whether to scroll to the"
396                                                          "current selection when"
397                                                          "the selector is first"
398                                                          "shown",
399                                                          TRUE,
400                                                          G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
401
402   /* style properties */
403   /* We need to ensure fremantle mode for the treeview in order to work
404      properly. This is not about the appearance, this is about behaviour */
405   gtk_rc_parse_string ("style \"fremantle-htst\" {\n"
406                        "  GtkWidget::hildon-mode = 1\n"
407                        "} widget \"*.fremantle-htst\" style \"fremantle-htst\""
408                        "widget_class \"*<HildonPannableArea>.GtkTreeView\" style :highest \"fremantle-htst\"");
409
410   g_type_class_add_private (object_class, sizeof (HildonTouchSelectorPrivate));
411 }
412
413 static void
414 hildon_touch_selector_get_property (GObject * object,
415                                     guint prop_id,
416                                     GValue * value, GParamSpec * pspec)
417 {
418   HildonTouchSelectorPrivate *priv = HILDON_TOUCH_SELECTOR (object)->priv;
419
420   switch (prop_id) {
421   case PROP_HAS_MULTIPLE_SELECTION:
422     g_value_set_boolean (value,
423                          hildon_touch_selector_has_multiple_selection (HILDON_TOUCH_SELECTOR (object)));
424     break;
425   case PROP_INITIAL_SCROLL:
426     g_value_set_boolean (value, priv->initial_scroll);
427     break;
428   default:
429     G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
430     break;
431   }
432 }
433
434 static void
435 hildon_touch_selector_set_property (GObject *object, guint prop_id,
436                                     const GValue *value, GParamSpec *pspec)
437 {
438   HildonTouchSelectorPrivate *priv = HILDON_TOUCH_SELECTOR (object)->priv;
439
440   switch (prop_id) {
441   case PROP_INITIAL_SCROLL:
442     priv->initial_scroll = g_value_get_boolean (value);
443     break;
444   default:
445     G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
446     break;
447   }
448 }
449
450
451 static void
452 hildon_touch_selector_init (HildonTouchSelector * selector)
453 {
454   selector->priv = HILDON_TOUCH_SELECTOR_GET_PRIVATE (selector);
455
456   GTK_WIDGET_SET_FLAGS (GTK_WIDGET (selector), GTK_NO_WINDOW);
457   gtk_widget_set_redraw_on_allocate (GTK_WIDGET (selector), FALSE);
458
459   selector->priv->columns = NULL;
460
461   selector->priv->print_func = NULL;
462   selector->priv->print_user_data = NULL;
463   selector->priv->print_destroy_func = NULL;
464   selector->priv->initial_scroll = TRUE;
465   selector->priv->hbox = gtk_hbox_new (FALSE, 0);
466
467   selector->priv->changed_blocked = FALSE;
468
469   gtk_box_pack_end (GTK_BOX (selector), selector->priv->hbox,
470                     TRUE, TRUE, 0);
471   gtk_widget_show (selector->priv->hbox);
472 }
473
474 static void
475 hildon_touch_selector_dispose (GObject * object)
476 {
477   GObjectClass *gobject_class;
478
479   hildon_touch_selector_set_print_func_full (HILDON_TOUCH_SELECTOR (object),
480                                              NULL, NULL, NULL);
481
482   gobject_class = G_OBJECT_CLASS (hildon_touch_selector_parent_class);
483
484   if (gobject_class->dispose)
485     (* gobject_class->dispose) (object);
486 }
487
488 static void
489 disconnect_model_handlers (HildonTouchSelectorColumn *col, HildonTouchSelector *selector)
490 {
491   g_signal_handlers_disconnect_by_func (col->priv->model,
492                                         on_row_changed, selector);
493 }
494
495 /*
496  * IMPLEMENTATION NOTES:
497  * Some people sent questions regarding a missing dispose/finalize function on
498  * this widget that could lead to leak memory, so we will clarify this topic.
499  *
500  * This is not required as #HildonTouchSelector extends #GtkContainer. When the
501  * widget is freed, the #GtkContainer freeing memory functions are called. This
502  * process includes remove each widget individually, so all the widgets are
503  * properly freed.
504  *
505  * In the same way, this widget redefines gtk_container->remove function, in
506  * order to free the column related information if it is required.
507  *
508  * Please take a look to hildon_touch_selector_remove for more information.
509  */
510
511 /*------------------------------ GtkContainer ------------------------------ */
512
513 /*
514  * Required in order to free the column at the columns list
515  */
516 static void
517 hildon_touch_selector_remove (GtkContainer * container, GtkWidget * widget)
518 {
519   HildonTouchSelector *selector = NULL;
520
521   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR (container));
522   selector = HILDON_TOUCH_SELECTOR (container);
523
524   /* Remove the extra data related to the columns, if required. */
525   if (widget == selector->priv->hbox) {
526     g_slist_foreach (selector->priv->columns, (GFunc) disconnect_model_handlers, selector);
527     g_slist_foreach (selector->priv->columns, (GFunc) g_object_unref, NULL);
528
529     g_slist_free (selector->priv->columns);
530
531     selector->priv->columns = NULL;
532   } else {
533     g_debug ("Freeing a widget outside the columns logic");
534   }
535
536   /* Now remove the widget itself from the container */
537   GTK_CONTAINER_CLASS (hildon_touch_selector_parent_class)->remove (container, widget);
538 }
539
540 /* ------------------------------ PRIVATE METHODS ---------------------------- */
541 void
542 hildon_touch_selector_block_changed             (HildonTouchSelector *selector)
543 {
544   selector->priv->changed_blocked = TRUE;
545 }
546
547 void
548 hildon_touch_selector_unblock_changed           (HildonTouchSelector *selector)
549 {
550   selector->priv->changed_blocked = FALSE;
551 }
552
553 static void
554 hildon_touch_selector_emit_value_changed        (HildonTouchSelector *selector,
555                                                  gint column)
556 {
557   if (!selector->priv->changed_blocked) {
558     g_signal_emit (selector, hildon_touch_selector_signals[CHANGED], 0, column);
559   }
560 }
561
562 /**
563  * default_print_func:
564  * @selector: a #HildonTouchSelector
565  *
566  * Default print function
567  *
568  * Returns: a new string that represents the selected items
569  *
570  * Since: 2.2
571  **/
572 static gchar *
573 _default_print_func (HildonTouchSelector * selector, gpointer user_data)
574 {
575   gchar *result = NULL;
576   gchar *aux = NULL;
577   gint num_columns = 0;
578   GtkTreeIter iter;
579   GtkTreeModel *model = NULL;
580   gchar *current_string = NULL;
581   gint i;
582   HildonTouchSelectorSelectionMode mode;
583   GList *item = NULL;
584   GtkTreePath *current_path = NULL;
585   GList *selected_rows = NULL;
586   gint initial_value = 0;
587   gint text_column = -1;
588   HildonTouchSelectorColumn *column = NULL;
589
590   num_columns = hildon_touch_selector_get_num_columns (selector);
591
592   mode = hildon_touch_selector_get_column_selection_mode (selector);
593
594   if ((mode == HILDON_TOUCH_SELECTOR_SELECTION_MODE_MULTIPLE)
595       && (num_columns > 0)) {
596     /* In this case we get the first column first */
597     selected_rows = hildon_touch_selector_get_selected_rows (selector, 0);
598     model = hildon_touch_selector_get_model (selector, 0);
599     column = hildon_touch_selector_get_column (selector, 0);
600     g_object_get (G_OBJECT(column), "text-column", &text_column, NULL);
601
602     result = g_strdup_printf ("(");
603     i = 0;
604     for (item = selected_rows; item; item = g_list_next (item)) {
605       current_path = item->data;
606       gtk_tree_model_get_iter (model, &iter, current_path);
607
608       if (text_column != -1) {
609         gtk_tree_model_get (model, &iter, text_column, &current_string, -1);
610       }
611
612       if (i < g_list_length (selected_rows) - 1) {
613         aux = g_strconcat (result, current_string, ",", NULL);
614         g_free (result);
615         result = aux;
616       } else {
617         aux = g_strconcat (result, current_string, NULL);
618         g_free (result);
619         result = aux;
620       }
621
622       if (current_string) {
623         g_free (current_string);
624         current_string = NULL;
625       }
626
627       i++;
628     }
629
630     aux = g_strconcat (result, ")", NULL);
631     g_free (result);
632     result = aux;
633
634     g_list_foreach (selected_rows, (GFunc) (gtk_tree_path_free), NULL);
635     g_list_free (selected_rows);
636     initial_value = 1;
637   } else {
638     initial_value = 0;
639   }
640
641   for (i = initial_value; i < num_columns; i++) {
642     model = hildon_touch_selector_get_model (selector, i);
643     column = hildon_touch_selector_get_column (selector, i);
644     g_object_get (G_OBJECT(column), "text-column", &text_column, NULL);
645
646     if (hildon_touch_selector_get_selected (selector, i, &iter)) {
647       if (text_column == -1 ) {
648         g_warning ("Trying to use the default print function in HildonTouchSelector, but "
649                    "\"text-column\" property is not set for HildonTouchSelectorColumn %p.", column);
650         current_string = NULL;
651       } else {
652         gtk_tree_model_get (model, &iter, text_column, &current_string, -1);
653       }
654
655       if (i == 0) {
656         result = current_string;
657       } else {
658         aux = g_strconcat (result, ":", current_string, NULL);
659         g_free (result);
660         g_free (current_string);
661         current_string = NULL;
662         result = aux;
663       }
664     }
665   }
666
667   return result;
668 }
669
670 static void
671 _row_tapped_cb (GtkTreeView * tree_view, GtkTreePath * path, gpointer user_data)
672 {
673   HildonTouchSelector *selector = NULL;
674   HildonTouchSelectorColumn *column = NULL;
675   gint num_column = -1;
676
677   column = HILDON_TOUCH_SELECTOR_COLUMN (user_data);
678   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR (column->priv->parent));
679
680   selector = column->priv->parent;
681
682   num_column = g_slist_index (selector->priv->columns, column);
683
684   hildon_touch_selector_emit_value_changed (selector, num_column);
685 }
686
687
688 static HildonTouchSelectorColumn *
689 _create_new_column (HildonTouchSelector * selector,
690                     GtkTreeModel * model,
691                     gboolean *emit_changed,
692                     GtkCellRenderer * renderer, va_list args)
693 {
694   HildonTouchSelectorColumn *new_column = NULL;
695   GtkTreeViewColumn *tree_column = NULL;
696   GtkTreeView *tv = NULL;
697   GtkWidget *panarea = NULL;
698   GtkTreeSelection *selection = NULL;
699   GtkTreeIter iter;
700   gchar *attribute;
701   gint value;
702
703   tree_column = gtk_tree_view_column_new ();
704
705   if (renderer != NULL) {
706     gtk_tree_view_column_pack_start (tree_column, renderer, TRUE);
707
708     attribute = va_arg (args, gchar *);
709     while (attribute != NULL) {
710       value = va_arg (args, gint);
711       gtk_tree_view_column_add_attribute (tree_column, renderer, attribute,
712                                           value);
713       attribute = va_arg (args, gchar *);
714     }
715   }
716
717 #ifdef MAEMO_GTK
718   tv = GTK_TREE_VIEW (hildon_gtk_tree_view_new (HILDON_UI_MODE_EDIT));
719 #else
720   tv = GTK_TREE_VIEW (gtk_tree_view_new ());
721 #endif /* MAEMO_GTK */
722
723   gtk_tree_view_set_enable_search (tv, FALSE);
724   GTK_WIDGET_UNSET_FLAGS (GTK_WIDGET (tv), GTK_CAN_FOCUS);
725
726   gtk_tree_view_set_model (tv, model);
727   g_signal_connect (model, "row-changed",
728                     G_CALLBACK (on_row_changed), selector);
729   gtk_tree_view_set_rules_hint (tv, TRUE);
730
731   gtk_tree_view_append_column (GTK_TREE_VIEW (tv), tree_column);
732
733   new_column = g_object_new (HILDON_TYPE_TOUCH_SELECTOR_COLUMN, NULL);
734   new_column->priv->parent = selector;
735
736   panarea = hildon_pannable_area_new ();
737
738   g_object_set (G_OBJECT (panarea),
739                 "initial-hint", FALSE, NULL);
740
741   gtk_container_add (GTK_CONTAINER (panarea), GTK_WIDGET (tv));
742
743   new_column->priv->model = model;
744   new_column->priv->tree_view = tv;
745   new_column->priv->panarea = panarea;
746   new_column->priv->realize_handler = 0;
747   new_column->priv->initial_path = NULL;
748
749   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (tv));
750   gtk_tree_selection_set_mode (selection, GTK_SELECTION_BROWSE);
751
752   /* select the first item */
753   *emit_changed = FALSE;
754   if (gtk_tree_model_get_iter_first (model, &iter)) {
755     gtk_tree_selection_select_iter (selection, &iter);
756     *emit_changed = TRUE;
757   }
758
759   gtk_widget_grab_focus (GTK_WIDGET (tv));
760
761   /* connect to the hildon-row-tapped signal connection */
762   g_signal_connect (G_OBJECT (tv), "hildon-row-tapped",
763                     G_CALLBACK (_row_tapped_cb), new_column);
764
765   return new_column;
766 }
767
768
769 /* ------------------------ HildonTouchSelectorColumn implementation ---------------------- */
770 G_DEFINE_TYPE_WITH_CODE (HildonTouchSelectorColumn, hildon_touch_selector_column, G_TYPE_OBJECT,
771                          G_IMPLEMENT_INTERFACE (GTK_TYPE_CELL_LAYOUT,
772                                                 hildon_touch_selector_column_cell_layout_init))
773
774 enum
775 {
776   PROP_TEXT_COLUMN = 1
777 };
778
779 static void
780 hildon_touch_selector_column_class_init (HildonTouchSelectorColumnClass *klass);
781
782 static void
783 hildon_touch_selector_column_get_property (GObject *object, guint property_id,
784                                            GValue *value, GParamSpec *pspec);
785
786 static void
787 hildon_touch_selector_column_set_property  (GObject *object, guint property_id,
788                                             const GValue *value, GParamSpec *pspec);
789
790 static void
791 hildon_touch_selector_column_set_text_column (HildonTouchSelectorColumn *column,
792                                               gint text_column);
793 static gint
794 hildon_touch_selector_column_get_text_column (HildonTouchSelectorColumn *column);
795
796
797 static void
798 hildon_touch_selector_column_class_init (HildonTouchSelectorColumnClass *klass)
799 {
800   GObjectClass *gobject_class = NULL;
801
802   gobject_class = G_OBJECT_CLASS (klass);
803
804   g_type_class_add_private (gobject_class, sizeof (HildonTouchSelectorColumnPrivate));
805
806   /* GObject */
807   gobject_class->get_property = hildon_touch_selector_column_get_property;
808   gobject_class->set_property = hildon_touch_selector_column_set_property;
809
810   g_object_class_install_property (G_OBJECT_CLASS(klass),
811                                    PROP_TEXT_COLUMN,
812                                    g_param_spec_int ("text-column",
813                                                      "Text Column",
814                                                      "A column in the data source model to get the strings from.",
815                                                      -1,
816                                                      G_MAXINT,
817                                                      -1,
818                                                      G_PARAM_READWRITE));
819 }
820
821 static void
822 hildon_touch_selector_column_init (HildonTouchSelectorColumn *column)
823 {
824   column->priv = G_TYPE_INSTANCE_GET_PRIVATE (column, HILDON_TYPE_TOUCH_SELECTOR_COLUMN,
825                                               HildonTouchSelectorColumnPrivate);
826   column->priv->text_column = -1;
827 }
828
829 static void
830 hildon_touch_selector_column_set_text_column (HildonTouchSelectorColumn *column,
831                                               gint text_column)
832 {
833   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR_COLUMN (column));
834   g_return_if_fail (text_column >= -1);
835
836   column->priv->text_column = text_column;
837
838   g_object_notify (G_OBJECT (column), "text-column");
839 }
840
841 static gint
842 hildon_touch_selector_column_get_text_column (HildonTouchSelectorColumn *column)
843 {
844   g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR_COLUMN (column), -1);
845
846   return column->priv->text_column;
847 }
848
849 static void
850 hildon_touch_selector_column_get_property (GObject *object, guint property_id,
851                                            GValue *value, GParamSpec *pspec)
852 {
853   switch (property_id) {
854   case PROP_TEXT_COLUMN:
855     g_value_set_int (value,
856                      hildon_touch_selector_column_get_text_column (HILDON_TOUCH_SELECTOR_COLUMN (object)));
857     break;
858   default:
859     G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
860   }
861 }
862
863 static void
864 hildon_touch_selector_column_set_property (GObject *object, guint property_id,
865                                            const GValue *value, GParamSpec *pspec)
866 {
867   switch (property_id) {
868   case PROP_TEXT_COLUMN:
869     hildon_touch_selector_column_set_text_column (HILDON_TOUCH_SELECTOR_COLUMN (object),
870                                                   g_value_get_int (value));
871     break;
872   default:
873     G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
874   }
875 }
876
877 /* ------------------------ GtkCellLayout implementation -------------------- */
878 static void
879 hildon_touch_selector_column_cell_layout_init (GtkCellLayoutIface      *iface)
880 {
881   iface->pack_start         = hildon_touch_selector_column_cell_layout_pack_start;
882   iface->pack_end           = hildon_touch_selector_column_cell_layout_pack_end;
883   iface->clear              = hildon_touch_selector_column_cell_layout_clear;
884   iface->add_attribute      = hildon_touch_selector_column_cell_layout_add_attribute;
885   iface->set_cell_data_func = hildon_touch_selector_column_cell_layout_set_cell_data_func;
886   iface->clear_attributes   = hildon_touch_selector_column_cell_layout_clear_attributes;
887   iface->reorder            = hildon_touch_selector_column_cell_layout_reorder;
888   iface->get_cells          = hildon_touch_selector_column_cell_layout_get_cells;
889 }
890
891 static void
892 hildon_touch_selector_column_cell_layout_pack_start (GtkCellLayout         *cell_layout,
893                                                GtkCellRenderer       *cell,
894                                                gboolean               expand)
895 {
896   HildonTouchSelectorColumn *sel_column = NULL;
897   GtkTreeViewColumn *view_column = NULL;
898
899   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR_COLUMN (cell_layout));
900   sel_column = HILDON_TOUCH_SELECTOR_COLUMN (cell_layout);
901
902   view_column = gtk_tree_view_get_column (sel_column->priv->tree_view, 0);
903
904   gtk_cell_layout_pack_start (GTK_CELL_LAYOUT(view_column), cell, expand);
905
906 }
907
908 static void
909 hildon_touch_selector_column_cell_layout_pack_end (GtkCellLayout         *cell_layout,
910                                              GtkCellRenderer       *cell,
911                                              gboolean               expand)
912 {
913   HildonTouchSelectorColumn *sel_column = NULL;
914   GtkTreeViewColumn *view_column = NULL;
915
916   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR_COLUMN (cell_layout));
917   sel_column = HILDON_TOUCH_SELECTOR_COLUMN (cell_layout);
918
919   view_column = gtk_tree_view_get_column (sel_column->priv->tree_view, 0);
920
921   gtk_cell_layout_pack_end (GTK_CELL_LAYOUT(view_column), cell, expand);
922 }
923
924 static void
925 hildon_touch_selector_column_cell_layout_clear (GtkCellLayout         *cell_layout)
926 {
927   HildonTouchSelectorColumn *sel_column = NULL;
928   GtkTreeViewColumn *view_column = NULL;
929
930   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR_COLUMN (cell_layout));
931   sel_column = HILDON_TOUCH_SELECTOR_COLUMN (cell_layout);
932
933   view_column = gtk_tree_view_get_column (sel_column->priv->tree_view, 0);
934
935   gtk_cell_layout_clear (GTK_CELL_LAYOUT(view_column));
936 }
937
938 static void
939 hildon_touch_selector_column_cell_layout_add_attribute (GtkCellLayout         *cell_layout,
940                                                   GtkCellRenderer       *cell,
941                                                   const gchar           *attribute,
942                                                   gint                   column)
943 {
944   HildonTouchSelectorColumn *sel_column = NULL;
945   GtkTreeViewColumn *view_column = NULL;
946
947   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR_COLUMN (cell_layout));
948   sel_column = HILDON_TOUCH_SELECTOR_COLUMN (cell_layout);
949
950   view_column = gtk_tree_view_get_column (sel_column->priv->tree_view, 0);
951
952   gtk_cell_layout_add_attribute (GTK_CELL_LAYOUT(view_column), cell, attribute, column);
953 }
954
955
956 static void
957 hildon_touch_selector_column_cell_layout_set_cell_data_func (GtkCellLayout         *cell_layout,
958                                                        GtkCellRenderer       *cell,
959                                                        GtkCellLayoutDataFunc  func,
960                                                        gpointer               func_data,
961                                                        GDestroyNotify         destroy)
962 {
963   HildonTouchSelectorColumn *sel_column = NULL;
964   GtkTreeViewColumn *view_column = NULL;
965
966   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR_COLUMN (cell_layout));
967   sel_column = HILDON_TOUCH_SELECTOR_COLUMN (cell_layout);
968
969   view_column = gtk_tree_view_get_column (sel_column->priv->tree_view, 0);
970
971   gtk_cell_layout_set_cell_data_func (GTK_CELL_LAYOUT(view_column), cell, func,
972                                       func_data, destroy);
973 }
974
975 static void
976 hildon_touch_selector_column_cell_layout_clear_attributes (GtkCellLayout         *cell_layout,
977                                                      GtkCellRenderer       *cell)
978 {
979   HildonTouchSelectorColumn *sel_column = NULL;
980   GtkTreeViewColumn *view_column = NULL;
981
982   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR_COLUMN (cell_layout));
983   sel_column = HILDON_TOUCH_SELECTOR_COLUMN (cell_layout);
984
985   view_column = gtk_tree_view_get_column (sel_column->priv->tree_view, 0);
986
987   gtk_cell_layout_clear_attributes (GTK_CELL_LAYOUT (view_column), cell);
988 }
989
990 static void
991 hildon_touch_selector_column_cell_layout_reorder (GtkCellLayout         *cell_layout,
992                                             GtkCellRenderer       *cell,
993                                             gint                   position)
994 {
995   HildonTouchSelectorColumn *sel_column = NULL;
996   GtkTreeViewColumn *view_column = NULL;
997
998   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR_COLUMN (cell_layout));
999   sel_column = HILDON_TOUCH_SELECTOR_COLUMN (cell_layout);
1000
1001   view_column = gtk_tree_view_get_column (sel_column->priv->tree_view, 0);
1002
1003   gtk_cell_layout_reorder (GTK_CELL_LAYOUT(view_column), cell, position);
1004 }
1005
1006 static GList*
1007 hildon_touch_selector_column_cell_layout_get_cells (GtkCellLayout         *cell_layout)
1008 {
1009   HildonTouchSelectorColumn *sel_column = NULL;
1010   GtkTreeViewColumn *view_column = NULL;
1011
1012   g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR_COLUMN (cell_layout), NULL);
1013   sel_column = HILDON_TOUCH_SELECTOR_COLUMN (cell_layout);
1014
1015   view_column = gtk_tree_view_get_column (sel_column->priv->tree_view, 0);
1016
1017   return gtk_cell_layout_get_cells (GTK_CELL_LAYOUT(view_column));
1018 }
1019
1020 /* ------------------------------ PUBLIC METHODS ---------------------------- */
1021
1022 /**
1023  * hildon_touch_selector_new:
1024  *
1025  * Creates a new empty #HildonTouchSelector.
1026  *
1027  * Returns: a new #HildonTouchSelector.
1028  *
1029  * Since: 2.2
1030  **/
1031 GtkWidget *
1032 hildon_touch_selector_new (void)
1033 {
1034   return g_object_new (HILDON_TYPE_TOUCH_SELECTOR, NULL);
1035 }
1036
1037 /**
1038  * hildon_touch_selector_new_text:
1039  *
1040  * Creates a #HildonTouchSelector with a single text column that
1041  * can be populated conveniently through hildon_touch_selector_append_text(),
1042  * hildon_touch_selector_prepend_text(), hildon_touch_selector_insert_text().
1043  *
1044  * Returns: A new #HildonTouchSelector
1045  *
1046  * Since: 2.2
1047  **/
1048 GtkWidget *
1049 hildon_touch_selector_new_text (void)
1050 {
1051   GtkWidget *selector;
1052   GtkListStore *store;
1053   HildonTouchSelectorColumn *column = NULL;
1054
1055   selector = hildon_touch_selector_new ();
1056   store = gtk_list_store_new (1, G_TYPE_STRING);
1057
1058   column = hildon_touch_selector_append_text_column (HILDON_TOUCH_SELECTOR (selector),
1059                                                      GTK_TREE_MODEL (store), TRUE);
1060
1061   g_object_set (G_OBJECT (column), "text-column", 0, NULL);
1062
1063   return selector;
1064 }
1065
1066 /**
1067  * hildon_touch_selector_append_text:
1068  * @selector: A #HildonTouchSelector.
1069  * @text: a non %NULL text string.
1070  *
1071  * Appends a new entry in a #HildonTouchSelector created with
1072  * hildon_touch_selector_new_text().
1073  *
1074  * Since: 2.2
1075  **/
1076 void
1077 hildon_touch_selector_append_text (HildonTouchSelector * selector,
1078                                    const gchar * text)
1079 {
1080   GtkTreeIter iter;
1081   GtkTreeModel *model;
1082
1083   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR (selector));
1084   g_return_if_fail (text != NULL);
1085
1086   model = hildon_touch_selector_get_model (HILDON_TOUCH_SELECTOR (selector), 0);
1087
1088   g_return_if_fail (GTK_IS_LIST_STORE (model));
1089
1090   gtk_list_store_append (GTK_LIST_STORE (model), &iter);
1091   gtk_list_store_set (GTK_LIST_STORE (model), &iter, 0, text, -1);
1092 }
1093
1094 /**
1095  * hildon_touch_selector_prepend_text:
1096  * @selector: A #HildonTouchSelector.
1097  * @text: a non %NULL text string.
1098  *
1099  * Prepends a new entry in a #HildonTouchSelector created with
1100  * hildon_touch_selector_new_text().
1101  *
1102  * Since: 2.2
1103  **/
1104 void
1105 hildon_touch_selector_prepend_text (HildonTouchSelector * selector,
1106                                     const gchar * text)
1107 {
1108   GtkTreeIter iter;
1109   GtkTreeModel *model;
1110
1111   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR (selector));
1112   g_return_if_fail (text != NULL);
1113
1114   model = hildon_touch_selector_get_model (HILDON_TOUCH_SELECTOR (selector), 0);
1115
1116   g_return_if_fail (GTK_IS_LIST_STORE (model));
1117
1118   gtk_list_store_prepend (GTK_LIST_STORE (model), &iter);
1119   gtk_list_store_set (GTK_LIST_STORE (model), &iter, 0, text, -1);
1120 }
1121
1122 /**
1123  * hildon_touch_selector_insert_text:
1124  * @selector: a #HildonTouchSelector.
1125  * @position: the position to insert @text.
1126  * @text: A non %NULL text string.
1127  *
1128  * Inserts a new entry in a particular position of a
1129  * #HildonTouchSelector created with hildon_touch_selector_new_text().
1130  *
1131  * Since: 2.2
1132  **/
1133 void
1134 hildon_touch_selector_insert_text (HildonTouchSelector * selector,
1135                                    gint position, const gchar * text)
1136 {
1137   GtkTreeIter iter;
1138   GtkTreeModel *model;
1139
1140   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR (selector));
1141   g_return_if_fail (text != NULL);
1142   g_return_if_fail (position >= 0);
1143
1144   model = hildon_touch_selector_get_model (HILDON_TOUCH_SELECTOR (selector), 0);
1145
1146   g_return_if_fail (GTK_IS_LIST_STORE (model));
1147
1148   gtk_list_store_insert (GTK_LIST_STORE (model), &iter, position);
1149   gtk_list_store_set (GTK_LIST_STORE (model), &iter, 0, text, -1);
1150 }
1151
1152 /**
1153  * hildon_touch_selector_append_column
1154  * @selector: a #HildonTouchSelector
1155  * @model: the #GtkTreeModel with the data of the column
1156  * @cell_renderer: The #GtkCellRenderer where to draw each row contents.
1157  * @Varargs: a %NULL-terminated pair of attributes and column numbers.
1158  *
1159  * This functions adds a new column to the widget, whose data will
1160  * be obtained from the model. Only widgets added this way should used on
1161  * the selection logic, i.e., the print function, the #HildonTouchPicker::changed
1162  * signal, etc.
1163  *
1164  * You can optionally pass a #GtkCellRenderer in @cell_renderer,
1165  * together with a %NULL-terminated list of pairs property/value, in
1166  * the same way you would use gtk_tree_view_column_set_attributes().
1167  * This will pack @cell_renderer at the start of the column, expanded by default.
1168  * If you prefer not to add it this way, you can simply pass %NULL to @cell_renderer
1169  * and use the #GtkCellLayout interface on the returned #HildonTouchSelectorColumn
1170  * to set your renderers.
1171  *
1172  * There is a prerequisite to be considered on models used: text data must
1173  * be in the first column.
1174  *
1175  * This method basically adds a #GtkTreeView to the widget, using the model and
1176  * the data received.
1177  *
1178  * Returns: the new column added added, %NULL otherwise.
1179  *
1180  * Since: 2.2
1181  **/
1182
1183 HildonTouchSelectorColumn*
1184 hildon_touch_selector_append_column (HildonTouchSelector * selector,
1185                                      GtkTreeModel * model,
1186                                      GtkCellRenderer * cell_renderer, ...)
1187 {
1188   va_list args;
1189   HildonTouchSelectorColumn *new_column = NULL;
1190   gboolean emit_changed = FALSE;
1191   gint colnum;
1192
1193   g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR (selector), NULL);
1194   g_return_val_if_fail (GTK_IS_TREE_MODEL (model), NULL);
1195
1196   if (model != NULL) {
1197
1198     va_start (args, cell_renderer);
1199     new_column = _create_new_column (selector, model, &emit_changed, cell_renderer, args);
1200     va_end (args);
1201
1202     selector->priv->columns = g_slist_append (selector->priv->columns,
1203                                               new_column);
1204     gtk_box_pack_start (GTK_BOX (selector->priv->hbox),
1205                         new_column->priv->panarea,
1206                         TRUE, TRUE, 6);
1207
1208     gtk_widget_show_all (new_column->priv->panarea);
1209
1210     if (selector->priv->initial_scroll) {
1211       _hildon_touch_selector_center_on_selected_items (selector, new_column);
1212     }
1213
1214   } else {
1215     return NULL;
1216   }
1217
1218   g_signal_emit (selector, hildon_touch_selector_signals[COLUMNS_CHANGED], 0);
1219   if (emit_changed) {
1220     colnum = g_slist_length (selector->priv->columns);
1221     hildon_touch_selector_emit_value_changed (selector, colnum);
1222   }
1223
1224   return new_column;
1225 }
1226
1227 /**
1228  * hildon_touch_selector_append_text_column
1229  * @selector: a #HildonTouchSelector
1230  * @model: a #GtkTreeModel with data for the column
1231  * @center: whether to center the text on the column
1232  *
1233  * Equivalent to hildon_touch_selector_append_column(), but using a
1234  * default text cell renderer. This is the most common use case of the
1235  * widget.
1236  *
1237  * Returns: the new column added, NULL otherwise.
1238  *
1239  * Since: 2.2
1240  **/
1241 HildonTouchSelectorColumn*
1242 hildon_touch_selector_append_text_column (HildonTouchSelector * selector,
1243                                           GtkTreeModel * model, gboolean center)
1244 {
1245   gfloat xalign = center ? 0.5 : 0.0;
1246   GtkCellRenderer *renderer;
1247
1248   g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR (selector), NULL);
1249   g_return_val_if_fail (GTK_IS_TREE_MODEL (model), NULL);
1250
1251   renderer = gtk_cell_renderer_text_new ();
1252
1253   g_object_set (renderer,
1254                 "width", 1,
1255                 "xalign", xalign,
1256                 NULL);
1257
1258   return hildon_touch_selector_append_column (selector, model, renderer,
1259                                               "text", 0, NULL);
1260 }
1261
1262 /**
1263  * hildon_touch_selector_remove_column:
1264  * @selector: a #HildonTouchSelector
1265  * @column: the position of the column to be removed
1266  *
1267  * Removes a column from @selector.
1268  *
1269  * Returns: %TRUE if the column was removed, %FALSE otherwise
1270  *
1271  * Since: 2.2
1272  **/
1273 gboolean
1274 hildon_touch_selector_remove_column (HildonTouchSelector * selector, gint column)
1275 {
1276   HildonTouchSelectorColumn *current_column = NULL;
1277   HildonTouchSelectorPrivate *priv;
1278
1279   g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR (selector), FALSE);
1280   g_return_val_if_fail (column <
1281                         hildon_touch_selector_get_num_columns (selector), FALSE);
1282
1283   priv = HILDON_TOUCH_SELECTOR_GET_PRIVATE (selector);
1284   current_column = g_slist_nth_data (priv->columns, column);
1285
1286   gtk_container_remove (GTK_CONTAINER (priv->hbox), current_column->priv->panarea);
1287   priv->columns = g_slist_remove (priv->columns, current_column);
1288   g_object_unref (current_column);
1289
1290   g_signal_emit (selector, hildon_touch_selector_signals[COLUMNS_CHANGED], 0);
1291
1292   return TRUE;
1293 }
1294
1295 /**
1296  * hildon_touch_selector_set_column_attributes:
1297  * @selector: a #HildonTouchSelector
1298  * @num_column: the number of the column whose attributes we're setting
1299  * @cell_renderer: the #GtkCellRendere we're setting the attributes of
1300  * @Varargs: A %NULL-terminated list of attributes.
1301  *
1302  * Sets the attributes for the given column. The attributes must be given
1303  * in attribute/column pairs, just like in gtk_tree_view_column_set_attributes().
1304  * All existing attributes are removed and replaced with the new ones.
1305  *
1306  * Deprecated: #HildonTouchSelectorColumn implements #GtkCellLayout, use this
1307  *             interface instead. See
1308  *             hildon_touch_selector_get_column().
1309  *
1310  * Since: 2.2
1311  **/
1312 void
1313 hildon_touch_selector_set_column_attributes (HildonTouchSelector * selector,
1314                                              gint num_column,
1315                                              GtkCellRenderer * cell_renderer,
1316                                              ...)
1317 {
1318   va_list args;
1319   GtkTreeViewColumn *tree_column = NULL;
1320   HildonTouchSelectorColumn *current_column = NULL;
1321   gchar *attribute = NULL;
1322   gint value = 0;
1323
1324   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR (selector));
1325   g_return_if_fail (num_column <
1326                     hildon_touch_selector_get_num_columns (selector));
1327
1328   current_column = g_slist_nth_data (selector->priv->columns, num_column);
1329
1330   tree_column = gtk_tree_view_get_column (current_column->priv->tree_view, 0);
1331   gtk_tree_view_remove_column (current_column->priv->tree_view, tree_column);
1332
1333   tree_column = gtk_tree_view_column_new ();
1334   gtk_tree_view_column_pack_start (tree_column, cell_renderer, TRUE);
1335
1336   va_start (args, cell_renderer);
1337   attribute = va_arg (args, gchar *);
1338
1339   gtk_tree_view_column_clear_attributes (tree_column, cell_renderer);
1340
1341   while (attribute != NULL) {
1342     value = va_arg (args, gint);
1343     gtk_tree_view_column_add_attribute (tree_column, cell_renderer,
1344                                         attribute, value);
1345     attribute = va_arg (args, gchar *);
1346   }
1347
1348   va_end (args);
1349
1350   gtk_tree_view_append_column (current_column->priv->tree_view, tree_column);
1351 }
1352
1353 /**
1354  * hildon_touch_selector_get_num_columns:
1355  * @selector: a #HildonTouchSelector
1356  *
1357  * Gets the number of columns in the #HildonTouchSelector.
1358  *
1359  * Returns: the number of columns in @selector.
1360  *
1361  * Since: 2.2
1362  **/
1363 gint
1364 hildon_touch_selector_get_num_columns (HildonTouchSelector * selector)
1365 {
1366   g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR (selector), -1);
1367
1368   return g_slist_length (selector->priv->columns);
1369 }
1370
1371 /**
1372  * hildon_touch_selector_get_column_selection_mode:
1373  * @selector: a #HildonTouchSelector
1374  *
1375  * Gets the selection mode of @selector.
1376  *
1377  * Returns: one of #HildonTouchSelectorSelectionMode
1378  *
1379  * Since: 2.2
1380  **/
1381 HildonTouchSelectorSelectionMode
1382 hildon_touch_selector_get_column_selection_mode (HildonTouchSelector * selector)
1383 {
1384   HildonTouchSelectorSelectionMode result =
1385     HILDON_TOUCH_SELECTOR_SELECTION_MODE_SINGLE;
1386   GtkSelectionMode treeview_mode = GTK_SELECTION_BROWSE;
1387   HildonTouchSelectorColumn *column = NULL;
1388   GtkTreeSelection *selection = NULL;
1389
1390   g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR (selector), result);
1391   g_return_val_if_fail (hildon_touch_selector_get_num_columns (selector) > 0,
1392                         result);
1393
1394   column = HILDON_TOUCH_SELECTOR_COLUMN (selector->priv->columns->data);
1395
1396   selection = gtk_tree_view_get_selection (column->priv->tree_view);
1397   treeview_mode = gtk_tree_selection_get_mode (selection);
1398
1399
1400   if (treeview_mode == GTK_SELECTION_MULTIPLE) {
1401     result = HILDON_TOUCH_SELECTOR_SELECTION_MODE_MULTIPLE;
1402   } else {
1403     result = HILDON_TOUCH_SELECTOR_SELECTION_MODE_SINGLE;
1404   }
1405
1406   return result;
1407 }
1408
1409 /**
1410  * hildon_touch_selector_set_column_selection_mode:
1411  * @selector: a #HildonTouchSelector
1412  * @mode: the #HildonTouchSelectorMode for @selector
1413  *
1414  * Sets the selection mode for @selector. See #HildonTouchSelectorSelectionMode.
1415  *
1416  * Since: 2.2
1417  **/
1418 void
1419 hildon_touch_selector_set_column_selection_mode (HildonTouchSelector * selector,
1420                                                  HildonTouchSelectorSelectionMode mode)
1421 {
1422   GtkTreeView *tv = NULL;
1423   HildonTouchSelectorColumn *column = NULL;
1424   GtkTreeSelection *selection = NULL;
1425   GtkSelectionMode treeview_mode = GTK_SELECTION_MULTIPLE;
1426   GtkTreeIter iter;
1427   HildonTouchSelectorSelectionMode current_mode;
1428
1429   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR (selector));
1430   g_return_if_fail (hildon_touch_selector_get_num_columns (selector) > 0);
1431
1432   current_mode = hildon_touch_selector_get_column_selection_mode (selector);
1433
1434   if (current_mode == mode) {
1435     return;
1436   }
1437
1438   column = HILDON_TOUCH_SELECTOR_COLUMN ((g_slist_nth (selector->priv->columns, 0))->data);
1439   tv = column->priv->tree_view;
1440
1441   if (tv) {
1442     switch (mode) {
1443     case HILDON_TOUCH_SELECTOR_SELECTION_MODE_SINGLE:
1444       treeview_mode = GTK_SELECTION_BROWSE;
1445       break;
1446     case HILDON_TOUCH_SELECTOR_SELECTION_MODE_MULTIPLE:
1447       treeview_mode = GTK_SELECTION_MULTIPLE;
1448       break;
1449     }
1450
1451     selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (tv));
1452     gtk_tree_selection_set_mode (selection, treeview_mode);
1453
1454     selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (tv));
1455     gtk_tree_model_get_iter_first (column->priv->model, &iter);
1456     gtk_tree_selection_unselect_all (selection);
1457     gtk_tree_selection_select_iter (selection, &iter);
1458
1459     /* the column changed was the first one */
1460     hildon_touch_selector_emit_value_changed (selector, 0);
1461   }
1462
1463 }
1464
1465 /**
1466  * hildon_touch_selector_set_print_func:
1467  * @selector: a #HildonTouchSelector
1468  * @func: a #HildonTouchSelectorPrintFunc function
1469  *
1470  * Sets the function to be used by hildon_touch_selector_get_current_text()
1471  * to produce a text representation of the currently selected items in @selector.
1472  * The default function will return a concatenation of comma separated items
1473  * selected in each column in @selector. Use this to override this method if you
1474  * need a particular representation for your application.
1475  *
1476  * Since: 2.2
1477  **/
1478 void
1479 hildon_touch_selector_set_print_func (HildonTouchSelector * selector,
1480                                       HildonTouchSelectorPrintFunc func)
1481 {
1482   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR (selector));
1483
1484   hildon_touch_selector_set_print_func_full (selector, func, NULL, NULL);
1485 }
1486
1487 /**
1488  * hildon_touch_selector_set_print_func_full:
1489  * @selector: a #HildonTouchSelector
1490  * @func: a #HildonTouchSelectorPrintFunc function
1491  * @user_data: a pointer to user data or %NULL
1492  * @destroy_func: a callback for freeing the user data or %NULL
1493  *
1494  * Sets the function to be used by hildon_touch_selector_get_current_text()
1495  * to produce a text representation of the currently selected items in @selector.
1496  * The default function will return a concatenation of comma separated items
1497  * selected in each column in @selector. Use this to override this method if you
1498  * need a particular representation for your application.
1499  *
1500  * Since: 2.2
1501  **/
1502 void
1503 hildon_touch_selector_set_print_func_full (HildonTouchSelector          *selector,
1504                                            HildonTouchSelectorPrintFunc  func,
1505                                            gpointer                      user_data,
1506                                            GDestroyNotify                destroy_func)
1507 {
1508   gpointer       old_user_data;
1509   GDestroyNotify old_destroy_func;
1510
1511   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR (selector));
1512
1513   old_user_data = selector->priv->print_user_data;
1514   old_destroy_func = selector->priv->print_destroy_func;
1515
1516   selector->priv->print_func = func;
1517   selector->priv->print_user_data = user_data;
1518   selector->priv->print_destroy_func = destroy_func;
1519
1520   if (old_destroy_func && old_user_data != user_data)
1521     (*old_destroy_func) (old_user_data);
1522 }
1523
1524 /**
1525  * hildon_touch_selector_get_print_func:
1526  * @selector: a #HildonTouchSelector
1527  *
1528  * Gets the #HildonTouchSelectorPrintFunc currently used. See
1529  * hildon_touch_selector_set_print_func().
1530  *
1531  * Returns: a #HildonTouchSelectorPrintFunc or %NULL if the default
1532  * one is currently used.
1533  **/
1534 HildonTouchSelectorPrintFunc
1535 hildon_touch_selector_get_print_func (HildonTouchSelector * selector)
1536 {
1537   g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR (selector), NULL);
1538
1539   return selector->priv->print_func;
1540 }
1541
1542 /**
1543  * hildon_touch_selector_set_active:
1544  * @selector: a #HildonTouchSelector
1545  * @column: column number
1546  * @index: the index of the item to select, or -1 to have no active item
1547  *
1548  * Sets the active item of the #HildonTouchSelector to @index. The
1549  * column number is taken from @column.
1550  *
1551  * @selector must be in %HILDON_TOUCH_SELECTOR_SELECTION_MODE_SINGLE
1552  *
1553  * Since: 2.2
1554  **/
1555 void
1556 hildon_touch_selector_set_active                (HildonTouchSelector *selector,
1557                                                  gint                 column,
1558                                                  gint                 index)
1559 {
1560   GtkTreeSelection *selection = NULL;
1561   HildonTouchSelectorColumn *current_column = NULL;
1562   HildonTouchSelectorSelectionMode mode;
1563   GtkTreePath *path;
1564
1565   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR (selector));
1566   g_return_if_fail (column < hildon_touch_selector_get_num_columns (selector));
1567   mode = hildon_touch_selector_get_column_selection_mode (selector);
1568   g_return_if_fail (mode == HILDON_TOUCH_SELECTOR_SELECTION_MODE_SINGLE);
1569
1570   current_column = g_slist_nth_data (selector->priv->columns, column);
1571
1572   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (current_column->priv->tree_view));
1573   path = gtk_tree_path_new_from_indices (index, -1);
1574   gtk_tree_selection_unselect_all (selection);
1575   if (index != -1)
1576     gtk_tree_selection_select_path (selection, path);
1577
1578   hildon_touch_selector_emit_value_changed (selector, column);
1579
1580   gtk_tree_path_free (path);
1581 }
1582
1583 /**
1584  * hildon_touch_selector_get_active:
1585  * @selector: a #HildonTouchSelector
1586  * @column: column number
1587  *
1588  * Returns the index of the currently active item in column number
1589  * @column, or -1 if there's no active item.
1590  *
1591  * @selector must be in %HILDON_TOUCH_SELECTOR_SELECTION_MODE_SINGLE
1592  *
1593  * Returns: an integer which is the index of the currently active
1594  * item, or -1 if there's no active item.
1595  *
1596  * Since: 2.2
1597  **/
1598 gint
1599 hildon_touch_selector_get_active                (HildonTouchSelector *selector,
1600                                                  gint                 column)
1601 {
1602   GtkTreeSelection *selection = NULL;
1603   HildonTouchSelectorColumn *current_column = NULL;
1604   HildonTouchSelectorSelectionMode mode;
1605   GtkTreeModel *model;
1606   GtkTreeIter iter;
1607   GtkTreePath *path;
1608   gint index;
1609
1610   g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR (selector), -1);
1611   g_return_val_if_fail (column < hildon_touch_selector_get_num_columns (selector), -1);
1612   mode = hildon_touch_selector_get_column_selection_mode (selector);
1613   g_return_val_if_fail (mode == HILDON_TOUCH_SELECTOR_SELECTION_MODE_SINGLE, -1);
1614
1615   current_column = g_slist_nth_data (selector->priv->columns, column);
1616
1617   selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (current_column->priv->tree_view));
1618   g_return_val_if_fail (gtk_tree_selection_get_selected (selection, NULL, &iter), -1);
1619
1620   model = gtk_tree_view_get_model (GTK_TREE_VIEW (current_column->priv->tree_view));
1621   path = gtk_tree_model_get_path (model, &iter);
1622   index = (gtk_tree_path_get_indices (path))[0];
1623
1624   gtk_tree_path_free (path);
1625
1626   return index;
1627 }
1628
1629 /**
1630  * hildon_touch_selector_get_selected:
1631  * @selector: a #HildonTouchSelector
1632  * @column: the column number we want to get the element
1633  * @iter: #GtkTreeIter currently selected
1634  *
1635  * Sets @iter to the currently selected node on the nth-column, if selection is
1636  * set to %HILDON_TOUCH_SELECTOR_SINGLE or %HILDON_TOUCH_SELECTOR_MULTIPLE with
1637  * a column different that the first one. @iter may be %NULL if you just want to
1638  * test if selection has any selected items.
1639  *
1640  * This function will not work if selection is in
1641  * %HILDON_TOUCH_SELECTOR_MULTIPLE mode and the column is the first one.
1642  *
1643  * See gtk_tree_selection_get_selected() for more information.
1644  *
1645  * Returns: %TRUE if @iter was correctly set, %FALSE otherwise
1646  *
1647  * Since: 2.2
1648  **/
1649 gboolean
1650 hildon_touch_selector_get_selected (HildonTouchSelector * selector,
1651                                     gint column, GtkTreeIter * iter)
1652 {
1653   GtkTreeSelection *selection = NULL;
1654   HildonTouchSelectorColumn *current_column = NULL;
1655   HildonTouchSelectorSelectionMode mode;
1656
1657   g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR (selector), FALSE);
1658   g_return_val_if_fail (column < hildon_touch_selector_get_num_columns (selector),
1659                         FALSE);
1660   mode = hildon_touch_selector_get_column_selection_mode (selector);
1661   g_return_val_if_fail
1662     ((mode == HILDON_TOUCH_SELECTOR_SELECTION_MODE_SINGLE) ||
1663      ((mode == HILDON_TOUCH_SELECTOR_SELECTION_MODE_MULTIPLE)&&(column>0)),
1664      FALSE);
1665
1666   current_column = g_slist_nth_data (selector->priv->columns, column);
1667
1668   selection =
1669     gtk_tree_view_get_selection (GTK_TREE_VIEW (current_column->priv->tree_view));
1670
1671   return gtk_tree_selection_get_selected (selection, NULL, iter);
1672 }
1673
1674 /**
1675  * hildon_touch_selector_select_iter
1676  * @selector: a #HildonTouchSelector
1677  * @column:   the column to selects
1678  * @iter:     the #GtkTreeIter to be selected
1679  * @scroll_to: whether to smoothly scroll to the item
1680  *
1681  * Sets the currently selected item in the column @column to the one pointed by @iter,
1682  * optionally smoothly scrolling to it.
1683  *
1684  * Since: 2.2
1685  **/
1686 void
1687 hildon_touch_selector_select_iter (HildonTouchSelector * selector,
1688                                    gint column, GtkTreeIter * iter,
1689                                    gboolean scroll_to)
1690 {
1691   GtkTreePath *path;
1692   GtkTreeModel *model;
1693   HildonTouchSelectorColumn *current_column = NULL;
1694   GtkTreeView *tv = NULL;
1695   GtkTreeSelection *selection = NULL;
1696
1697   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR (selector));
1698   g_return_if_fail (column < hildon_touch_selector_get_num_columns (selector));
1699
1700   current_column = g_slist_nth_data (selector->priv->columns, column);
1701
1702   tv = current_column->priv->tree_view;
1703   selection = gtk_tree_view_get_selection (tv);
1704   model = gtk_tree_view_get_model (tv);
1705   path = gtk_tree_model_get_path (model, iter);
1706
1707   gtk_tree_selection_select_iter (selection, iter);
1708
1709   if (scroll_to) {
1710     hildon_touch_selector_scroll_to (current_column, tv, path);
1711   }
1712
1713   hildon_touch_selector_emit_value_changed (selector, column);
1714
1715   gtk_tree_path_free (path);
1716 }
1717
1718 /**
1719  * hildon_touch_selector_unselect_iter
1720  * @selector: a #HildonTouchSelector
1721  * @column:   the column to unselects from
1722  * @iter:     the #GtkTreeIter to be unselected
1723  *
1724  * Unselect the item pointed by @iter in the column @column
1725  *
1726  * Since: 2.2
1727  **/
1728
1729 void hildon_touch_selector_unselect_iter (HildonTouchSelector * selector,
1730                                           gint column,
1731                                           GtkTreeIter * iter)
1732 {
1733   HildonTouchSelectorColumn *current_column = NULL;
1734   GtkTreeSelection *selection = NULL;
1735
1736   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR (selector));
1737   g_return_if_fail (column < hildon_touch_selector_get_num_columns (selector));
1738
1739   current_column = g_slist_nth_data (selector->priv->columns, column);
1740   selection = gtk_tree_view_get_selection (current_column->priv->tree_view);
1741   gtk_tree_selection_unselect_iter (selection, iter);
1742
1743   hildon_touch_selector_emit_value_changed (selector, column);
1744 }
1745
1746 /**
1747  * hildon_touch_selector_unselect_all:
1748  * @selector: a #HildonTouchSelector
1749  * @column: the position of the column to get the selected rows from
1750  *
1751  * Unselects all the selected items in the column @column.
1752  *
1753  * Since: 2.2
1754  **/
1755 void
1756 hildon_touch_selector_unselect_all (HildonTouchSelector * selector,
1757                                     gint column)
1758 {
1759   HildonTouchSelectorColumn *current_column = NULL;
1760   GtkTreeSelection *selection = NULL;
1761
1762   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR (selector));
1763   g_return_if_fail (column < hildon_touch_selector_get_num_columns (selector));
1764
1765   current_column = g_slist_nth_data (selector->priv->columns, column);
1766   selection = gtk_tree_view_get_selection (current_column->priv->tree_view);
1767   gtk_tree_selection_unselect_all (selection);
1768
1769   hildon_touch_selector_emit_value_changed (selector, column);
1770 }
1771
1772 /**
1773  * hildon_touch_selector_get_selected_rows:
1774  * @selector: a #HildonTouchSelector
1775  * @column: the position of the column to get the selected rows from
1776  *
1777  * Creates a list of #GtkTreePath<!-- -->s of all selected rows in a column. Additionally,
1778  * if you to plan to modify the model after calling this function, you may
1779  * want to convert the returned list into a list of GtkTreeRowReferences. To do this,
1780  * you can use gtk_tree_row_reference_new().
1781  *
1782  * See gtk_tree_selection_get_selected_rows() for more information.
1783  *
1784  * Returns: A new #GList containing a #GtkTreePath for each selected row in the column @column.
1785  *
1786  * Since: 2.2
1787  **/
1788 GList *
1789 hildon_touch_selector_get_selected_rows (HildonTouchSelector * selector,
1790                                          gint column)
1791 {
1792   GList *result = NULL;
1793   HildonTouchSelectorColumn *current_column = NULL;
1794   GtkTreeSelection *selection = NULL;
1795
1796   g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR (selector), NULL);
1797   g_return_val_if_fail (column < hildon_touch_selector_get_num_columns (selector),
1798                         NULL);
1799
1800   current_column = g_slist_nth_data (selector->priv->columns, column);
1801   selection = gtk_tree_view_get_selection (current_column->priv->tree_view);
1802
1803   result = gtk_tree_selection_get_selected_rows (selection, NULL);
1804
1805   return result;
1806 }
1807
1808 /**
1809  * hildon_touch_selector_get_model:
1810  * @selector: a #HildonTouchSelector
1811  * @column: the position of the column in @selector
1812  *
1813  * Gets the model of a column of @selector.
1814  *
1815  * Returns: the #GtkTreeModel for the column @column of @selector.
1816  *
1817  * Since: 2.2
1818  **/
1819 GtkTreeModel *
1820 hildon_touch_selector_get_model (HildonTouchSelector * selector, gint column)
1821 {
1822   HildonTouchSelectorColumn *current_column = NULL;
1823
1824   g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR (selector), NULL);
1825   g_return_val_if_fail (column < hildon_touch_selector_get_num_columns (selector),
1826                         NULL);
1827
1828   current_column = g_slist_nth_data (selector->priv->columns, column);
1829
1830   return current_column->priv->model;
1831 }
1832
1833 static void
1834 on_row_changed (GtkTreeModel *model,
1835                 GtkTreePath *path,
1836                 GtkTreeIter *iter,
1837                 gpointer userdata)
1838 {
1839   HildonTouchSelector *selector;
1840   HildonTouchSelectorColumn *current_column;
1841
1842   gint column = 0;
1843   GSList *col;
1844
1845   selector = HILDON_TOUCH_SELECTOR (userdata);
1846
1847   for (col = selector->priv->columns; col != NULL; col = col->next) {
1848     current_column = HILDON_TOUCH_SELECTOR_COLUMN (col->data);
1849     if (current_column->priv->model == model &&
1850         gtk_tree_selection_path_is_selected (gtk_tree_view_get_selection (current_column->priv->tree_view),
1851                                              path)) {
1852       hildon_touch_selector_emit_value_changed (selector, column);
1853     }
1854     column ++;
1855   }
1856 }
1857
1858 static void
1859 _hildon_touch_selector_set_model (HildonTouchSelector * selector,
1860                                   gint column, GtkTreeModel * model)
1861 {
1862   HildonTouchSelectorColumn *current_column = NULL;
1863
1864   current_column =
1865     HILDON_TOUCH_SELECTOR_COLUMN (g_slist_nth_data (selector->priv->columns, column));
1866
1867   if (current_column->priv->model) {
1868     g_signal_handlers_disconnect_by_func (current_column->priv->model,
1869                                           on_row_changed, selector);
1870   }
1871   current_column->priv->model = model;
1872   gtk_tree_view_set_model (current_column->priv->tree_view,
1873                            current_column->priv->model);
1874   g_signal_connect (model, "row-changed",
1875                     G_CALLBACK (on_row_changed), selector);
1876 }
1877
1878 /**
1879  * hildon_touch_selector_set_model:
1880  * @selector: a #HildonTouchSelector
1881  * @column: the position of the column to set the model to
1882  * @model: a #GtkTreeModel
1883  *
1884  * Sets the #GtkTreeModel for a particular column in @model.
1885  *
1886  * Since: 2.2
1887  **/
1888 void
1889 hildon_touch_selector_set_model (HildonTouchSelector * selector,
1890                                  gint column, GtkTreeModel * model)
1891 {
1892   g_return_if_fail (HILDON_TOUCH_SELECTOR (selector));
1893   g_return_if_fail (column < hildon_touch_selector_get_num_columns (selector));
1894
1895   HILDON_TOUCH_SELECTOR_GET_CLASS (selector)->set_model (selector, column, model);
1896 }
1897
1898 /**
1899  * hildon_touch_selector_get_current_text:
1900  * @selector: a #HildonTouchSelector
1901  *
1902  * Returns a string representing the currently selected items for
1903  * each column of @selector. See hildon_touch_selector_set_print_func().
1904  *
1905  * Returns: a newly allocated string.
1906  *
1907  * Since: 2.2
1908  **/
1909 gchar *
1910 hildon_touch_selector_get_current_text (HildonTouchSelector * selector)
1911 {
1912   gchar *result = NULL;
1913   g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR (selector), NULL);
1914
1915   if (selector->priv->print_func) {
1916     result = (*selector->priv->print_func) (selector, selector->priv->print_user_data);
1917   } else {
1918     result = _default_print_func (selector, NULL);
1919   }
1920
1921   return result;
1922 }
1923
1924 static void
1925 search_nearest_element (HildonPannableArea *panarea,
1926                         GtkTreeView *tv,
1927                         GList *selected_rows,
1928                         GtkTreePath **nearest_path)
1929 {
1930   GtkAdjustment *adj = NULL;
1931   gdouble target_value = 0;
1932   GdkRectangle rect;
1933   GList *iter = NULL;
1934   GtkTreePath *path = NULL;
1935   gint y = -1;
1936   gdouble nearest_distance = -1;
1937   gdouble current_distance = -1;
1938   GtkTreePath *result_path = NULL;
1939
1940   g_assert (nearest_path != NULL);
1941
1942   if (selected_rows == NULL) {
1943     *nearest_path = NULL;
1944     return;
1945   }
1946
1947   adj = hildon_pannable_area_get_vadjustment (panarea);
1948   g_return_if_fail (adj != NULL);
1949
1950   /* we add this in order to check the nearest to the center of
1951      the visible area */
1952   target_value = gtk_adjustment_get_value (adj) + adj->page_size/2;
1953
1954   path = result_path = selected_rows->data;
1955   gtk_tree_view_get_background_area (tv, path, NULL, &rect);
1956   gtk_tree_view_convert_bin_window_to_tree_coords (tv, 0, rect.y, NULL, &y);
1957   nearest_distance = abs (target_value - y);
1958
1959   for (iter = selected_rows->next; iter; iter = g_list_next (iter)) {
1960     gtk_tree_view_get_background_area (tv, path, NULL, &rect);
1961     gtk_tree_view_convert_bin_window_to_tree_coords (tv, 0, rect.y, NULL, &y);
1962     current_distance = abs (target_value - y);
1963     if (current_distance < nearest_distance) {
1964       nearest_distance = current_distance;
1965       result_path = path;
1966     }
1967   }
1968
1969   *nearest_path = result_path;
1970 }
1971
1972 static gboolean
1973 on_realize_cb                                  (GtkWidget *widget,
1974                                                 gpointer data)
1975 {
1976   HildonTouchSelectorColumn *column = NULL;
1977   GdkRectangle rect;
1978   gint y;
1979
1980   column = HILDON_TOUCH_SELECTOR_COLUMN (data);
1981
1982   if (column->priv->initial_path) {
1983     gtk_tree_view_get_background_area (GTK_TREE_VIEW (column->priv->tree_view),
1984                                        column->priv->initial_path, NULL, &rect);
1985     gtk_tree_view_convert_bin_window_to_tree_coords
1986       (GTK_TREE_VIEW (column->priv->tree_view),
1987        0, rect.y, NULL, &y);
1988
1989     hildon_pannable_area_scroll_to (HILDON_PANNABLE_AREA (column->priv->panarea),
1990                                     -1, y);
1991
1992     gtk_tree_path_free (column->priv->initial_path);
1993
1994     column->priv->initial_path = NULL;
1995
1996   }
1997
1998   g_signal_handler_disconnect (column->priv->panarea,
1999                                column->priv->realize_handler);
2000
2001   return FALSE;
2002 }
2003
2004 static void
2005 hildon_touch_selector_scroll_to (HildonTouchSelectorColumn *column,
2006                                  GtkTreeView *tv,
2007                                  GtkTreePath *path)
2008 {
2009   if (GTK_WIDGET_REALIZED (column->priv->panarea)) {
2010     GdkRectangle rect;
2011     gint y;
2012
2013     gtk_tree_view_get_background_area (tv,
2014                                        path, NULL, &rect);
2015     gtk_tree_view_convert_bin_window_to_tree_coords (tv,
2016                                                      0, rect.y, NULL, &y);
2017
2018     hildon_pannable_area_scroll_to (HILDON_PANNABLE_AREA
2019                                     (column->priv->panarea), -1, y);
2020   } else {
2021     if (column->priv->realize_handler != 0) {
2022
2023       if (column->priv->initial_path) {
2024         gtk_tree_path_free (column->priv->initial_path);
2025         column->priv->initial_path = NULL;
2026       }
2027
2028       g_signal_handler_disconnect (column->priv->panarea,
2029                                    column->priv->realize_handler);
2030       column->priv->realize_handler = 0;
2031     }
2032
2033     column->priv->initial_path = gtk_tree_path_copy (path);
2034     column->priv->realize_handler =
2035       g_signal_connect_after (G_OBJECT (column->priv->panarea), "realize",
2036                               G_CALLBACK (on_realize_cb),
2037                               column);
2038   }
2039 }
2040
2041 /**
2042  *
2043  * Center on the selected item of a concrete column
2044  *
2045  * Returns: TRUE if was able to do that
2046  *          FALSE otherwise
2047  */
2048 static gboolean
2049 _hildon_touch_selector_center_on_selected_items (HildonTouchSelector *selector,
2050                                                  HildonTouchSelectorColumn *column)
2051 {
2052   GtkTreePath *path = NULL;
2053   GList *selected_rows = NULL;
2054   gint num_column = -1;
2055
2056   num_column = g_slist_index (selector->priv->columns, column);
2057
2058   selected_rows = hildon_touch_selector_get_selected_rows (selector, num_column);
2059   if (selected_rows) {
2060     search_nearest_element (HILDON_PANNABLE_AREA (column->priv->panarea),
2061                              GTK_TREE_VIEW (column->priv->tree_view),
2062                              selected_rows,
2063                              &path);
2064
2065     if (path != NULL) {
2066       hildon_touch_selector_scroll_to (column,
2067                                        GTK_TREE_VIEW (column->priv->tree_view),
2068                                        path);
2069     } else {
2070       return FALSE;
2071     }
2072
2073     g_list_foreach (selected_rows, (GFunc) (gtk_tree_path_free), NULL);
2074     g_list_free (selected_rows);
2075   }
2076
2077   return TRUE;
2078 }
2079
2080 static gboolean
2081 _hildon_touch_selector_has_multiple_selection (HildonTouchSelector * selector)
2082 {
2083   HildonTouchSelectorSelectionMode mode;
2084   gint n_columns;
2085
2086   n_columns = hildon_touch_selector_get_num_columns (selector);
2087   mode = hildon_touch_selector_get_column_selection_mode (selector);
2088
2089   return ((n_columns > 1) || (mode == HILDON_TOUCH_SELECTOR_SELECTION_MODE_MULTIPLE));
2090 }
2091
2092 /**
2093  * hildon_touch_selector_has_multiple_selection:
2094  * @selector: A #HildonTouchSelector
2095  *
2096  * Determines whether @selector is complex enough to actually require an
2097  * extra selection step than only picking an item. This is normally %TRUE
2098  * if @selector has multiple columns, multiple selection, or when it is a
2099  * more complex widget, like #HildonTouchSelectorEntry.
2100  *
2101  * This information is useful for widgets containing a #HildonTouchSelector,
2102  * like #HildonPickerDialog, that could need a "Done" button, in case that
2103  * its internal #HildonTouchSelector has multiple columns, for instance.
2104  *
2105  * Returns: %TRUE if @selector requires multiple selection steps.
2106  *
2107  * Since: 2.2
2108  **/
2109 gboolean
2110 hildon_touch_selector_has_multiple_selection (HildonTouchSelector * selector)
2111 {
2112   g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR (selector), FALSE);
2113
2114   return HILDON_TOUCH_SELECTOR_GET_CLASS (selector)->has_multiple_selection (selector);
2115 }
2116
2117
2118 /**
2119  * hildon_touch_selector_get_column:
2120  * @selector: A #HildonTouchSelector
2121  * @column: a column number
2122  *
2123  * Use this method to retrieve a #HildonTouchSelectorColumn. Then, you can use
2124  * the #GtkCellLayout interface to set up the layout of the column.
2125  *
2126  * Returns: the @column<!-- -->-th #HildonTouchSelectorColumn in @selector
2127  *
2128  * Since: 2.2
2129  **/
2130 HildonTouchSelectorColumn *
2131 hildon_touch_selector_get_column (HildonTouchSelector * selector,
2132                                   gint column)
2133 {
2134   gint num_columns = -1;
2135
2136   g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR (selector), NULL);
2137   num_columns = hildon_touch_selector_get_num_columns (selector);
2138   g_return_val_if_fail (column < num_columns && column >= 0, NULL);
2139
2140   return g_slist_nth_data (selector->priv->columns, column);
2141 }
2142
2143
2144 /**
2145  * hildon_touch_selector_center_on_selected:
2146  * @selector: a #HildonTouchSelector
2147  *
2148  * Ensures all the columns in a #HildonTouchSelector show a selected
2149  * item. If one of the columns is in
2150  * %HILDON_TOUCH_SELECTOR_SELECTION_MODE_MULTIPLE mode, that column
2151  * will be scrolled to ensure the selected item that is closest to the
2152  * currently visible area is shown.
2153  *
2154  * Since: 2.2
2155  **/
2156 void
2157 hildon_touch_selector_center_on_selected         (HildonTouchSelector *selector)
2158 {
2159   GSList *iter = NULL;
2160
2161   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR (selector));
2162
2163   for (iter = selector->priv->columns; iter; iter = g_slist_next (iter)) {
2164     _hildon_touch_selector_center_on_selected_items (selector,
2165                                                     HILDON_TOUCH_SELECTOR_COLUMN (iter->data));
2166   }
2167 }
2168
2169 /**
2170  * hildon_touch_selector_optimal_size_request
2171  * @selector: a #HildonTouchSelector
2172  * @requisition: a #GtkRequisition
2173  *
2174  * Gets the optimal size request of the touch selector. This function is mostly
2175  * intended for dialog implementations that include a #HildonTouchSelector and
2176  * want to optimize the screen real state, for example, when you want a dialog
2177  * to show as much of the selector, avoiding any extra empty space below the
2178  * selector.
2179  *
2180  * See #HildonPickerDialog implementation for an example.
2181  *
2182  * This function is oriented to be used in the size_request of a dialog or window,
2183  * if you are not sure do not use it.
2184  *
2185  * There is a precondition to this function: Since this function does not
2186  * call the "size_request" method, it can only be used when you know that
2187  * gtk_widget_size_request() has been called since the last time a resize was
2188  * queued.
2189  *
2190  * Since: 2.2
2191  **/
2192 void
2193 hildon_touch_selector_optimal_size_request      (HildonTouchSelector *selector,
2194                                                  GtkRequisition *requisition)
2195 {
2196   GSList *iter = NULL;
2197   gint height = 0;
2198
2199   g_return_if_fail (HILDON_IS_TOUCH_SELECTOR (selector));
2200
2201   iter = selector->priv->columns;
2202
2203   /* Default optimal values are the current ones */
2204   gtk_widget_get_child_requisition (GTK_WIDGET (selector),
2205                                     requisition);
2206
2207   if (iter == NULL) {
2208     height = requisition->height;
2209   }
2210
2211   /* Compute optimal height */
2212   while (iter) {
2213     HildonTouchSelectorColumn *column;
2214     GtkWidget *child;
2215     GtkRequisition child_requisition = {0};
2216
2217     column = HILDON_TOUCH_SELECTOR_COLUMN (iter->data);
2218     child = GTK_WIDGET (column->priv->tree_view);
2219
2220     gtk_widget_get_child_requisition (child, &child_requisition);
2221
2222     height = MAX (height, child_requisition.height);
2223
2224     iter = g_slist_next (iter);
2225   }
2226
2227   requisition->height = height;
2228 }
2229