b8cc255b45535b27018692a60967959bedfda4c2
[hildon] / src / hildon-date-button.h
1 /*
2  * This file is a part of hildon
3  *
4  * Copyright (C) 2008 Nokia Corporation, all rights reserved.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser Public License as published by
8  * the Free Software Foundation; version 2 of the license.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU Lesser Public License for more details.
14  *
15  */
16
17 #ifndef _HILDON_DATE_BUTTON
18 #define _HILDON_DATE_BUTTON
19
20 #include <glib-object.h>
21
22 G_BEGIN_DECLS
23
24 #define HILDON_TYPE_DATE_BUTTON            hildon_date_button_get_type()
25 #define HILDON_DATE_BUTTON(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), HILDON_TYPE_DATE_BUTTON, HildonDateButton))
26 #define HILDON_DATE_BUTTON_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), HILDON_TYPE_DATE_BUTTON, HildonDateButtonClass))
27 #define HILDON_IS_DATE_BUTTON(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), HILDON_TYPE_DATE_BUTTON))
28 #define HILDON_IS_DATE_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), HILDON_TYPE_DATE_BUTTON))
29 #define HILDON_DATE_BUTTON_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj), HILDON_TYPE_DATE_BUTTON, HildonDateButtonClass))
30
31 typedef struct
32 {
33   HildonPickerButton parent;
34 } HildonDateButton;
35
36 typedef struct
37 {
38   HildonPickerButtonClass parent_class;
39 } HildonDateButtonClass;
40
41 GType      hildon_date_button_get_type (void);
42 GtkWidget *hildon_date_button_new      (HildonButtonFlags flags);
43
44 void hildon_date_button_get_date       (HildonDateButton * button,
45                                         guint * year, guint * month, guint * day);
46 void hildon_date_button_set_date       (HildonDateButton * button,
47                                         guint year, guint month, guint day);
48
49 G_END_DECLS
50
51 #endif /* _HILDON_DATE_BUTTON */