2006-08-30 Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
[hildon] / hildon-widgets / hildon-calendar-popup.h
1 /*
2  * This file is part of hildon-libs
3  *
4  * Copyright (C) 2005, 2006 Nokia Corporation.
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.
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_CALENDAR_POPUP_H__
26 #define __HILDON_CALENDAR_POPUP_H__
27
28 #include <gtk/gtkdialog.h>
29
30 G_BEGIN_DECLS
31 /**
32  * HILDON_TYPE_CALENDAR_POPUP:
33  *
34  * Macro for getting type of calendar popup.
35  * Since: 0.12.10
36  */
37 #define HILDON_TYPE_CALENDAR_POPUP ( hildon_calendar_popup_get_type() )
38
39 /**
40  * HILDON_CALENDAR_POPUP_TYPE:
41  *
42  * Deprecated: use #HILDON_TYPE_CALENDAR_POPUP instead
43  */
44 #define HILDON_CALENDAR_POPUP_TYPE HILDON_TYPE_CALENDAR_POPUP
45
46 #define HILDON_CALENDAR_POPUP(obj) (GTK_CHECK_CAST (obj,\
47   HILDON_TYPE_CALENDAR_POPUP, HildonCalendarPopup))
48 #define HILDON_CALENDAR_POPUP_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass),\
49   HILDON_TYPE_CALENDAR_POPUP, HildonCalendarPopupClass))
50 #define HILDON_IS_CALENDAR_POPUP(obj) (GTK_CHECK_TYPE (obj,\
51   HILDON_TYPE_CALENDAR_POPUP))
52 #define HILDON_IS_CALENDAR_POPUP_CLASS(klass) \
53   (GTK_CHECK_CLASS_TYPE ((klass), HILDON_TYPE_CALENDAR_POPUP))
54
55 /**
56  * HildonCalendarPopup:
57  *
58  * Internal struct for calendar popup.
59  */
60 typedef struct _HildonCalendarPopup HildonCalendarPopup;
61 typedef struct _HildonCalendarPopupClass HildonCalendarPopupClass;
62
63 /* Note: CalendarPopup is no longer derived from GtkWindow
64    but from GtkDialog */
65
66 struct _HildonCalendarPopup {
67     GtkDialog par;
68 };
69
70 struct _HildonCalendarPopupClass {
71     GtkDialogClass parent_class;
72 };
73
74 GType hildon_calendar_popup_get_type(void) G_GNUC_CONST;
75
76 GtkWidget *hildon_calendar_popup_new(GtkWindow * parent, guint year,
77                                      guint month, guint day);
78
79 void hildon_calendar_popup_set_date(HildonCalendarPopup * cal,
80                                     guint year, guint month, guint day);
81
82 void hildon_calendar_popup_get_date(HildonCalendarPopup * cal,
83                                     guint * year, guint * month,
84                                     guint * day);
85
86 G_END_DECLS
87 #endif /* __HILDON_CALENDAR_POPUP_H__ */