]> saetta.ns0.it Git - libgtkdateentry/commitdiff
Started glade integration.
authorAndrea Zagli <azagli@libero.it>
Sun, 27 Jun 2010 07:55:49 +0000 (09:55 +0200)
committerAndrea Zagli <azagli@libero.it>
Sun, 27 Jun 2010 07:55:49 +0000 (09:55 +0200)
configure.ac
src/gtkdateentry.c
src/gtkdateentry.h

index 53cae48880814f4ec32e976b8912cdb425227475..6299df3fcb3516267c2485a4c5ec328cdaa61e74 100644 (file)
@@ -1,5 +1,5 @@
 AC_PREREQ(2.59)
-AC_INIT([GtkDateEntry], [0.0.2], [azagli@inwind.it])
+AC_INIT([GtkDateEntry], [0.0.3], [azagli@libero.it])
 AC_CONFIG_SRCDIR([src/gtkdateentry.c])
 AC_CONFIG_HEADER([config.h])
 
@@ -31,6 +31,7 @@ GTK_DOC_CHECK(1.0)
 
 PKG_CHECK_MODULES(GTKDATEENTRY, [gtk+-2.0 >= 2.6.8
                                  libgtkmaskedentry >= 0.0.1])
+PKG_CHECK_EXISTS(gladeui-1.0 >= 3.2.0, [GLADEUI_FOUND=yes], [GLADEUI_FOUND=no])
 
 AC_SUBST(GTKDATEENTRY_CFLAGS)
 AC_SUBST(GTKDATEENTRY_LIBS)
@@ -45,4 +46,14 @@ AC_CONFIG_FILES([
   docs/reference/Makefile
   docs/reference/version.xml
 ])
+
+if test $GLADEUI_FOUND = yes; then
+AC_CONFIG_FILES([
+  glade/Makefile
+  glade/icons/Makefile
+  glade/icons/16x16/Makefile
+  glade/icons/22x22/Makefile
+])
+fi
+
 AC_OUTPUT
index 45baf051fac57f80276aa934e3b74e381a58742b..3f03f7ff3f48577b039c43ee83debcd752e2afd7 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * GtkDateEntry widget for GTK+
  *
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2005-2010 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -272,7 +272,7 @@ gtk_date_entry_set_format (GtkDateEntry *date, const gchar *format)
 
        gdate = gtk_date_entry_get_gdate (date);
 
-  priv->format = g_strdup (format);
+       priv->format = g_strdup (format);
        gtk_date_entry_change_mask (date);
        gtk_date_entry_set_date_gdate (date, gdate);
 
@@ -292,7 +292,7 @@ const gchar
 {
        GtkDateEntryPrivate *priv = GTK_DATE_ENTRY_GET_PRIVATE (date);
 
-  return gtk_entry_get_text (GTK_ENTRY (priv->day));
+       return gtk_entry_get_text (GTK_ENTRY (priv->day));
 }
 
 /**
@@ -819,7 +819,7 @@ btnCalendar_on_toggled (GtkToggleButton *togglebutton,
 
                        gtk_grab_add (wCalendar);
                        gtk_window_move (GTK_WINDOW (wCalendar), x, y);
-      gtk_widget_show (wCalendar);
+                       gtk_widget_show (wCalendar);
                        gtk_widget_grab_focus (priv->calendar);
                        popup_grab_on_window (wCalendar->window, gtk_get_current_event_time ());
                }
index 7c0d83d29f3f1e0a209b328b100ffc0264864c8c..ec0a4018ad6908ca9bc8b22c1734c3c3e24ef62f 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * GtkDateEntry widget for GTK+
  *
- * Copyright (C) 2005-2006 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2005-2010 Andrea Zagli <azagli@libero.it>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public