1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
|
/*
* This file is a part of hildon
*
* Copyright (C) 2008, 2009 Nokia Corporation.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version. or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/**
* SECTION:hildon-touch-selector-entry
* @short_description: A selector widget with one column and a text entry
* @see_also: #HildonTouchSelector, #HildonPickerButton
*
* #HildonTouchSelectorEntry is a selector widget with a text entry,
* similar in behaviour to #GtkComboBoxEntry (and for this reason it
* only supports one #HildonTouchSelectorColumn), that allows user to
* select an item from a predefined list or to enter a different one
* in a #HildonEntry. Items can also be searched and selected by
* typing in the entry. For more specific use cases, the #HildonEntry
* can be accessed directly with hildon_touch_selector_get_entry().
*
* The main difference between the #GtkTreeModel used by
* #HildonTouchSelector and #HildonTouchSelectorEntry, is that the
* latter must always include a text column. You should set it with
* hildon_touch_selector_entry_set_text_column(). Anyway, there is no
* problem if you have several columns in the #GtkTreeModel and show
* them with different cell renderers packed in the
* #HildonTouchSelectorColumn, but as the entry acts on text, you need
* to have that column in the tree view.
*
* Normally, you would use #HildonTouchSelectorEntry together with a
* #HildonPickerDialog activated from a button. For the most common
* cases, you should use #HildonPickerButton.
*
* If you only need a text only, one column selector, you can create it with
* hildon_touch_selector_entry_new_text() and populate it with
* hildon_touch_selector_append_text(), hildon_touch_selector_prepend_text(),
* and hildon_touch_selector_insert_text().
*
*/
#include "hildon-touch-selector.h"
#include "hildon-touch-selector-private.h"
#include "hildon-touch-selector-entry.h"
#include "hildon-entry.h"
#include <string.h>
G_DEFINE_TYPE (HildonTouchSelectorEntry, hildon_touch_selector_entry, HILDON_TYPE_TOUCH_SELECTOR)
#define HILDON_TOUCH_SELECTOR_ENTRY_GET_PRIVATE(o) \
(G_TYPE_INSTANCE_GET_PRIVATE ((o), HILDON_TYPE_TOUCH_SELECTOR_ENTRY, HildonTouchSelectorEntryPrivate))
typedef struct _HildonTouchSelectorEntryPrivate HildonTouchSelectorEntryPrivate;
static void entry_on_text_changed (GtkEditable * editable, gpointer userdata);
static void hildon_touch_selector_entry_changed (HildonTouchSelector * selector,
gint column,
gpointer user_data);
static void hildon_touch_selector_entry_set_model (HildonTouchSelector * selector,
gint column, GtkTreeModel *model);
static gboolean hildon_touch_selector_entry_has_multiple_selection (HildonTouchSelector * selector);
static void
_text_column_modified (GObject *pspec, GParamSpec *gobject, gpointer data);
struct _HildonTouchSelectorEntryPrivate {
gulong signal_id;
GtkWidget *entry;
GIConv converter;
gboolean smart_match;
};
enum {
PROP_TEXT_COLUMN = 1,
PROP_SMART_MATCH
};
static void
hildon_touch_selector_entry_get_property (GObject *object, guint property_id,
GValue *value, GParamSpec *pspec)
{
HildonTouchSelectorEntryPrivate *priv;
priv = HILDON_TOUCH_SELECTOR_ENTRY_GET_PRIVATE (object);
switch (property_id) {
case PROP_TEXT_COLUMN:
g_value_set_int (value,
hildon_touch_selector_entry_get_text_column (HILDON_TOUCH_SELECTOR_ENTRY (object)));
break;
case PROP_SMART_MATCH:
g_value_set_boolean (value, priv->smart_match);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}
}
static void
hildon_touch_selector_entry_set_property (GObject *object, guint property_id,
const GValue *value, GParamSpec *pspec)
{
HildonTouchSelectorEntryPrivate *priv;
priv = HILDON_TOUCH_SELECTOR_ENTRY_GET_PRIVATE (object);
switch (property_id) {
case PROP_TEXT_COLUMN:
hildon_touch_selector_entry_set_text_column (HILDON_TOUCH_SELECTOR_ENTRY (object),
g_value_get_int (value));
break;
case PROP_SMART_MATCH:
priv->smart_match = g_value_get_boolean (value);
break;
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
}
}
static GObject *
hildon_touch_selector_entry_constructor (GType type,
guint n_construct_properties,
GObjectConstructParam *construct_properties)
{
GObject *object;
object = G_OBJECT_CLASS (hildon_touch_selector_entry_parent_class)->constructor
(type, n_construct_properties, construct_properties);
g_object_set (object, "live-search", FALSE, NULL);
return object;
}
static void
hildon_touch_selector_entry_finalize (GObject *object)
{
HildonTouchSelectorEntryPrivate *priv;
priv = HILDON_TOUCH_SELECTOR_ENTRY_GET_PRIVATE (object);
g_iconv_close (priv->converter);
G_OBJECT_CLASS (hildon_touch_selector_entry_parent_class)->finalize (object);
}
static void
hildon_touch_selector_entry_class_init (HildonTouchSelectorEntryClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
HildonTouchSelectorClass *selector_class = HILDON_TOUCH_SELECTOR_CLASS (klass);
g_type_class_add_private (klass, sizeof (HildonTouchSelectorEntryPrivate));
selector_class->set_model = hildon_touch_selector_entry_set_model;
selector_class->has_multiple_selection = hildon_touch_selector_entry_has_multiple_selection;
object_class->constructor = hildon_touch_selector_entry_constructor;
object_class->get_property = hildon_touch_selector_entry_get_property;
object_class->set_property = hildon_touch_selector_entry_set_property;
object_class->finalize = hildon_touch_selector_entry_finalize;
/**
* HildonTouchSelectorEntry:smart-match:
*
* Whether the widget should suggest an element if an approximate match is found.
*
* By default, #HildonTouchSelectorEntry replaces automatically the
* content of the entry if you find an exact case match while you
* are writing. But if this property is set to %TRUE, the widget
* will suggest an element by selecting it if an approximate
* (e.g. case-insensitive) match is found.
*
* Since: 2.2.12
**/
g_object_class_install_property (G_OBJECT_CLASS (klass),
PROP_SMART_MATCH,
g_param_spec_boolean ("smart-match",
"Smart match",
"Whether the widget should select "
"one of the elements if an "
"approximate match is found",
TRUE,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT));
}
static gchar *
hildon_touch_selector_entry_print_func (HildonTouchSelector * selector, gpointer user_data)
{
HildonTouchSelectorEntryPrivate *priv;
GtkTreeModel *model;
GtkTreeIter iter;
gint column;
gchar *text = NULL;
priv = HILDON_TOUCH_SELECTOR_ENTRY_GET_PRIVATE (selector);
if (*(gtk_entry_get_text (GTK_ENTRY (priv->entry))) != '\0') {
text = g_strdup (gtk_entry_get_text (GTK_ENTRY (priv->entry)));
} else {
model = hildon_touch_selector_get_model (selector, 0);
if (hildon_touch_selector_get_selected (selector, 0, &iter)) {
column = hildon_touch_selector_entry_get_text_column (HILDON_TOUCH_SELECTOR_ENTRY (selector));
gtk_tree_model_get (model, &iter, column, &text, -1);
}
}
return text;
}
static void
hildon_touch_selector_entry_init (HildonTouchSelectorEntry *self)
{
HildonTouchSelectorEntryPrivate *priv;
GtkEntryCompletion *completion;
#ifdef MAEMO_GTK
HildonGtkInputMode input_mode;
#endif
priv = HILDON_TOUCH_SELECTOR_ENTRY_GET_PRIVATE (self);
priv->converter = g_iconv_open ("ascii//translit", "utf-8");
priv->entry = hildon_entry_new (HILDON_SIZE_FINGER_HEIGHT);
gtk_entry_set_activates_default (GTK_ENTRY (priv->entry), TRUE);
#ifdef MAEMO_GTK
input_mode = hildon_gtk_entry_get_input_mode (GTK_ENTRY (priv->entry));
/* Disable unsupported input modes. */
input_mode &= ~HILDON_GTK_INPUT_MODE_MULTILINE;
input_mode &= ~HILDON_GTK_INPUT_MODE_INVISIBLE;
input_mode &= ~HILDON_GTK_INPUT_MODE_DICTIONARY;
hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry), input_mode);
#endif
completion = gtk_entry_completion_new ();
gtk_entry_completion_set_inline_completion (completion, TRUE);
gtk_entry_completion_set_popup_completion (completion, FALSE);
gtk_entry_set_completion (GTK_ENTRY (priv->entry), completion);
g_object_unref (completion);
gtk_widget_show (priv->entry);
g_signal_connect (G_OBJECT (priv->entry), "changed",
G_CALLBACK (entry_on_text_changed), self);
priv->signal_id = g_signal_connect (G_OBJECT (self), "changed",
G_CALLBACK (hildon_touch_selector_entry_changed), NULL);
hildon_touch_selector_set_print_func (HILDON_TOUCH_SELECTOR (self), hildon_touch_selector_entry_print_func);
gtk_box_pack_start (GTK_BOX (self), priv->entry, FALSE, FALSE, 0);
}
/**
* hildon_touch_selector_entry_new:
*
* Creates a #HildonTouchSelectorEntry
*
* Returns: A new #HildonTouchSelectorEntry
*
* Since: 2.2
**/
GtkWidget *
hildon_touch_selector_entry_new (void)
{
return g_object_new (HILDON_TYPE_TOUCH_SELECTOR_ENTRY, NULL);
}
/**
* hildon_touch_selector_entry_new_text:
*
* Creates a #HildonTouchSelectorEntry with a single text column that
* can be populated conveniently through hildon_touch_selector_append_text(),
* hildon_touch_selector_prepend_text(), hildon_touch_selector_insert_text().
*
* Returns: A new #HildonTouchSelectorEntry
*
* Since: 2.2
**/
GtkWidget *
hildon_touch_selector_entry_new_text (void)
{
GtkListStore *model;
GtkWidget *selector;
GtkEntryCompletion *completion;
HildonTouchSelectorEntryPrivate *priv;
HildonTouchSelectorColumn *column = NULL;
selector = hildon_touch_selector_entry_new ();
priv = HILDON_TOUCH_SELECTOR_ENTRY_GET_PRIVATE (selector);
model = gtk_list_store_new (1, G_TYPE_STRING);
completion = gtk_entry_get_completion (GTK_ENTRY (priv->entry));
gtk_entry_completion_set_model (completion, GTK_TREE_MODEL (model));
column = hildon_touch_selector_append_text_column (HILDON_TOUCH_SELECTOR (selector),
GTK_TREE_MODEL (model), FALSE);
g_object_unref (model);
g_signal_connect (column, "notify::text-column", G_CALLBACK (_text_column_modified),
selector);
hildon_touch_selector_entry_set_text_column (HILDON_TOUCH_SELECTOR_ENTRY (selector), 0);
return selector;
}
static void
_text_column_modified (GObject *pspec, GParamSpec *gobject, gpointer data)
{
HildonTouchSelectorEntry *selector;
HildonTouchSelectorEntryPrivate *priv;
GtkEntryCompletion *completion;
gint text_column = -1;
g_return_if_fail (HILDON_IS_TOUCH_SELECTOR_ENTRY (data));
selector = HILDON_TOUCH_SELECTOR_ENTRY (data);
priv = HILDON_TOUCH_SELECTOR_ENTRY_GET_PRIVATE (HILDON_TOUCH_SELECTOR_ENTRY(selector));
completion = gtk_entry_get_completion (GTK_ENTRY (priv->entry));
text_column = hildon_touch_selector_entry_get_text_column (selector);
gtk_entry_completion_set_text_column (completion, text_column);
}
/**
* hildon_touch_selector_entry_set_text_column:
* @selector: A #HildonTouchSelectorEntry
* @text_column: A column in model to get the strings from
*
* Sets the model column which touch selector box should use to get strings
* from to be @text_column.
*
* Since: 2.2
**/
void
hildon_touch_selector_entry_set_text_column (HildonTouchSelectorEntry *selector,
gint text_column)
{
HildonTouchSelectorColumn *column = NULL;
g_return_if_fail (HILDON_IS_TOUCH_SELECTOR_ENTRY (selector));
g_return_if_fail (text_column >= -1);
column = hildon_touch_selector_get_column (HILDON_TOUCH_SELECTOR (selector), 0);
hildon_touch_selector_column_set_text_column (column, text_column);
hildon_touch_selector_column_disable_focus (column);
}
/**
* hildon_touch_selector_entry_get_text_column:
* @selector: A #HildonTouchSelectorEntry
*
* Gets the text column that @selector is using as a text column.
*
* Returns: the number of the column used as a text column.
*
* Since: 2.2
**/
gint
hildon_touch_selector_entry_get_text_column (HildonTouchSelectorEntry *selector)
{
HildonTouchSelectorColumn *column = NULL;
gint text_column = -1;
g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR_ENTRY (selector), -1);
column = hildon_touch_selector_get_column (HILDON_TOUCH_SELECTOR (selector),
0);
text_column = hildon_touch_selector_column_get_text_column (column);
return text_column;
}
#ifdef MAEMO_GTK
/**
* hildon_touch_selector_entry_set_input_mode:
* @selector: a #HildonTouchSelectorEntry
* @input_mode: #HildonGtkInputMode mask
*
* Sets the input mode to be used in the #GtkEntry in @selector. See hildon_gtk_entry_set_input_mode()
* for details.
*
* It must be noted that not all input modes are available for the
* entry in @selector. In particular,
* %HILDON_GTK_INPUT_MODE_MULTILINE, %HILDON_GTK_INPUT_MODE_INVISIBLE,
* %HILDON_GTK_INPUT_MODE_DICTIONARY are disabled, since these are irrelevant
* for #HildonTouchSelectorEntry.
*
* Since: 2.2
**/
void
hildon_touch_selector_entry_set_input_mode (HildonTouchSelectorEntry * selector,
HildonGtkInputMode input_mode)
{
HildonTouchSelectorEntryPrivate *priv;
g_return_if_fail (HILDON_IS_TOUCH_SELECTOR_ENTRY (selector));
g_return_if_fail (!(input_mode & (HILDON_GTK_INPUT_MODE_MULTILINE |
HILDON_GTK_INPUT_MODE_INVISIBLE |
HILDON_GTK_INPUT_MODE_DICTIONARY)));
priv = HILDON_TOUCH_SELECTOR_ENTRY_GET_PRIVATE (selector);
hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry), input_mode);
}
/**
* hildon_touch_selector_entry_get_input_mode:
* @selector: a #HildonTouchSelectorEntry
*
* Gets the input mode used in the #GtkEntry in @selector. See hildon_gtk_entry_get_input_mode()
* for details.
*
* Returns: a mask of #HildonGtkInputMode
*
* Since: 2.2
**/
HildonGtkInputMode
hildon_touch_selector_entry_get_input_mode (HildonTouchSelectorEntry * selector)
{
HildonTouchSelectorEntryPrivate *priv;
g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR_ENTRY (selector), HILDON_GTK_INPUT_MODE_ALPHA);
priv = HILDON_TOUCH_SELECTOR_ENTRY_GET_PRIVATE (selector);
return hildon_gtk_entry_get_input_mode (GTK_ENTRY (priv->entry));
}
#endif
static void
entry_on_text_changed (GtkEditable * editable,
gpointer userdata)
{
HildonTouchSelector *selector;
HildonTouchSelectorEntryPrivate *priv;
GtkTreeModel *model;
GtkTreeIter iter;
GtkTreeIter iter_suggested;
GtkEntry *entry;
const gchar *prefix;
gchar *text;
gboolean found = FALSE;
gint text_column = -1;
gchar *ascii_prefix;
gint prefix_len;
gboolean found_suggestion = FALSE;
entry = GTK_ENTRY (editable);
selector = HILDON_TOUCH_SELECTOR (userdata);
priv = HILDON_TOUCH_SELECTOR_ENTRY_GET_PRIVATE (selector);
text_column =
hildon_touch_selector_entry_get_text_column (HILDON_TOUCH_SELECTOR_ENTRY (selector));
prefix = gtk_entry_get_text (entry);
if (prefix[0] == '\0') {
return;
}
model = hildon_touch_selector_get_model (selector, 0);
if (!gtk_tree_model_get_iter_first (model, &iter)) {
return;
}
if (priv->smart_match) {
ascii_prefix = g_convert_with_iconv (prefix, -1, priv->converter, NULL, NULL, NULL);
prefix_len = strlen (ascii_prefix);
}
do {
gtk_tree_model_get (model, &iter, text_column, &text, -1);
found = g_str_has_prefix (text, prefix);
if (!found && !found_suggestion && priv->smart_match) {
gchar *ascii_text = g_convert_with_iconv (text, -1, priv->converter, NULL, NULL, NULL);
found_suggestion = !g_ascii_strncasecmp (ascii_text, ascii_prefix, prefix_len);
if (found_suggestion) {
iter_suggested = iter;
}
g_free (ascii_text);
}
g_free (text);
} while (found != TRUE && gtk_tree_model_iter_next (model, &iter));
g_signal_handler_block (selector, priv->signal_id);
{
/* We emit the HildonTouchSelector::changed signal because a change in the
GtkEntry represents a change in current selection, and therefore, users
should be notified. */
if (found) {
hildon_touch_selector_select_iter (selector, 0, &iter, TRUE);
} else if (found_suggestion) {
hildon_touch_selector_select_iter (selector, 0, &iter_suggested, TRUE);
}
g_signal_emit_by_name (selector, "changed", 0);
}
g_signal_handler_unblock (selector, priv->signal_id);
if (priv->smart_match) {
g_free (ascii_prefix);
}
}
/* FIXME: This is actually a very ugly way to retrieve the text. Ideally,
we would have API to retrieve it from the base clase (HildonTouchSelector).
In the meantime, leaving it here.
*/
static gchar *
hildon_touch_selector_entry_get_text_from_model (HildonTouchSelectorEntry * selector)
{
GtkTreeModel *model;
GtkTreeIter iter;
GtkTreePath *path;
GList *selected_rows;
gchar *text;
gint text_column = -1;
model = hildon_touch_selector_get_model (HILDON_TOUCH_SELECTOR (selector), 0);
text_column = hildon_touch_selector_entry_get_text_column (selector);
selected_rows = hildon_touch_selector_get_selected_rows (HILDON_TOUCH_SELECTOR (selector), 0);
if (text_column == -1 || selected_rows == NULL) {
return NULL;
}
/* We are in single selection mode */
g_assert (selected_rows->next == NULL);
path = (GtkTreePath *)selected_rows->data;
gtk_tree_model_get_iter (model, &iter, path);
gtk_tree_model_get (model, &iter, text_column, &text, -1);
gtk_tree_path_free (path);
g_list_free (selected_rows);
return text;
}
static void
hildon_touch_selector_entry_changed (HildonTouchSelector * selector,
gint column, gpointer user_data)
{
HildonTouchSelectorEntryPrivate *priv;
gchar *text;
priv = HILDON_TOUCH_SELECTOR_ENTRY_GET_PRIVATE (selector);
text = hildon_touch_selector_entry_get_text_from_model (HILDON_TOUCH_SELECTOR_ENTRY (selector));
if (text != NULL) {
gtk_entry_set_text (GTK_ENTRY (priv->entry), text);
gtk_editable_select_region (GTK_EDITABLE (priv->entry), 0, -1);
g_free (text);
}
}
static void
hildon_touch_selector_entry_set_model (HildonTouchSelector * selector,
gint column, GtkTreeModel *model)
{
GtkEntryCompletion *completion;
HildonTouchSelectorEntryPrivate *priv;
gint text_column = -1;
g_return_if_fail (HILDON_IS_TOUCH_SELECTOR_ENTRY (selector));
g_return_if_fail (column == 0);
g_return_if_fail (GTK_IS_TREE_MODEL (model));
HILDON_TOUCH_SELECTOR_CLASS (hildon_touch_selector_entry_parent_class)->set_model (selector, column, model);
priv = HILDON_TOUCH_SELECTOR_ENTRY_GET_PRIVATE (selector);
completion = gtk_entry_get_completion (GTK_ENTRY (priv->entry));
gtk_entry_completion_set_model (completion, model);
text_column = hildon_touch_selector_entry_get_text_column (HILDON_TOUCH_SELECTOR_ENTRY (selector));
gtk_entry_completion_set_text_column (completion, text_column);
}
static gboolean
hildon_touch_selector_entry_has_multiple_selection (HildonTouchSelector * selector)
{
/* Always TRUE, given the GtkEntry. */
return TRUE;
}
/**
* hildon_touch_selector_entry_get_entry:
* @selector: a #HildonTouchSelectorEntry.
*
* Provides access to the #HildonEntry in @selector. Use to programmatically
* change the contents in entry or modify its behavior.
*
* Returns: a #HildonEntry.
*
* Since: 2.2
**/
HildonEntry *
hildon_touch_selector_entry_get_entry (HildonTouchSelectorEntry * selector)
{
HildonTouchSelectorEntryPrivate *priv;
g_return_val_if_fail (HILDON_IS_TOUCH_SELECTOR_ENTRY (selector), NULL);
priv = HILDON_TOUCH_SELECTOR_ENTRY_GET_PRIVATE (selector);
return HILDON_ENTRY (priv->entry);
}
|