HildonTouchSelectorColumn

HildonTouchSelectorColumn — A visible column in a HildonTouchSelector

Synopsis


#include <hildon/hildon.h>

                    HildonTouchSelectorColumn;
void                hildon_touch_selector_column_set_text_column
                                                        (HildonTouchSelectorColumn *column,
                                                         gint text_column);
gint                hildon_touch_selector_column_get_text_column
                                                        (HildonTouchSelectorColumn *column);

Object Hierarchy

  GObject
   +----HildonTouchSelectorColumn

Implemented Interfaces

HildonTouchSelectorColumn implements GtkCellLayout.

Properties

  "text-column"              gint                  : Read / Write

Description

A HildonTouchSelectorColumn is a column in a HildonTouchSelector. This class implements the GtkCellLayout interface, allowing a flexible management of the cellrenderers in each HildonTouchSelector column.

Details

HildonTouchSelectorColumn

typedef struct _HildonTouchSelectorColumn HildonTouchSelectorColumn;


hildon_touch_selector_column_set_text_column ()

void                hildon_touch_selector_column_set_text_column
                                                        (HildonTouchSelectorColumn *column,
                                                         gint text_column);

Sets the model column to be displayed in column. text_column must point to a column in the model used with type G_TYPE_STRING. Initially, this property is unset. You should set it before using the HildonTouchSelector that uses column.

column : A HildonTouchSelectorColumn
text_column : the index of a model column in the model for column.

Since 2.2


hildon_touch_selector_column_get_text_column ()

gint                hildon_touch_selector_column_get_text_column
                                                        (HildonTouchSelectorColumn *column);

Gets the model column set as the text source for column.

column : a HildonTouchSelectorColumn
Returns : the index of the text column for column, or -1 if unset.

Since 2.2

Property Details

The "text-column" property

  "text-column"              gint                  : Read / Write

A column in the data source model to get the strings from.

Allowed values: >= -1

Default value: -1

Since maemo 2.2

See Also

HildonTouchSelector