]> saetta.ns0.it Git - libgtkdateentry/commitdiff
Added properties from time part.
authorAndrea Zagli <azagli@libero.it>
Mon, 25 Jul 2011 08:54:42 +0000 (10:54 +0200)
committerAndrea Zagli <azagli@libero.it>
Mon, 25 Jul 2011 08:54:42 +0000 (10:54 +0200)
Updated glade catalogue.

glade/gtkdateentry.xml
src/gtkdateentry.c

index b45a2e1eb74021d633d7fd7c24f3734e8092fb49..035c1ed98636c2dfeae4a288170c0a1115d3c790 100644 (file)
@@ -9,6 +9,8 @@
                                <property name="Format" id="format" />
                                <property name="Editable only from calendar" id="editable-from-calendar" />
                                <property name="Calendar's button visible" id="calendar-button-visible" />
+                               <property name="Time part visible" id="time-visible" />
+                               <property name="Seconds in time part visible" id="time-with-seconds" />
                        </properties>
                </glade-widget-class>
        </glade-widget-classes>
index ab78b94f7d5dddc3fde5b71f0a89e6a743656f34..1abb868b44cc64d65dadff5241beaca6b9388997 100644 (file)
@@ -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;