2009-03-30 Alberto Garcia <agarcia@igalia.com>
[hildon] / src / hildon-calendar-popup.h
index e2e1d15..99810e5 100644 (file)
@@ -1,14 +1,14 @@
 /*
- * This file is part of hildon-libs
+ * This file is a part of hildon
  *
  * Copyright (C) 2005, 2006 Nokia Corporation, all rights reserved.
  *
- * Contact: Michael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
+ * Contact: Rodrigo Novo <rodrigo.novo@nokia.com>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
  * as published by the Free Software Foundation; version 2.1 of
- * the License.
+ * the License, or (at your option) any later version.
  *
  * This library is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
  *
  */
 
-#ifndef __HILDON_CALENDAR_POPUP_H__
-#define __HILDON_CALENDAR_POPUP_H__
+#ifndef                                         HILDON_DISABLE_DEPRECATED
 
-#include <gtk/gtkdialog.h>
+#ifndef                                         __HILDON_CALENDAR_POPUP_H__
+#define                                         __HILDON_CALENDAR_POPUP_H__
+
+#include                                        <gtk/gtkdialog.h>
 
 G_BEGIN_DECLS
-/**
- * HILDON_TYPE_CALENDAR_POPUP:
- *
- * Macro for getting type of calendar popup.
- * Since: 0.12.10
- */
-#define HILDON_TYPE_CALENDAR_POPUP ( hildon_calendar_popup_get_type() )
 
-/**
- * HILDON_CALENDAR_POPUP_TYPE:
- *
- * Deprecated: use #HILDON_TYPE_CALENDAR_POPUP instead
- */
-#define HILDON_CALENDAR_POPUP_TYPE HILDON_TYPE_CALENDAR_POPUP
-
-#define HILDON_CALENDAR_POPUP(obj) (GTK_CHECK_CAST (obj,\
-  HILDON_TYPE_CALENDAR_POPUP, HildonCalendarPopup))
-#define HILDON_CALENDAR_POPUP_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass),\
-  HILDON_TYPE_CALENDAR_POPUP, HildonCalendarPopupClass))
-#define HILDON_IS_CALENDAR_POPUP(obj) (GTK_CHECK_TYPE (obj,\
-  HILDON_TYPE_CALENDAR_POPUP))
-#define HILDON_IS_CALENDAR_POPUP_CLASS(klass) \
-  (GTK_CHECK_CLASS_TYPE ((klass), HILDON_TYPE_CALENDAR_POPUP))
-
-/**
- * HildonCalendarPopup:
- *
- * Internal struct for calendar popup.
- */
-typedef struct _HildonCalendarPopup HildonCalendarPopup;
-typedef struct _HildonCalendarPopupClass HildonCalendarPopupClass;
+typedef struct                                  _HildonCalendarPopup HildonCalendarPopup;
+
+typedef struct                                  _HildonCalendarPopupClass HildonCalendarPopupClass;
 
-/* Note: CalendarPopup is no longer derived from GtkWindow
-   but from GtkDialog */
+#define                                         HILDON_TYPE_CALENDAR_POPUP \
+                                                (hildon_calendar_popup_get_type())
 
-struct _HildonCalendarPopup {
-    GtkDialog par;
+#define                                         HILDON_CALENDAR_POPUP(obj) (GTK_CHECK_CAST (obj,\
+                                                HILDON_TYPE_CALENDAR_POPUP, HildonCalendarPopup))
+
+#define                                         HILDON_CALENDAR_POPUP_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), \
+                                                HILDON_TYPE_CALENDAR_POPUP, HildonCalendarPopupClass))
+
+#define                                         HILDON_IS_CALENDAR_POPUP(obj) (GTK_CHECK_TYPE (obj,\
+                                                HILDON_TYPE_CALENDAR_POPUP))
+
+#define                                         HILDON_IS_CALENDAR_POPUP_CLASS(klass) \
+                                                (GTK_CHECK_CLASS_TYPE ((klass), HILDON_TYPE_CALENDAR_POPUP))
+
+#define                                         HILDON_CALENDAR_POPUP_GET_CLASS(obj) \
+                                                ((HildonCalendarPopupClass *) G_OBJECT_GET_CLASS(obj))
+
+struct                                          _HildonCalendarPopup 
+{
+    GtkDialog parent;
 };
 
-struct _HildonCalendarPopupClass {
+struct                                          _HildonCalendarPopupClass 
+{
     GtkDialogClass parent_class;
 };
 
-GType hildon_calendar_popup_get_type(void) G_GNUC_CONST;
+GType G_GNUC_CONST
+hildon_calendar_popup_get_type                  (void);
 
-GtkWidget *hildon_calendar_popup_new(GtkWindow * parent, guint year,
-                                     guint month, guint day);
+GtkWidget*
+hildon_calendar_popup_new                       (GtkWindow *parent, 
+                                                 guint year,
+                                                 guint month, 
+                                                 guint day);
 
-void hildon_calendar_popup_set_date(HildonCalendarPopup * cal,
-                                    guint year, guint month, guint day);
+void 
+hildon_calendar_popup_set_date                  (HildonCalendarPopup *cal,
+                                                 guint year, 
+                                                 guint month, 
+                                                 guint day);
 
-void hildon_calendar_popup_get_date(HildonCalendarPopup * cal,
-                                    guint * year, guint * month,
-                                    guint * day);
+void 
+hildon_calendar_popup_get_date                  (HildonCalendarPopup *cal,
+                                                 guint *year, 
+                                                 guint *month,
+                                                 guint *day);
 
 G_END_DECLS
-#endif /* __HILDON_CALENDAR_POPUP_H__ */
+
+#endif                                          /* __HILDON_CALENDAR_POPUP_H__ */
+
+#endif                                          /* HILDON_DISABLE_DEPRECATED */