05c3d358a48c33fecb547771548761ab838fe278
[hildon] / src / hildon-touch-selector-column.h
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 #ifndef __HILDON_TOUCH_SELECTOR_COLUMN_H__
22 #define __HILDON_TOUCH_SELECTOR_COLUMN_H__
23
24 #include <gtk/gtk.h>
25
26 G_BEGIN_DECLS
27
28 #define HILDON_TYPE_TOUCH_SELECTOR_COLUMN           (hildon_touch_selector_column_get_type ())
29 #define HILDON_TOUCH_SELECTOR_COLUMN(obj)           (G_TYPE_CHECK_INSTANCE_CAST ((obj), HILDON_TYPE_TOUCH_SELECTOR_COLUMN, HildonTouchSelectorColumn))
30 #define HILDON_TOUCH_SELECTOR_COLUMN_CLASS(klass)   (G_TYPE_CHECK_CLASS_CAST ((klass), HILDON_TYPE_TOUCH_SELECTOR_COLUMN, HildonTouchSelectorColumnClass))
31 #define HILDON_IS_TOUCH_SELECTOR_COLUMN(obj)        (G_TYPE_CHECK_INSTANCE_TYPE ((obj), HILDON_TYPE_TOUCH_SELECTOR_COLUMN))
32 #define HILDON_IS_TOUCH_SELECTOR_COLUMN_CLASS(klass)(G_TYPE_CHECK_CLASS_TYPE ((klass), HILDON_TYPE_TOUCH_SELECTOR_COLUMN))
33 #define HILDON_TOUCH_SELECTOR_COLUMN_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), HILDON_TYPE_TOUCH_SELECTOR_COLUMN, HildonTouchSelectorColumnClass))
34
35 typedef struct _HildonTouchSelectorColumn        HildonTouchSelectorColumn;
36 typedef struct _HildonTouchSelectorColumnClass   HildonTouchSelectorColumnClass;
37 typedef struct _HildonTouchSelectorColumnPrivate HildonTouchSelectorColumnPrivate;
38
39 struct _HildonTouchSelectorColumn
40 {
41   GObject parent;
42
43   /* < private > */
44   HildonTouchSelectorColumnPrivate *priv;
45 };
46
47 struct _HildonTouchSelectorColumnClass
48 {
49   GObjectClass parent_class;
50 };
51
52 GType                   hildon_touch_selector_column_get_type            (void) G_GNUC_CONST;
53
54 G_END_DECLS
55
56
57 #endif /*__HILDON_TOUCH_SELECTOR_COLUMN_H__ */