]> saetta.ns0.it Git - libgtkform/commitdiff
Better relocation.
authorAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Fri, 10 Apr 2015 11:46:29 +0000 (13:46 +0200)
committerAndrea Zagli <a.zagli@comune.scandicci.fi.it>
Fri, 10 Apr 2015 11:46:29 +0000 (13:46 +0200)
.gitignore
config.h.in [deleted file]
libgtkform/form.c
libgtkformui/gtkformdecoder.c

index faedc98ec98c7415979ef8499052aa699ead9afb..2efd53d6a8bb0fac7da5842234c8e6809ece0158 100644 (file)
@@ -24,6 +24,8 @@ Makefile.in.in
 Makevars
 aclocal.m4
 autom4te.cache/
+compile
+config.h.in
 config.guess
 config.log
 config.sub
diff --git a/config.h.in b/config.h.in
deleted file mode 100644 (file)
index 6299cd3..0000000
+++ /dev/null
@@ -1,105 +0,0 @@
-/* config.h.in.  Generated from configure.ac by autoheader.  */
-
-/* always defined to indicate that i18n is enabled */
-#undef ENABLE_NLS
-
-/* The prefix for our gettext translation domains. */
-#undef GETTEXT_PACKAGE
-
-/* Define to 1 if you have the `bind_textdomain_codeset' function. */
-#undef HAVE_BIND_TEXTDOMAIN_CODESET
-
-/* Define to 1 if you have the `dcgettext' function. */
-#undef HAVE_DCGETTEXT
-
-/* Define to 1 if you have the <dlfcn.h> header file. */
-#undef HAVE_DLFCN_H
-
-/* Define if the GNU gettext() function is already present or preinstalled. */
-#undef HAVE_GETTEXT
-
-/* Define to 1 if you have the <inttypes.h> header file. */
-#undef HAVE_INTTYPES_H
-
-/* Define if your <locale.h> file defines LC_MESSAGES. */
-#undef HAVE_LC_MESSAGES
-
-/* Define to 1 if you have the `localeconv' function. */
-#undef HAVE_LOCALECONV
-
-/* Define to 1 if you have the <locale.h> header file. */
-#undef HAVE_LOCALE_H
-
-/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
-   to 0 otherwise. */
-#undef HAVE_MALLOC
-
-/* Define to 1 if you have the <memory.h> header file. */
-#undef HAVE_MEMORY_H
-
-/* Define to 1 if you have the `setlocale' function. */
-#undef HAVE_SETLOCALE
-
-/* Define to 1 if you have the <stdint.h> header file. */
-#undef HAVE_STDINT_H
-
-/* Define to 1 if you have the <stdlib.h> header file. */
-#undef HAVE_STDLIB_H
-
-/* Define to 1 if you have the `strcasecmp' function. */
-#undef HAVE_STRCASECMP
-
-/* Define to 1 if you have the <strings.h> header file. */
-#undef HAVE_STRINGS_H
-
-/* Define to 1 if you have the <string.h> header file. */
-#undef HAVE_STRING_H
-
-/* Define to 1 if you have the `strtol' function. */
-#undef HAVE_STRTOL
-
-/* Define to 1 if you have the <sys/stat.h> header file. */
-#undef HAVE_SYS_STAT_H
-
-/* Define to 1 if you have the <sys/types.h> header file. */
-#undef HAVE_SYS_TYPES_H
-
-/* Define to 1 if you have the <unistd.h> header file. */
-#undef HAVE_UNISTD_H
-
-/* Define to the sub-directory in which libtool stores uninstalled libraries.
-   */
-#undef LT_OBJDIR
-
-/* Name of package */
-#undef PACKAGE
-
-/* Define to the address where bug reports for this package should be sent. */
-#undef PACKAGE_BUGREPORT
-
-/* Define to the full name of this package. */
-#undef PACKAGE_NAME
-
-/* Define to the full name and version of this package. */
-#undef PACKAGE_STRING
-
-/* Define to the one symbol short name of this package. */
-#undef PACKAGE_TARNAME
-
-/* Define to the home page for this package. */
-#undef PACKAGE_URL
-
-/* Define to the version of this package. */
-#undef PACKAGE_VERSION
-
-/* Define to 1 if you have the ANSI C header files. */
-#undef STDC_HEADERS
-
-/* Version number of package */
-#undef VERSION
-
-/* Define to empty if `const' does not conform to ANSI C. */
-#undef const
-
-/* Define to rpl_malloc if the replacement function should be used. */
-#undef malloc
index eaacdd1998d7e1bb0d96c7907a74082396dd1695..b678c8c086592731fd2a63dec1090ca6db61dcca 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2005-2013 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2005-2015 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
 #include <gmodule.h>
 #include <gtk/gtk.h>
 
