return ret;
}
+/**
+ * gtk_form_field_datetime_get_gdate_from_tm:
+ * @datetime: a struct tm.
+ *
+ * Returns: a #GDate that represent the struct tm without time information.
+ */
+GDate
+*gtk_form_field_datetime_get_gdate_from_tm (struct tm *datetime)
+{
+ GDate *ret;
+
+ ret = NULL;
+
+ if (datetime != NULL)
+ {
+ ret = g_date_new_dmy (datetime->tm_mday,
+ datetime->tm_mon + 1,
+ datetime->tm_year + 1900);
+
+ if (!g_date_valid (ret))
+ {
+ ret = NULL;
+ }
+ }
+
+ return ret;
+}
+
/* PRIVATE */
static void
gtk_form_field_datetime_set_property (GObject *object,
struct tm *gtk_form_field_datetime_get_tm_from_str (const gchar *str, const gchar *format);
gchar *gtk_form_field_datetime_get_str_from_tm (struct tm *datetime, const gchar *format);
+GDate *gtk_form_field_datetime_get_gdate_from_tm (struct tm *datetime);
+
G_END_DECLS