From 6f4ec80f31bd566b84ae5b6bc568252eb959a050 Mon Sep 17 00:00:00 2001 From: Andrea Zagli Date: Mon, 25 Jul 2011 10:54:42 +0200 Subject: [PATCH] Added properties from time part. Updated glade catalogue. --- glade/gtkdateentry.xml | 2 ++ src/gtkdateentry.c | 37 ++++++++++++++++++++++++++++++++++--- 2 files changed, 36 insertions(+), 3 deletions(-) diff --git a/glade/gtkdateentry.xml b/glade/gtkdateentry.xml index b45a2e1..035c1ed 100644 --- a/glade/gtkdateentry.xml +++ b/glade/gtkdateentry.xml @@ -9,6 +9,8 @@ + + diff --git a/src/gtkdateentry.c b/src/gtkdateentry.c index ab78b94..1abb868 100644 --- a/src/gtkdateentry.c +++ b/src/gtkdateentry.c @@ -46,7 +46,9 @@ enum PROP_TIME_SEPARATOR, PROP_FORMAT, PROP_EDITABLE_WITH_CALENDAR, - PROP_CALENDAR_BUTTON_VISIBLE + PROP_CALENDAR_BUTTON_VISIBLE, + PROP_TIME_VISIBLE, + PROP_TIME_WITH_SECONDS }; static void gtk_date_entry_class_init (GtkDateEntryClass *klass); @@ -173,6 +175,20 @@ gtk_date_entry_class_init (GtkDateEntryClass *klass) "Determines if the calendar's button is visible or not.", TRUE, G_PARAM_READWRITE)); + + g_object_class_install_property (object_class, PROP_TIME_VISIBLE, + g_param_spec_boolean ("time-visible", + "TRUE to show the time part", + "Determines if the time part of the widget is visible or not.", + TRUE, + G_PARAM_READWRITE)); + + g_object_class_install_property (object_class, PROP_TIME_WITH_SECONDS, + g_param_spec_boolean ("time-with-seconds", + "TRUE to show the seconds in time part", + "Determines if the seconds in the time part of the widget are visible or not.", + TRUE, + G_PARAM_READWRITE)); } static void @@ -1264,7 +1280,6 @@ static void gtk_date_entry_set_property (GObject *object, guint property_id, const GValue *value, GParamSpec *pspec) { GtkDateEntry *date_entry = GTK_DATE_ENTRY (object); - GtkDateEntryPrivate *priv = GTK_DATE_ENTRY_GET_PRIVATE (date_entry); switch (property_id) @@ -1289,6 +1304,15 @@ gtk_date_entry_set_property (GObject *object, guint property_id, const GValue *v gtk_date_entry_set_calendar_button_visible (date_entry, g_value_get_boolean (value)); break; + case PROP_TIME_VISIBLE: + gtk_date_entry_set_time_visible (date_entry, g_value_get_boolean (value)); + break; + + case PROP_TIME_WITH_SECONDS: + priv->time_with_seconds = g_value_get_boolean (value); + gtk_date_entry_set_time_visible (date_entry, priv->time_is_visible); + break; + default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); break; @@ -1299,7 +1323,6 @@ static void gtk_date_entry_get_property (GObject *object, guint property_id, GValue *value, GParamSpec *pspec) { GtkDateEntry *date_entry = GTK_DATE_ENTRY (object); - GtkDateEntryPrivate *priv = GTK_DATE_ENTRY_GET_PRIVATE (date_entry); switch (property_id) @@ -1324,6 +1347,14 @@ gtk_date_entry_get_property (GObject *object, guint property_id, GValue *value, g_value_set_boolean (value, gtk_widget_get_visible (priv->btnCalendar)); break; + case PROP_TIME_VISIBLE: + g_value_set_boolean (value, priv->time_is_visible); + break; + + case PROP_TIME_WITH_SECONDS: + g_value_set_boolean (value, priv->time_with_seconds); + break; + default: G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec); break; -- 2.49.0