+#ifdef G_OS_WIN32
+       #include <windows.h>
+#endif
+
 #include "form.h"
 
 #include "fieldboolean.h"
@@ -122,6 +126,30 @@ struct _GtkFormPrivate
 
 G_DEFINE_TYPE (GtkForm, gtk_form, G_TYPE_OBJECT)
 
+#ifdef G_OS_WIN32
+static HMODULE backend_dll = NULL;
+
+BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpReserved);
+
+BOOL WINAPI
+DllMain (HINSTANCE hinstDLL,
+         DWORD     fdwReason,
+         LPVOID    lpReserved)
+{
+       switch (fdwReason)
+               {
+                       case DLL_PROCESS_ATTACH:
+                               backend_dll = (HMODULE) hinstDLL;
+                               break;
+                       case DLL_THREAD_ATTACH:
+                       case DLL_THREAD_DETACH:
+                       case DLL_PROCESS_DETACH:
+                               break;
+               }
+       return TRUE;
+}
+#endif
+
 static void
 gtk_form_class_init (GtkFormClass *class)
 {
@@ -198,7 +226,7 @@ GtkForm
        gchar *moddir;
        gchar *p;
 
-       moddir = g_win32_get_package_installation_directory_of_module (NULL);
+       moddir = g_win32_get_package_installation_directory_of_module (backend_dll);
 
        p = g_strrstr (moddir, g_strdup_printf ("%c", G_DIR_SEPARATOR));
        if (p != NULL
@@ -2999,7 +3027,7 @@ gtk_form_load_modules (GtkForm *form)
                        gchar *moddir;
                        gchar *p;
 
-                       moddir = g_win32_get_package_installation_directory_of_module (NULL);
+                       moddir = g_win32_get_package_installation_directory_of_module (backend_dll);
 
                        p = g_strrstr (moddir, g_strdup_printf ("%c", G_DIR_SEPARATOR));
                        if (p != NULL
index 428217c2dea14c43b0da6d83e77baf4f95791971..f561ff04b75d9dae650856c7fa945325a535c5cc 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * GtkFormDecoder widget for GTK+
  *
- * Copyright (C) 2011-2013 Andrea Zagli <azagli@libero.it>
+ * Copyright (C) 2011-2015 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
 
 #include <glib/gi18n-lib.h>
 
+#ifdef G_OS_WIN32
+       #include <windows.h>
+#endif
+
 #include <sql-parser/gda-sql-parser.h>
 
 #include <libgdaex/libgdaex.h>
@@ -123,6 +127,30 @@ G_DEFINE_TYPE_WITH_CODE (GtkFormDecoder, gtk_form_decoder, GTK_TYPE_BIN,
                          G_IMPLEMENT_INTERFACE (GDAEX_QUERY_EDITOR_TYPE_IWIDGET,
                                                 gtk_form_decoder_gdaex_query_editor_iwidget_interface_init));
 
+#ifdef G_OS_WIN32
+static HMODULE backend_dll = NULL;
+
+BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpReserved);
+
+BOOL WINAPI
+DllMain (HINSTANCE hinstDLL,
+         DWORD     fdwReason,
+         LPVOID    lpReserved)
+{
+       switch (fdwReason)
+               {
+                       case DLL_PROCESS_ATTACH:
+                               backend_dll = (HMODULE) hinstDLL;
+                               break;
+                       case DLL_THREAD_ATTACH:
+                       case DLL_THREAD_DETACH:
+                       case DLL_PROCESS_DETACH:
+                               break;
+               }
+       return TRUE;
+}
+#endif
+
 static void
 gtk_form_decoder_class_init (GtkFormDecoderClass *klass)
 {
@@ -374,7 +402,7 @@ GtkWidget
        gchar *moddir;
        gchar *p;
 
-       moddir = g_win32_get_package_installation_directory_of_module (NULL);
+       moddir = g_win32_get_package_installation_directory_of_module (backend_dll);
 
        p = g_strrstr (moddir, g_strdup_printf ("%c", G_DIR_SEPARATOR));
        if (p != NULL