Put function name in the changelog.
[hildon] / src / hildon-time-picker.h
1 /*
2  * This file is a part of hildon
3  *
4  * Copyright (C) 2005, 2006 Nokia Corporation, all rights reserved.
5  *
6  * Contact: Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public License
10  * as published by the Free Software Foundation; version 2.1 of
11  * the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
21  * 02110-1301 USA
22  *
23  */
24
25 #ifndef                                         __HILDON_TIME_PICKER_H__
26 #define                                         __HILDON_TIME_PICKER_H__
27
28 #include                                        <gtk/gtkdialog.h>
29
30 G_BEGIN_DECLS
31
32 typedef struct                                  _HildonTimePicker HildonTimePicker;
33
34 typedef struct                                  _HildonTimePickerClass HildonTimePickerClass;
35
36 #define                                         HILDON_TYPE_TIME_PICKER \
37                                                 (hildon_time_picker_get_type())
38
39 #define                                         HILDON_TIME_PICKER(obj) \
40                                                 (GTK_CHECK_CAST (obj, \
41                                                 HILDON_TYPE_TIME_PICKER, \
42                                                 HildonTimePicker))
43
44 #define                                         HILDON_TIME_PICKER_CLASS(klass) \
45                                                 (GTK_CHECK_CLASS_CAST ((klass), \
46                                                 HILDON_TYPE_TIME_PICKER,\
47                                                 HildonTimePickerClass))
48
49 #define                                         HILDON_IS_TIME_PICKER(obj) \
50                                                 (GTK_CHECK_TYPE (obj, \
51                                                 HILDON_TYPE_TIME_PICKER))
52
53 #define                                         HILDON_IS_TIME_PICKER_CLASS(klass) \
54                                                 (GTK_CHECK_CLASS_TYPE ((klass),\
55                                                 HILDON_TYPE_TIME_PICKER))
56
57 #define                                         HILDON_TIME_PICKER_GET_CLASS(obj) \
58                                                 ((HildonTimePickerClass *) G_OBJECT_GET_CLASS(obj))
59
60 struct _HildonTimePicker
61 {
62     GtkDialog parent;
63 };
64
65 struct _HildonTimePickerClass
66 {
67     GtkDialogClass parent_class;
68 };
69
70 GType G_GNUC_CONST
71 hildon_time_picker_get_type                     (void);
72
73 GtkWidget*
74 hildon_time_picker_new                          (GtkWindow *parent);
75
76 void 
77 hildon_time_picker_set_time                     (HildonTimePicker *picker,
78                                                  guint hours, 
79                                                  guint minutes);
80
81 void 
82 hildon_time_picker_get_time                     (HildonTimePicker *picker,
83                                                  guint *hours, 
84                                                  guint *minutes);
85
86 G_END_DECLS
87
88 #endif                                          /* __HILDON_TIME_PICKER_H__ */