2007-04-09 04:02:40 +02:00
|
|
|
/*
|
2008-12-28 09:09:59 +01:00
|
|
|
* Copyright (C) 2006 Evgeniy Stepanov <eugeni.stepanov@gmail.com>
|
|
|
|
*
|
|
|
|
* This file is part of libass.
|
|
|
|
*
|
|
|
|
* libass 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.
|
|
|
|
*
|
|
|
|
* libass 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 libass; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2007-04-09 04:02:40 +02:00
|
|
|
|
2008-03-21 06:32:23 +01:00
|
|
|
#ifndef LIBASS_FONTCONFIG_H
|
|
|
|
#define LIBASS_FONTCONFIG_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "ass_types.h"
|
2009-07-19 21:33:29 +02:00
|
|
|
#include "ass.h"
|
2008-03-21 06:32:23 +01:00
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_FREETYPE_H
|
2007-04-09 04:02:40 +02:00
|
|
|
|
2008-12-28 09:09:59 +01:00
|
|
|
#ifdef CONFIG_FONTCONFIG
|
2007-04-09 04:02:40 +02:00
|
|
|
#include <fontconfig/fontconfig.h>
|
|
|
|
#endif
|
|
|
|
|
2009-09-02 03:23:51 +02:00
|
|
|
typedef struct fc_instance FCInstance;
|
2007-04-09 04:02:40 +02:00
|
|
|
|
2009-09-02 03:23:51 +02:00
|
|
|
FCInstance *fontconfig_init(ASS_Library *library,
|
|
|
|
FT_Library ftlibrary, const char *family,
|
|
|
|
const char *path, int fc, const char *config,
|
|
|
|
int update);
|
|
|
|
char *fontconfig_select(ASS_Library *library, FCInstance *priv,
|
2009-07-14 00:43:25 +02:00
|
|
|
const char *family, int treat_family_as_pattern,
|
|
|
|
unsigned bold, unsigned italic, int *index,
|
|
|
|
uint32_t code);
|
2009-09-02 03:23:51 +02:00
|
|
|
void fontconfig_done(FCInstance *priv);
|
|
|
|
int fontconfig_update(FCInstance *priv);
|
2007-04-09 04:02:40 +02:00
|
|
|
|
2009-07-11 17:48:50 +02:00
|
|
|
#endif /* LIBASS_FONTCONFIG_H */
|