mirror of
https://github.com/Gnucash/gnucash.git
synced 2024-11-27 03:10:23 -06:00
d31a23d369
Put common code in the top-level, and locale specific code in language specific subdirectories.
94 lines
3.2 KiB
C
94 lines
3.2 KiB
C
/*********************************************************************
|
|
* gncmod-locale-tax.c
|
|
* module definition/initialization for us tax info
|
|
*
|
|
* Copyright (c) 2001 Linux Developers Group, Inc.
|
|
*********************************************************************/
|
|
/********************************************************************\
|
|
* This program is free software; you can redistribute it and/or *
|
|
* modify it under the terms of the GNU General Public License as *
|
|
* published by the Free Software Foundation; either version 2 of *
|
|
* the License, or (at your option) any later version. *
|
|
* *
|
|
* This program is distributed in the hope that it will be useful, *
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
* GNU General Public License for more details. *
|
|
* *
|
|
* You should have received a copy of the GNU General Public License*
|
|
* along with this program; if not, contact: *
|
|
* *
|
|
* Free Software Foundation Voice: +1-617-542-5942 *
|
|
* 51 Franklin Street, Fifth Floor Fax: +1-617-542-2652 *
|
|
* Boston, MA 02110-1301, USA gnu@gnu.org *
|
|
* *
|
|
\********************************************************************/
|
|
|
|
|
|
#include <config.h>
|
|
#include <string.h>
|
|
#include <locale.h>
|
|
#include <gmodule.h>
|
|
#include <libguile.h>
|
|
|
|
#include "gnc-module.h"
|
|
#include "gnc-module-api.h"
|
|
|
|
GNC_MODULE_API_DECL(libgncmod_locale_tax)
|
|
|
|
/* version of the gnc module system interface we require */
|
|
int libgncmod_locale_tax_gnc_module_system_interface = 0;
|
|
|
|
/* module versioning uses libtool semantics. */
|
|
int libgncmod_locale_tax_gnc_module_current = 0;
|
|
int libgncmod_locale_tax_gnc_module_revision = 0;
|
|
int libgncmod_locale_tax_gnc_module_age = 0;
|
|
|
|
|
|
char *
|
|
libgncmod_locale_tax_gnc_module_path(void)
|
|
{
|
|
return g_strdup("gnucash/locale/tax");
|
|
}
|
|
|
|
char *
|
|
libgncmod_locale_tax_gnc_module_description(void)
|
|
{
|
|
return g_strdup("Locale dependent income tax information. Currently supported are 'us' and 'de_DE'. Default is 'us'");
|
|
}
|
|
|
|
static void
|
|
lmod(char * mn)
|
|
{
|
|
char * form = g_strdup_printf("(use-modules %s)\n", mn);
|
|
scm_c_eval_string(form);
|
|
g_free(form);
|
|
}
|
|
|
|
int
|
|
libgncmod_locale_tax_gnc_module_init(int refcount)
|
|
{
|
|
/* This is a very simple hack that loads the (new, special) German
|
|
tax definition file in a German locale, or (default) loads the
|
|
US tax file. */
|
|
# ifdef G_OS_WIN32
|
|
gchar *thislocale = g_win32_getlocale();
|
|
gboolean is_de_DE = (strncmp(thislocale, "de_DE", 5) == 0);
|
|
g_free(thislocale);
|
|
# else /* !G_OS_WIN32 */
|
|
const char *thislocale = setlocale(LC_ALL, NULL);
|
|
gboolean is_de_DE = (strncmp(thislocale, "de_DE", 5) == 0);
|
|
# endif /* G_OS_WIN32 */
|
|
if (is_de_DE)
|
|
lmod("(gnucash tax-de_DE)");
|
|
else
|
|
lmod("(gnucash tax-us)");
|
|
return TRUE;
|
|
}
|
|
|
|
int
|
|
libgncmod_locale_tax_gnc_module_end(int refcount)
|
|
{
|
|
return TRUE;
|
|
}
|