mirror of https://github.com/GNOME/gimp.git
160 lines
3.9 KiB
C
160 lines
3.9 KiB
C
/* The GIMP -- an image manipulation program
|
|
* Copyright (C) 1995-2001 Spencer Kimball, Peter Mattis and others
|
|
*
|
|
* text.c
|
|
* Copyright (C) 2003 Manish Singh <yosh@gimp.org>
|
|
*
|
|
* 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, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include "config.h"
|
|
|
|
#include <glib-object.h>
|
|
#include <pango/pangoft2.h>
|
|
|
|
/* PangoFT2 is assumed, so we should have this in our cflags */
|
|
#include <fontconfig/fontconfig.h>
|
|
|
|
#include "libgimpbase/gimpbase.h"
|
|
#include "libgimpconfig/gimpconfig.h"
|
|
|
|
#include "text-types.h"
|
|
|
|
#include "config/gimpcoreconfig.h"
|
|
|
|
#include "core/gimp.h"
|
|
|
|
#include "gimp-fonts.h"
|
|
#include "gimpfontlist.h"
|
|
|
|
|
|
#define CONF_FNAME "fonts.conf"
|
|
|
|
|
|
static gboolean gimp_fonts_load_fonts_conf (FcConfig *config,
|
|
gchar *fonts_conf);
|
|
static void gimp_fonts_add_directories (FcConfig *config,
|
|
const gchar *path_str);
|
|
|
|
|
|
void
|
|
gimp_fonts_init (Gimp *gimp)
|
|
{
|
|
g_return_if_fail (GIMP_IS_GIMP (gimp));
|
|
|
|
gimp->fonts = gimp_font_list_new (72.0, 72.0);
|
|
gimp_object_set_name (GIMP_OBJECT (gimp->fonts), "fonts");
|
|
|
|
g_signal_connect_swapped (gimp->config, "notify::font-path",
|
|
G_CALLBACK (gimp_fonts_load), gimp);
|
|
}
|
|
|
|
void
|
|
gimp_fonts_load (Gimp *gimp)
|
|
{
|
|
FcConfig *config;
|
|
gchar *fonts_conf;
|
|
gchar *path;
|
|
|
|
g_return_if_fail (GIMP_IS_FONT_LIST (gimp->fonts));
|
|
|
|
gimp_set_busy (gimp);
|
|
|
|
gimp_container_freeze (GIMP_CONTAINER (gimp->fonts));
|
|
|
|
gimp_container_clear (GIMP_CONTAINER (gimp->fonts));
|
|
|
|
config = FcInitLoadConfig ();
|
|
|
|
if (! config)
|
|
goto cleanup;
|
|
|
|
fonts_conf = gimp_personal_rc_file (CONF_FNAME);
|
|
if (! gimp_fonts_load_fonts_conf (config, fonts_conf))
|
|
goto cleanup;
|
|
|
|
fonts_conf = g_build_filename (gimp_sysconf_directory (), CONF_FNAME, NULL);
|
|
if (! gimp_fonts_load_fonts_conf (config, fonts_conf))
|
|
goto cleanup;
|
|
|
|
path = gimp_config_path_expand (gimp->config->font_path, TRUE, NULL);
|
|
gimp_fonts_add_directories (config, path);
|
|
g_free (path);
|
|
|
|
if (! FcConfigBuildFonts (config))
|
|
{
|
|
FcConfigDestroy (config);
|
|
goto cleanup;
|
|
}
|
|
|
|
FcConfigSetCurrent (config);
|
|
|
|
gimp_font_list_restore (GIMP_FONT_LIST (gimp->fonts));
|
|
|
|
cleanup:
|
|
gimp_container_thaw (GIMP_CONTAINER (gimp->fonts));
|
|
gimp_unset_busy (gimp);
|
|
}
|
|
|
|
void
|
|
gimp_fonts_reset (Gimp *gimp)
|
|
{
|
|
g_return_if_fail (GIMP_IS_GIMP (gimp));
|
|
|
|
if (gimp->no_fonts)
|
|
return;
|
|
|
|
/* We clear the default config here, so any subsequent fontconfig use will
|
|
* reinit the library with defaults. (Maybe we should call FcFini here too?)
|
|
*/
|
|
FcConfigSetCurrent (NULL);
|
|
}
|
|
|
|
static gboolean
|
|
gimp_fonts_load_fonts_conf (FcConfig *config,
|
|
gchar *fonts_conf)
|
|
{
|
|
gboolean ret = TRUE;
|
|
|
|
if (! FcConfigParseAndLoad (config, fonts_conf, FcFalse))
|
|
{
|
|
FcConfigDestroy (config);
|
|
ret = FALSE;
|
|
}
|
|
|
|
g_free (fonts_conf);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static void
|
|
gimp_fonts_add_directories (FcConfig *config,
|
|
const gchar *path_str)
|
|
{
|
|
GList *path;
|
|
GList *list;
|
|
|
|
g_return_if_fail (config != NULL);
|
|
g_return_if_fail (path_str != NULL);
|
|
|
|
path = gimp_path_parse (path_str, 256, TRUE, NULL);
|
|
|
|
for (list = path; list; list = list->next)
|
|
FcConfigAppFontAddDir (config, (gchar *) list->data);
|
|
|
|
gimp_path_free (path);
|
|
}
|
|
|