/* GConf * Copyright (C) 1999, 2000 Red Hat Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ #ifndef GCONF_GCONF_LOCALE_H #define GCONF_GCONF_LOCALE_H #include G_BEGIN_DECLS /* * This thing caches the fallback list for a locale string. */ typedef struct _GConfLocaleCache GConfLocaleCache; GConfLocaleCache* gconf_locale_cache_new (void); void gconf_locale_cache_free (GConfLocaleCache* cache); void gconf_locale_cache_expire (GConfLocaleCache* cache, /* >= max_age is deleted */ guint max_age_exclusive_in_seconds); /* This API is annoying, but hey it's all GConf internal. No users will see it. We need it for thread safety without the penalty of copying a string vector every time we get the fallback list. */ typedef struct _GConfLocaleList GConfLocaleList; struct _GConfLocaleList { const gchar** list; }; void gconf_locale_list_ref (GConfLocaleList* list); void gconf_locale_list_unref (GConfLocaleList* list); /* for thread safety, this is going to increment the reference count on the locale list. You must unref() when done. This automatically adds a cache entry if necessary. locale may be NULL, in which case it just gets converted to "C" */ GConfLocaleList* gconf_locale_cache_get_list (GConfLocaleCache* cache, const gchar* locale); /* Use this if you don't care about the locale cache */ gchar** gconf_split_locale (const gchar* locale); G_END_DECLS #endif