]> saetta.ns0.it Git - libgtkdateentry/commitdiff
More integration with win32.
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Fri, 20 May 2011 08:11:56 +0000 (10:11 +0200)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Fri, 20 May 2011 08:11:56 +0000 (10:11 +0200)
Makefile.am
configure.ac
src/Makefile.am
src/gtkdateentry.c
tests/plugin_gtkform.c

index a07041849a225a0e46d9077889ed74aad5321c43..2623cb7a29400e8f0ce29ca24399f13a06b08267 100644 (file)
@@ -2,7 +2,7 @@ ACLOCAL_AMFLAGS = -I m4
 
 DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
 
-if GLADEUI
+if GLADEUI_FOUND
 SUBDIRS_GLADE = glade
 else
 SUBDIRS_GLADE =
index 8be725a45198874c1d6a506e70004869d6403879..6a27c746f7ed43c9bf9fa6822ab0ae8f03a3f91d 100644 (file)
@@ -30,11 +30,11 @@ AC_STRUCT_TM
 GTK_DOC_CHECK(1.0)
 
 PKG_CHECK_MODULES(GTKDATEENTRY, [gtk+-2.0 >= 2.6.8
-                                 libgtkmaskedentry >= 0.0.1])
+                                 libgtkmaskedentry >= 0.0.3])
 PKG_CHECK_EXISTS(gladeui-1.0 >= 3.2.0, [GLADEUI_FOUND=yes], [GLADEUI_FOUND=no])
 PKG_CHECK_EXISTS(libgtkform >= 0.2.0, [LIBGTKFORM_FOUND=yes], [LIBGTKFORM_FOUND=no])
 
-AM_CONDITIONAL(GLADEUI, test $GLADEUI_FOUND = yes)
+AM_CONDITIONAL(GLADEUI_FOUND, test $GLADEUI_FOUND = yes)
 AM_CONDITIONAL(LIBGTKFORM_FOUND, test $LIBGTKFORM_FOUND = yes)
 
 AC_SUBST(GTKDATEENTRY_CFLAGS)
@@ -45,9 +45,22 @@ PKG_CHECK_MODULES(GTKFORM, libgtkform >= 0.2.0)
 
 AC_SUBST(GTKFORM_CFLAGS)
 AC_SUBST(GTKFORM_LIBS)
-AC_SUBST(LIBGTKFORM_FOUND)
 fi
 
