/* Pango * hebrew-ft2.c: * * Copyright (C) 1999 Red Hat Software * * 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., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ #include #include #include "pango-layout.h" #include "pango-engine.h" #include "pangoft2.h" #include "pango-utils.h" #include "hebrew-shaper.h" #define SCRIPT_ENGINE_NAME "HebrewScriptEngineFT2" #define MAX_CLUSTER_CHRS 20 static PangoEngineRange hebrew_ranges[] = { /* Hebrew */ { 0x0591, 0x05f4, "*" }, }; static PangoEngineInfo script_engines[] = { { SCRIPT_ENGINE_NAME, PANGO_ENGINE_TYPE_SHAPE, PANGO_RENDER_TYPE_FT2, hebrew_ranges, G_N_ELEMENTS(hebrew_ranges) } }; static gint n_script_engines = G_N_ELEMENTS (script_engines); /* * FT2 system script engine portion */ static PangoGlyph get_glyph (PangoFont *font, gunichar wc) { FT_Face face; FT_UInt index; face = pango_ft2_font_get_face (font); index = FT_Get_Char_Index (face, wc); if (index && index <= face->num_glyphs) return index; return 0; } /* This should be extended to support various encodings... */ gint get_glyph_num(PangoFont *font, gunichar uch) { return uch; } static void get_cluster_glyphs(PangoFont *font, gunichar cluster[], gint cluster_size, /* output */ gint glyph_num[], PangoGlyph glyph[], gint widths[], PangoRectangle ink_rects[]) { int i; for (i=0; inum_glyphs; pango_glyph_string_set_size (glyphs, index + 1); glyphs->glyphs[index].glyph = glyph; glyphs->glyphs[index].attr.is_cluster_start = is_combining ? 0 : 1; glyphs->log_clusters[index] = cluster_start; glyphs->glyphs[index].geometry.x_offset = x_offset; glyphs->glyphs[index].geometry.y_offset = y_offset; glyphs->glyphs[index].geometry.width = width; } static void add_cluster(PangoFont *font, PangoGlyphString *glyphs, int cluster_size, int cluster_start, int glyph_num[], PangoGlyph glyph[], int width[], int x_offset[], int y_offset[]) { int i; for (i=0; i= 0); g_return_if_fail (analysis != NULL); pango_glyph_string_set_size (glyphs, 0); p = text; while (p < text + length) { log_cluster = p; p = hebrew_shaper_get_next_cluster (p, text + length - p, /* output */ cluster, &cluster_size); get_cluster_glyphs(font, cluster, cluster_size, /* output */ glyph_num, glyph, glyph_width, ink_rects); /* Kern the glyphs! */ hebrew_shaper_get_cluster_kerning(cluster, cluster_size, /* Input and output */ ink_rects, glyph_width, /* output */ x_offset, y_offset); add_cluster(font, glyphs, cluster_size, log_cluster - text, glyph_num, glyph, glyph_width, x_offset, y_offset); } if (analysis->level % 2) hebrew_shaper_bidi_reorder(glyphs); } static PangoCoverage * hebrew_engine_get_coverage (PangoFont *font, PangoLanguage *lang) { return pango_font_get_coverage (font, lang); } static PangoEngine * hebrew_engine_ft2_new (void) { PangoEngineShape *result; result = g_new (PangoEngineShape, 1); result->engine.id = SCRIPT_ENGINE_NAME; result->engine.type = PANGO_ENGINE_TYPE_SHAPE; result->engine.length = sizeof (result); result->script_shape = hebrew_engine_shape; result->get_coverage = hebrew_engine_get_coverage; return (PangoEngine *)result; } /* The following three functions provide the public module API for * Pango */ #ifdef FT2_MODULE_PREFIX #define MODULE_ENTRY(func) _pango_hebrew_ft2_##func #else #define MODULE_ENTRY(func) func #endif void MODULE_ENTRY(script_engine_list) (PangoEngineInfo **engines, gint *n_engines) { *engines = script_engines; *n_engines = n_script_engines; } PangoEngine * MODULE_ENTRY(script_engine_load) (const char *id) { if (!strcmp (id, SCRIPT_ENGINE_NAME)) return hebrew_engine_ft2_new (); else return NULL; } void MODULE_ENTRY(script_engine_unload) (PangoEngine *engine) { }