2009-02-18 Alberto Garcia <agarcia@igalia.com>
[hildon] / src / hildon-touch-selector-entry.h
1 /*
2  * This file is a part of hildon
3  *
4  * Copyright (C) 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 #ifndef                                         __HILDON_TOUCH_SELECTOR_ENTRY__
22 #define                                         __HILDON_TOUCH_SELECTOR_ENTRY__
23
24 #include                                        "hildon-touch-selector.h"
25
26 G_BEGIN_DECLS
27
28 #define                                         HILDON_TYPE_TOUCH_SELECTOR_ENTRY \
29                                                 (hildon_touch_selector_entry_get_type())
30
31 #define                                         HILDON_TOUCH_SELECTOR_ENTRY(obj) \
32                                                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
33                                                 HILDON_TYPE_TOUCH_SELECTOR_ENTRY, HildonTouchSelectorEntry))
34
35 #define                                         HILDON_TOUCH_SELECTOR_ENTRY_CLASS(klass) \
36                                                 (G_TYPE_CHECK_CLASS_CAST ((klass), \
37                                                 HILDON_TYPE_TOUCH_SELECTOR_ENTRY, HildonTouchSelectorEntryClass))
38
39 #define                                         HILDON_IS_TOUCH_SELECTOR_ENTRY(obj) \
40                                                 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
41                                                 HILDON_TYPE_TOUCH_SELECTOR_ENTRY))
42
43 #define                                         HILDON_IS_TOUCH_SELECTOR_ENTRY_CLASS(klass) \
44                                                 (G_TYPE_CHECK_CLASS_TYPE ((klass), \
45                                                 HILDON_TYPE_TOUCH_SELECTOR_ENTRY))
46
47 #define                                         HILDON_TOUCH_SELECTOR_ENTRY_GET_CLASS(obj) \
48                                                 (G_TYPE_INSTANCE_GET_CLASS ((obj), \
49                                                 HILDON_TYPE_TOUCH_SELECTOR_ENTRY, HildonTouchSelectorEntryClass))
50
51 typedef struct                                  _HildonTouchSelectorEntry HildonTouchSelectorEntry;
52 typedef struct                                  _HildonTouchSelectorEntryClass HildonTouchSelectorEntryClass;
53
54 struct                                          _HildonTouchSelectorEntry
55 {
56   HildonTouchSelector parent;
57
58   /*< private > */
59 };
60
61 struct                                          _HildonTouchSelectorEntryClass
62 {
63   HildonTouchSelectorClass parent_class;
64 };
65
66 GType
67 hildon_touch_selector_entry_get_type            (void);
68
69 GtkWidget*
70 hildon_touch_selector_entry_new                 (void);
71
72 GtkWidget*
73 hildon_touch_selector_entry_new_text            (void);
74
75 void
76 hildon_touch_selector_entry_set_text_column     (HildonTouchSelectorEntry *selector,
77                                                  gint                      text_column);
78 gint
79 hildon_touch_selector_entry_get_text_column     (HildonTouchSelectorEntry *selector);
80
81 HildonGtkInputMode
82 hildon_touch_selector_entry_get_input_mode (HildonTouchSelectorEntry * selector);
83
84 void
85 hildon_touch_selector_entry_set_input_mode (HildonTouchSelectorEntry * selector,
86                                             HildonGtkInputMode input_mode);
87
88 G_END_DECLS
89
90 #endif /* __HILDON_TOUCH_SELECTOR_ENTRY__ */
91