+dnl ******************************
+dnl Check for Operating System
+dnl ******************************
+
+platform_win32=no
+
+case "$host" in
+*-mingw*)
+    platform_win32=yes
+    ;;
+esac
+
+AM_CONDITIONAL(PLATFORM_WIN32, [test $platform_win32 = yes])
+
 # Output files
 AC_CONFIG_FILES([
   libgtkdateentry.pc
index e30cc51852c62cf3a78c8e97131fb7f5ec50a8e9..367eac292c48f055a5c769645fe135f4b13b632e 100644 (file)
@@ -16,6 +16,14 @@ GTKFORM_H =
 libgtkformmodulesdir =
 endif
 
+if PLATFORM_WIN32
+libmodulesext = -0.dll
+libmodulesdir = $(bindir)
+else
+libmodulesext = .so
+libmodulesdir = $(libdir)
+endif
+
 lib_LTLIBRARIES = libgtkdateentry.la
 
 libgtkdateentry_la_SOURCES = gtkdateentry.c \
@@ -26,13 +34,13 @@ libgtkdateentry_la_LDFLAGS = -no-undefined
 include_HEADERS = gtkdateentry.h \
                   $(GTKFORM_H)
 
+if LIBGTKFORM_FOUND
 install-exec-hook:
-       if test "x$(LIBGTKFORM_FOUND)" = "xyes"; then \
-               cd $(libgtkformmodulesdir) && \
-               ln -s -f $(libdir)/libgtkdateentry.so .; \
-       fi
+       cd $(libgtkformmodulesdir) && \
+               ln -s -f $(libmodulesdir)/libgtkdateentry$(libmodulesext) .
+endif
 
+if LIBGTKFORM_FOUND
 uninstall-hook:
-       if test "x$(LIBGTKFORM_FOUND)" = "xyes"; then \
-               rm -f $(libgtkformmodulesdir)/libgtkdateentry.so
-       fi
+       rm -f $(libgtkformmodulesdir)/libgtkdateentry$(libmodulesext)
+endif
index f50c0b986af5dbb4422b70ad4cdf1909e3094752..a242f306d48593238bef11172912d0bf0a2cb904 100644 (file)
  * Boston, MA 02111-1307, USA.
  */
 
+#ifdef HAVE_CONFIG_H
+       #include <config.h>
+#endif
+
 #include <string.h>
-#include <langinfo.h>
 
 #include <gdk/gdkkeysyms.h>
-
 #include <gtk/gtk.h>
 
+#ifdef G_OS_WIN32
+#include <windows.h>
+#include <winnls.h>
+#else
+#include <langinfo.h>
+#endif
+
 #include <gtkmaskedentry.h>
 
 #include "gtkdateentry.h"
@@ -155,9 +164,6 @@ gtk_date_entry_init (GtkDateEntry *date)
 
        GtkDateEntryPrivate *priv = GTK_DATE_ENTRY_GET_PRIVATE (date);
 
-       /* TO DO
-        * read separator and format from locale settings
-        */
        priv->separator = gtk_date_entry_get_separator_from_locale ();
        priv->format = gtk_date_entry_get_format_from_locale ();
 
@@ -1083,7 +1089,23 @@ static gchar
 
        fmt = NULL;
 
+#ifdef G_OS_WIN32
+
+       gchar lpLCData[30];
+
+       if (GetLocaleInfo (LOCALE_USER_DEFAULT, LOCALE_SSHORTDATE, (LPTSTR)&lpLCData, 30) == 0)
+               {
+                       g_warning ("Unable to get locale information");
+                       return NULL;
+               }
+       lfmt = g_strdup ((const gchar *)&lpLCData);
+
+#else
+
        lfmt = nl_langinfo (D_FMT);
+
+#endif
+
        l = strlen (lfmt);
        for (i = 0; i < l; i++)
                {
@@ -1117,23 +1139,41 @@ static gchar
 
        fmt = NULL;
 
+#ifdef G_OS_WIN32
+
+       gchar lpLCData[30];
+
+       if (GetLocaleInfo (LOCALE_USER_DEFAULT, LOCALE_SSHORTDATE, (LPTSTR)&lpLCData, 30) == 0)
+               {
+                       g_warning ("Unable to get locale information");
+                       return NULL;
+               }
+       lfmt = g_strdup ((const gchar *)&lpLCData);
+
+#else
+
        lfmt = nl_langinfo (D_FMT);
+
+#endif
+
        l = strlen (lfmt);
        for (i = 0; i < l; i++)
                {
                        switch (lfmt[i])
                                {
                                        case 'd':
-                                               fmt = g_strconcat (fmt == NULL ? "" : fmt, "d", NULL);
+                                       case 'D':
+                                               fmt = g_strconcat (fmt == NULL ? "" : fmt, fmt != NULL && strchr (fmt, 'd') != 0 ? "" : "d", NULL);
                                                break;
 
                                        case 'm':
-                                               fmt = g_strconcat (fmt == NULL ? "" : fmt, "m", NULL);
+                                       case 'M':
+                                               fmt = g_strconcat (fmt == NULL ? "" : fmt, fmt != NULL && strchr (fmt, 'm') != 0 ? "" : "m", NULL);
                                                break;
 
                                        case 'y':
                                        case 'Y':
-                                               fmt = g_strconcat (fmt == NULL ? "" : fmt, "Y", NULL);
+                                               fmt = g_strconcat (fmt == NULL ? "" : fmt, fmt != NULL && strchr (fmt, 'Y') != 0 ? "" : "Y", NULL);
                                                break;
                                }
                }
index 87f5bc6fb3b0e481986cb07a44d6f2fec7c05185..ae63640a7398e5f6c54e10f918f3281d99420162 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * GtkDateEntry widget test - plugin for libgtkform
- * Copyright (C) 2010 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2010-2011 Andrea Zagli <azagli@libero.it>
  *
  * This software is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -55,6 +55,13 @@ main (int argc, char **argv)
 
        gtk_init (&argc, &argv);
 
+#ifdef G_OS_WIN32
+       gchar *libname = "libgtkmaskedentry-0.dll";
+       g_module_open (g_build_filename (g_getenv ("LIBGTKFORM_MODULESDIR"), libname, NULL), G_MODULE_BIND_LAZY);
+       libname = g_strdup ("libgtkdateentry-0.dll");
+       g_module_open (g_build_filename (g_getenv ("LIBGTKFORM_MODULESDIR"), libname, NULL), G_MODULE_BIND_LAZY);
+#endif
+
        error = NULL;
        builder = gtk_builder_new ();
        gtk_builder_add_from_file (builder, "plugin_gtkform.ui", &error);