DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc
-if GLADEUI
+if GLADEUI_FOUND
SUBDIRS_GLADE = glade
else
SUBDIRS_GLADE =
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)
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
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 \
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
* 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"
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 ();
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++)
{
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;
}
}
/*
* 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
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);