platform/upstream/pango.git
15 years agoIt's not a programming error if face->family is NULL or family->fontmap is
Behdad Esfahbod [Sat, 31 Jan 2009 23:35:48 +0000 (23:35 +0000)]
It's not a programming error if face->family is NULL or family->fontmap is

2009-01-31  Behdad Esfahbod  <behdad@gnome.org>

        * pango/pangofc-fontmap.c (pango_fc_face_describe),
        (pango_fc_face_list_sizes), (pango_fc_family_list_faces):
        It's not a programming error if face->family is NULL or
        family->fontmap is NULL.  Be graceful.

svn path=/trunk/; revision=2823

15 years agoTypo
Behdad Esfahbod [Sat, 31 Jan 2009 20:44:53 +0000 (20:44 +0000)]
Typo

svn path=/trunk/; revision=2822

15 years agoBug 569763 – pango doesn't like font descriptions without family!
Behdad Esfahbod [Fri, 30 Jan 2009 05:04:47 +0000 (05:04 +0000)]
Bug 569763 – pango doesn't like font descriptions without family!

2009-01-30  Behdad Esfahbod  <behdad@gnome.org>

        Bug 569763 – pango doesn't like font descriptions without family!

        * pango/pangofc-fontmap.c (pango_fc_make_pattern): Don't crash is desc
        doesn't have family set.

svn path=/trunk/; revision=2821

15 years agoRemove default font family and size. This means default is "serif 12" now,
Behdad Esfahbod [Fri, 30 Jan 2009 05:04:35 +0000 (05:04 +0000)]
Remove default font family and size. This means default is "serif 12" now,

2009-01-29  Behdad Esfahbod  <behdad@gnome.org>

        * pango-view/viewer-render.c (make_layout), (get_options_string):
        Remove default font family and size.  This means default is "serif 12"
now, instead of previous "sans 18".

svn path=/trunk/; revision=2820

15 years agoRemove ClassDef->Defined field. This is the comment accompanying it:
Behdad Esfahbod [Thu, 29 Jan 2009 09:20:08 +0000 (09:20 +0000)]
Remove ClassDef->Defined field. This is the comment accompanying it:

2009-01-29  Behdad Esfahbod  <behdad@gnome.org>

        * pango/opentype/harfbuzz-open.h:
        * pango/opentype/harfbuzz-gdef.c (Make_ClassRange),
        (HB_GDEF_Build_ClassDefinition):
        * pango/opentype/harfbuzz-gpos.c (Load_PosClassRule),
        (Load_ChainPosClassRule):
        * pango/opentype/harfbuzz-gsub.c (Load_SubClassRule),
        (Load_ChainSubClassRule):
        * pango/opentype/harfbuzz-open.c (Load_ClassDef1),
        (Load_ClassDef2), (_HB_OPEN_Load_ClassDefinition),
        (_HB_OPEN_Load_EmptyClassDefinition),
        (_HB_OPEN_Free_ClassDefinition):
        Remove ClassDef->Defined field.  This is the comment accompanying it:

          The `Defined' field is not defined in the OpenType specification
          but apparently needed for processing fonts like trado.ttf: This
          font refers to a class which contains not a single element.  We
          map such classes to class 0.

        The comment is correct that trado.ttf (MS Traditional Arabic) uses
        such classes.  However, in my testing I couldn't identify any
        problems with the font if the special handling is removed.  I also
        processed as many fonts as I could get my hand on and trado.ttf was
        the only not-totally-broken font hitting the special-case code.
        DejaVu fonts hit it too, but I'm sure they do not require the
        special-handling code.  Most probably, that code introduces bugs
        in them.

        The special-casing was consuming lots of memory.  EIGHT MEGABYTES
        for loading DejaVu Sans!  While this could be complete fixed, I
        decided to remove the special-handling code altogether.  I don't
        think it will make any real difference, and if it does, we'll fix
        fonts.  Such hacks will not be in harfbuzz-ng anyway.

        Bug originally reported by nsf.

svn path=/trunk/; revision=2819

15 years agoUse calloc(), instead of malloc()ing and memset()ing.
Behdad Esfahbod [Thu, 29 Jan 2009 09:19:56 +0000 (09:19 +0000)]
Use calloc(), instead of malloc()ing and memset()ing.

2009-01-29  Behdad Esfahbod  <behdad@gnome.org>

        * pango/opentype/harfbuzz-impl.c (_hb_alloc): Use calloc(),
        instead of malloc()ing and memset()ing.

svn path=/trunk/; revision=2818

15 years agoRemove old cruft.
Behdad Esfahbod [Thu, 29 Jan 2009 09:19:43 +0000 (09:19 +0000)]
Remove old cruft.

2009-01-29  Behdad Esfahbod  <behdad@gnome.org>

        * pango/opentype/harfbuzz-dump-main.c (main): Remove old cruft.

svn path=/trunk/; revision=2817

15 years agoDon't disassociate family from fontmap during cache_clear().
Behdad Esfahbod [Thu, 29 Jan 2009 09:19:33 +0000 (09:19 +0000)]
Don't disassociate family from fontmap during cache_clear().

2009-01-29  Behdad Esfahbod  <behdad@gnome.org>

        * pango/pangofc-fontmap.c (pango_fc_font_map_fini),
        (pango_fc_font_map_shutdown): Don't disassociate family from fontmap
        during cache_clear().

svn path=/trunk/; revision=2816

15 years agoAllocate all array rows in a single ALLOC call. Saves over 2000 alloc
Behdad Esfahbod [Thu, 29 Jan 2009 09:19:20 +0000 (09:19 +0000)]
Allocate all array rows in a single ALLOC call. Saves over 2000 alloc

2009-01-29  Behdad Esfahbod  <behdad@gnome.org>

        * pango/opentype/harfbuzz-gpos.c (Load_BaseArray), (Free_BaseArray):
        Allocate all array rows in a single ALLOC call.  Saves over 2000
        alloc calls when loading DejaVu Sans!

svn path=/trunk/; revision=2815

15 years agoBug 560792 – Make PangoLayoutLine with line->layout==NULL renderable
Behdad Esfahbod [Wed, 28 Jan 2009 23:41:59 +0000 (23:41 +0000)]
Bug 560792 – Make PangoLayoutLine with line->layout==NULL renderable

2009-01-28  Behdad Esfahbod  <behdad@gnome.org>

        Bug 560792 – Make PangoLayoutLine with line->layout==NULL renderable

        * pango/pango-renderer.c (pango_renderer_draw_layout_line),
        (pango_renderer_draw_glyph_item), (pango_renderer_set_matrix):
        Handle line->layout == NULL.

svn path=/trunk/; revision=2814

15 years agoBug 567392 – Abiword crashes in pango when opening document with certain
Behdad Esfahbod [Wed, 28 Jan 2009 23:27:13 +0000 (23:27 +0000)]
Bug 567392 – Abiword crashes in pango when opening document with certain

2009-01-28  Behdad Esfahbod  <behdad@gnome.org>

        Bug 567392 – Abiword crashes in pango when opening document with
        certain locales

        * pango/pango-ot-info.c (pango_ot_info_find_language),
        (pango_ot_info_find_feature), (pango_ot_info_list_languages),
        (pango_ot_info_list_features): Protect against more broken fonts.

svn path=/trunk/; revision=2813

15 years agoFix warning
Behdad Esfahbod [Wed, 28 Jan 2009 23:27:05 +0000 (23:27 +0000)]
Fix warning

svn path=/trunk/; revision=2812

15 years agoBump version to 1.23.0. Not releasing yet.
Behdad Esfahbod [Wed, 28 Jan 2009 23:26:57 +0000 (23:26 +0000)]
Bump version to 1.23.0. Not releasing yet.

2009-01-28  Behdad Esfahbod  <behdad@gnome.org>

        * configure.in: Bump version to 1.23.0.  Not releasing yet.

svn path=/trunk/; revision=2811

15 years agoUpdate doc templates
Behdad Esfahbod [Wed, 28 Jan 2009 22:10:49 +0000 (22:10 +0000)]
Update doc templates

svn path=/trunk/; revision=2810

15 years agoBug 566727 – PangoFontsetLazy
Behdad Esfahbod [Wed, 28 Jan 2009 22:08:18 +0000 (22:08 +0000)]
Bug 566727 – PangoFontsetLazy

2009-01-27  Behdad Esfahbod  <behdad@gnome.org>

        Bug 566727 – PangoFontsetLazy

        * pango/pangofc-fontmap.c: Rework caching.

        Cache FcFontSort results separately from PangoFontset's.

        Add PangoFcFontset which is lazy and does not create fonts until it
        really needs to.

        Use FcFontMatch() and only do FcFontSort() if fallback fonts are
        needed.

svn path=/trunk/; revision=2809

15 years agoBug 567165 – Apply all pattern matrices
Behdad Esfahbod [Wed, 28 Jan 2009 22:08:10 +0000 (22:08 +0000)]
Bug 567165 – Apply all pattern matrices

2009-01-09  Behdad Esfahbod  <behdad@gnome.org>

        Bug 567165 – Apply all pattern matrices

        * pango/pangocairo-fcfont.c (_pango_cairo_fc_font_new):
        * pango/pangofc-fontmap.c (pango_fc_font_map_new_font):
        Apply all FC_MATRIX values, not just the first one.  Fixes synthetic
        italic rotated text with ft2 and xft backends.  Can't believe no one
        ever noticed that they are broken...

svn path=/trunk/; revision=2808

15 years agoFix typo.
Behdad Esfahbod [Wed, 28 Jan 2009 22:08:03 +0000 (22:08 +0000)]
Fix typo.

svn path=/trunk/; revision=2807

15 years agoFix make check
Behdad Esfahbod [Wed, 28 Jan 2009 22:07:54 +0000 (22:07 +0000)]
Fix make check

svn path=/trunk/; revision=2806

15 years agoAutogenerage pango.types. Remove it from repository, but dist it.
Behdad Esfahbod [Wed, 28 Jan 2009 22:07:46 +0000 (22:07 +0000)]
Autogenerage pango.types. Remove it from repository, but dist it.

2009-01-09  Behdad Esfahbod  <behdad@gnome.org>

        * docs/Makefile.am:
        * docs/pango.types:
        Autogenerage pango.types.  Remove it from repository, but dist it.

svn path=/trunk/; revision=2805

15 years agoChange PangoFc font loading API such that PangoContext is not passed down.
Behdad Esfahbod [Wed, 28 Jan 2009 22:07:38 +0000 (22:07 +0000)]
Change PangoFc font loading API such that PangoContext is not passed down.

2009-01-09  Behdad Esfahbod  <behdad@gnome.org>

        * docs/pango-sections.txt:
        * docs/tmpl/pangofc-fontmap.sgml:
        * docs/tmpl/text-attributes.sgml:
        * pango/pangocairo-fc.h:
        * pango/pangocairo-fcfont.c (get_font_size), (get_gravity_class),
        (get_gravity), (_pango_cairo_fc_font_new):
        * pango/pangocairo-fcfontmap.c
        (pango_cairo_fc_font_map_font_key_substitute),
        (pango_cairo_fc_font_map_create_font),
        (pango_cairo_fc_font_map_class_init):
        * pango/pangofc-font.c (_pango_fc_font_get_font_key),
        (_pango_fc_font_set_font_key):
        * pango/pangofc-fontmap.c (pango_fc_font_key_equal),
        (pango_fc_font_key_hash), (pango_fc_font_key_free),
        (pango_fc_font_key_copy), (get_context_matrix),
        (pango_fc_font_key_init), (pango_fc_font_key_get_pattern),
        (pango_fc_font_key_get_matrix),
        (pango_fc_font_key_get_context_key), (pango_fc_font_map_init),
        (pango_fc_font_map_class_init), (pango_fc_font_map_add),
        (_pango_fc_font_map_remove), (pango_fc_make_pattern),
        (pango_fc_font_map_new_font), (pango_fc_default_substitute),
        (pango_fc_font_map_get_patterns), (pango_fc_font_map_load_fontset):
        * pango/pangofc-fontmap.h:
        * pango/pangofc-private.h:
        Change PangoFc font loading API such that PangoContext is not passed
        down.  We use a new opaque struct called PangoFcFontKey.  This struct
        is in fact our font hash key.  This avoids problems where previously
        we were using context members that were not necessarily considered
        by the pangofc layer when caching.
        This is in preparation for lazy loading of fonts in the pangofc fontmap.

svn path=/trunk/; revision=2804

15 years agoRemove desc argument from _pango_cairo_font_private_initialize(). Replace
Behdad Esfahbod [Wed, 28 Jan 2009 22:07:30 +0000 (22:07 +0000)]
Remove desc argument from _pango_cairo_font_private_initialize(). Replace

2009-01-09  Behdad Esfahbod  <behdad@gnome.org>

        * pango/pangocairo-atsuifont.c (_pango_cairo_atsui_font_new):
        * pango/pangocairo-fcfont.c (_pango_cairo_fc_font_new):
        * pango/pangocairo-font.c (_pango_cairo_font_private_initialize):
        * pango/pangocairo-private.h:
        * pango/pangocairo-win32font.c (_pango_cairo_win32_font_new):
        Remove desc argument from _pango_cairo_font_private_initialize().
        Replace it with gravity, the only thing from desc we actually needed.
        This is in preparation for lazy loading of fonts in the pangofc fontmap.

svn path=/trunk/; revision=2803

15 years agoAvoid context key comparison if any of the keys is NULL.
Behdad Esfahbod [Wed, 28 Jan 2009 22:07:21 +0000 (22:07 +0000)]
Avoid context key comparison if any of the keys is NULL.

2009-01-09  Behdad Esfahbod  <behdad@gnome.org>

        * pango/pangofc-fontmap.c (font_hash_key_equal):
        Avoid context key comparison if any of the keys is NULL.

svn path=/trunk/; revision=2802

15 years agoRemove context argument from _pango_cairo_font_private_initialize().
Behdad Esfahbod [Wed, 28 Jan 2009 22:07:13 +0000 (22:07 +0000)]
Remove context argument from _pango_cairo_font_private_initialize().

2009-01-09  Behdad Esfahbod  <behdad@gnome.org>

        * pango/pangocairo-atsuifont.c (_pango_cairo_atsui_font_new):
        * pango/pangocairo-fcfont.c (_pango_cairo_fc_font_new):
        * pango/pangocairo-font.c (_pango_cairo_font_private_initialize):
        * pango/pangocairo-private.h:
        * pango/pangocairo-win32font.c (_pango_cairo_win32_font_new):
        Remove context argument from _pango_cairo_font_private_initialize().
        Replace it with pango_ctm and font_options, the only things from
        context we actually needed.  This is in preparation for lazy loading
        of fonts in the pangofc fontmap.

svn path=/trunk/; revision=2801

15 years ago[pangocairo-fc] Remove unused member
Behdad Esfahbod [Wed, 28 Jan 2009 22:07:04 +0000 (22:07 +0000)]
[pangocairo-fc] Remove unused member

svn path=/trunk/; revision=2800

15 years agoMinor.
Behdad Esfahbod [Tue, 27 Jan 2009 12:23:31 +0000 (12:23 +0000)]
Minor.

svn path=/trunk/; revision=2799

15 years agoBug 567934 – Add introspection support inside pango
Johan Dahlin [Tue, 20 Jan 2009 22:38:14 +0000 (22:38 +0000)]
Bug 567934 – Add introspection support inside pango

2009-01-20  Johan Dahlin  <jdahlin@async.com.br>

    Bug 567934 – Add introspection support inside pango

    * configure.in:
    * pango/Makefile.am:
    * pango/pango-attributes.c:
    * pango/pango-layout.c:

svn path=/trunk/; revision=2798

15 years agoProtect against a NULL context.
Behdad Esfahbod [Thu, 8 Jan 2009 07:34:49 +0000 (07:34 +0000)]
Protect against a NULL context.

2009-01-08  Behdad Esfahbod  <behdad@gnome.org>

        * pango/pangofc-fontmap.c (pango_fc_font_map_get_patterns):
        Protect against a NULL context.

svn path=/trunk/; revision=2797

15 years agoImprove warning message.
Behdad Esfahbod [Thu, 8 Jan 2009 07:00:52 +0000 (07:00 +0000)]
Improve warning message.

2009-01-08  Behdad Esfahbod  <behdad@gnome.org>

        * pango/pango-context.c (itemize_state_process_run):
        Improve warning message.

svn path=/trunk/; revision=2796

15 years agoBug 549532 – Correction to the sample string for Hindi in
Behdad Esfahbod [Thu, 8 Jan 2009 06:17:03 +0000 (06:17 +0000)]
Bug 549532 – Correction to the sample string for Hindi in

2009-01-08  Behdad Esfahbod  <behdad@gnome.org>

        Bug 549532 – Correction to the sample string for Hindi in
        pango-language-sample-table.h

        * pango/pango-language-sample-table.h:
        Improve Hindi sample text.

svn path=/trunk/; revision=2795

15 years agoBug 566726 – Minor optimization
Behdad Esfahbod [Thu, 8 Jan 2009 01:33:23 +0000 (01:33 +0000)]
Bug 566726 – Minor optimization

2009-01-07  Behdad Esfahbod  <behdad@gnome.org>

        Bug 566726 – Minor optimization

        * pango/pango-context.c (get_shaper_and_font):
        Don't walk the fontset if there are no engines.

svn path=/trunk/; revision=2794

15 years agoBug 566941 – Add PANGO_ATTRIBUTE_INDEX_FROM_TEXT_BEGINNING and
Behdad Esfahbod [Wed, 7 Jan 2009 23:45:22 +0000 (23:45 +0000)]
Bug 566941 – Add PANGO_ATTRIBUTE_INDEX_FROM_TEXT_BEGINNING and

2009-01-07  Behdad Esfahbod  <behdad@gnome.org>

        Bug 566941 – Add PANGO_ATTRIBUTE_INDEX_FROM_TEXT_BEGINNING and
        PANGO_ATTRIBUTE_INDEX_TO_TEXT_END

        * docs/pango-sections.txt:
        * docs/tmpl/text-attributes.sgml:
        * pango/pango-attributes.c (pango_attribute_init):
        * pango/pango-attributes.h:
        Add two new public macros:

                PANGO_ATTRIBUTE_INDEX_FROM_TEXT_BEGINNING
                PANGO_ATTRIBUTE_INDEX_TO_TEXT_END

svn path=/trunk/; revision=2793

15 years agoBug 551469 – Fold '@' to '-' when parsing PangoLanguages
Behdad Esfahbod [Wed, 7 Jan 2009 08:02:45 +0000 (08:02 +0000)]
Bug 551469 – Fold '@' to '-' when parsing PangoLanguages

2009-01-06  Behdad Esfahbod  <behdad@gnome.org>

        Bug 551469 – Fold '@' to '-' when parsing PangoLanguages

        * pango/pango-language.c: Fold '@' to '-' when parsing PangoLanguages.

svn path=/trunk/; revision=2792

15 years agoBug 328206 – Update/remove some old files
Behdad Esfahbod [Tue, 6 Jan 2009 12:00:07 +0000 (12:00 +0000)]
Bug 328206 – Update/remove some old files

2009-01-06  Behdad Esfahbod  <behdad@gnome.org>

        Bug 328206 – Update/remove some old files

        * docs/Makefile.am:
        * docs/TEXT/glossary:
        Remove some old files.

svn path=/trunk/; revision=2791

15 years agoBug 328206 – Update/remove some old files
Behdad Esfahbod [Tue, 6 Jan 2009 11:59:56 +0000 (11:59 +0000)]
Bug 328206 – Update/remove some old files

2009-01-06  Behdad Esfahbod  <behdad@gnome.org>

        Bug 328206 – Update/remove some old files

        * tools/Makefile.am:
        * tools/add-copyright:
        * tools/compress-table.pl:
        * tools/maps/README:
        * tools/maps/tis-620:
        Remove some old files.

svn path=/trunk/; revision=2790

15 years agoRemove the old gen-script-for-lang tool, rename the new one to it.
Behdad Esfahbod [Tue, 6 Jan 2009 11:52:45 +0000 (11:52 +0000)]
Remove the old gen-script-for-lang tool, rename the new one to it.

2009-01-06  Behdad Esfahbod  <behdad@gnome.org>

        * tools/Makefile.am:
        * tools/gen-script-for-lang.c:
        * tools/gen-script-for-lang-new.c:
        Remove the old gen-script-for-lang tool, rename the new one to it.

svn path=/trunk/; revision=2789

15 years agoBug 166709 – Handle font variants more consistently
Behdad Esfahbod [Tue, 6 Jan 2009 11:33:51 +0000 (11:33 +0000)]
Bug 166709 – Handle font variants more consistently

2009-01-06  Behdad Esfahbod  <behdad@gnome.org>

        Bug 166709 – Handle font variants more consistently

        * configure.in: Require fontconfig >= 2.5.0

        * pango/fonts.c: Parse "Roman" as style=normal instead of
        weight=normal.  Doesn't make much difference in reality.

        * pango/pangofc-fontmap.c (pango_fc_convert_weight_to_fc),
        (pango_fc_convert_weight_to_pango): Update to reflect newly
        added weights.

svn path=/trunk/; revision=2788

15 years agoBug 166709 – Handle font variants more consistently
Behdad Esfahbod [Tue, 6 Jan 2009 11:07:02 +0000 (11:07 +0000)]
Bug 166709 – Handle font variants more consistently

2009-01-06  Behdad Esfahbod  <behdad@gnome.org>

        Bug 166709 – Handle font variants more consistently

        * pango/pango-font.h:
        Add enum values PANGO_WEIGHT_BOOK and PANGO_WEIGHT_ULTRAHEAVY.

        * pango/fonts.c:
        * docs/tmpl/fonts.sgml:
        Add new weights with their aliases, as well as aliasing "Roman" to the
        normal weight.

svn path=/trunk/; revision=2787

15 years agoMake it Unicode safe.
Behdad Esfahbod [Tue, 6 Jan 2009 10:40:30 +0000 (10:40 +0000)]
Make it Unicode safe.

2009-01-06  Behdad Esfahbod  <behdad@gnome.org>

        * pango/fonts.c (pango_font_description_to_filename):
        Make it Unicode safe.

svn path=/trunk/; revision=2786

15 years agoMove the parse_*() functions in fonts.c and have them share tables with
Behdad Esfahbod [Tue, 6 Jan 2009 10:36:05 +0000 (10:36 +0000)]
Move the parse_*() functions in fonts.c and have them share tables with

2009-01-06  Behdad Esfahbod  <behdad@gnome.org>

        * pango/fonts.c (find_field), (parse_field), (pango_parse_style),
        (pango_parse_variant), (pango_parse_weight), (pango_parse_stretch):
        Move the parse_*() functions in fonts.c and have them share tables
        with pango_font_description_to/from_string().

        * pango/pango-utils.c (parse_int), (pango_parse_enum):
        Accept integers in pango_parse_enum().

svn path=/trunk/; revision=2785

15 years agoBug 166676 – pango_fc_font_map_finalize
Behdad Esfahbod [Tue, 6 Jan 2009 09:52:00 +0000 (09:52 +0000)]
Bug 166676 – pango_fc_font_map_finalize

2009-01-06  Behdad Esfahbod  <behdad@gnome.org>

        Bug 166676 – pango_fc_font_map_finalize

        * pango/pangofc-fontmap.c (pango_fc_font_map_finalize),
        (pango_fc_face_describe), (pango_fc_face_list_sizes),
        (pango_fc_face_finalize), (pango_fc_face_class_init),
        (pango_fc_family_list_faces), (pango_fc_family_finalize),
        (pango_fc_family_class_init):
        Finalize families and faces.

svn path=/trunk/; revision=2784

15 years agoBug 164001 - pango-querymodules doesn't work uninstalled on win32
Tor Lillqvist [Tue, 6 Jan 2009 09:36:52 +0000 (09:36 +0000)]
Bug 164001 - pango-querymodules doesn't work uninstalled on win32

2009-01-06  Tor Lillqvist  <tml@iki.fi>

Bug 164001 - pango-querymodules doesn't work uninstalled on win32

* pango/pango-utils.c (pango_get_lib_subdirectory): When running
against an uninstalled, compile-time DLL, in the libtool-style
.libs folder, use the compile-time install prefix.

svn path=/trunk/; revision=2783

15 years agoBug 384362 – pango can't select some font styles
Behdad Esfahbod [Sun, 4 Jan 2009 02:25:59 +0000 (02:25 +0000)]
Bug 384362 – pango can't select some font styles

2009-01-03  Behdad Esfahbod  <behdad@gnome.org>

        Bug 384362 – pango can't select some font styles

        * pango/pango-font.h:
        Add enum values PANGO_WEIGHT_THIN and PANGO_WEIGHT_MEDIUM to
        PangoWeight.

        * pango/fonts.c: Parse "Thin", "Extra-Light", "Regular", "Demi-Bold",
        "Extra-Bold", and "Black" as weight descriptors (from the OpenType
        spec).

svn path=/trunk/; revision=2782

15 years agoBug 168085 – numeric styles in pango_font_description_to_string()
Behdad Esfahbod [Sun, 4 Jan 2009 02:11:19 +0000 (02:11 +0000)]
Bug 168085 – numeric styles in pango_font_description_to_string()

2009-01-03  Behdad Esfahbod  <behdad@gnome.org>

        Bug 168085 – numeric styles in pango_font_description_to_string()

        * pango/fonts.c (parse_int), (find_field), (find_field_any),
        (append_field), (pango_font_description_to_string):
        Print-out, and parse, numeric styles correctly.  Things like
        "DejaVu Sans weight=100" parse correctly now.

svn path=/trunk/; revision=2781

15 years agoBug 529591 – Code related to malayalam is misplaced. Patch from Rahul
Behdad Esfahbod [Sun, 4 Jan 2009 01:27:49 +0000 (01:27 +0000)]
Bug 529591 – Code related to malayalam is misplaced. Patch from Rahul

2009-01-03  Behdad Esfahbod  <behdad@gnome.org>

        Bug 529591 – Code related to malayalam is misplaced.
        Patch from Rahul Bhalerao

        * modules/indic/indic-ot.c (indic_ot_reorder): Fix it.

svn path=/trunk/; revision=2780

15 years agoBug 515807 – Don't bind modules lazily
Behdad Esfahbod [Sat, 3 Jan 2009 01:06:06 +0000 (01:06 +0000)]
Bug 515807 – Don't bind modules lazily

2009-01-02  Behdad Esfahbod  <behdad@gnome.org>

        Bug 515807 – Don't bind modules lazily

        * pango/modules.c (pango_module_load): Don't bind modules lazy.

svn path=/trunk/; revision=2779

15 years agoBug 512662 – Update check.docs for pango-undeclared.txt
Behdad Esfahbod [Sat, 3 Jan 2009 01:03:45 +0000 (01:03 +0000)]
Bug 512662 – Update check.docs for pango-undeclared.txt

2009-01-02  Behdad Esfahbod  <behdad@gnome.org>

        Bug 512662 – Update check.docs for pango-undeclared.txt

        * docs/Makefile.am:
        * docs/check.docs:
        Sync to the version in cairo.

svn path=/trunk/; revision=2778

15 years agoMake sure we measure layout with the same surface type as the final
Behdad Esfahbod [Fri, 2 Jan 2009 11:39:51 +0000 (11:39 +0000)]
Make sure we measure layout with the same surface type as the final

2009-01-02  Behdad Esfahbod  <behdad@gnome.org>

        * pango-view/viewer-main.c (main):
        * pango-view/viewer-pangocairo.c (pangocairo_view_render):
        * pango-view/viewer-pangoft2.c (pangoft2_view_render):
        * pango-view/viewer-pangox.c (pangox_view_render):
        * pango-view/viewer-pangoxft.c (pangoxft_view_render):
        * pango-view/viewer.h:
        Make sure we measure layout with the same surface type as the
        final target.  Also reduces fonts loaded by the pangocairo backend.

svn path=/trunk/; revision=2777

15 years agoCompletely ignore CTM translation offsets.
Behdad Esfahbod [Fri, 2 Jan 2009 08:41:42 +0000 (08:41 +0000)]
Completely ignore CTM translation offsets.

2009-01-02  Behdad Esfahbod  <behdad@gnome.org>

        * pango/pangocairo-context.c (_pango_cairo_update_context):
        Completely ignore CTM translation offsets.

svn path=/trunk/; revision=2776

15 years agoFinalize FreeType library after finalizing the FC fontmap. Fixes segfault
Behdad Esfahbod [Fri, 2 Jan 2009 07:19:03 +0000 (07:19 +0000)]
Finalize FreeType library after finalizing the FC fontmap. Fixes segfault

2009-01-02  Behdad Esfahbod  <behdad@gnome.org>

        * pango/pangocairo-fcfontmap.c (pango_cairo_fc_font_map_finalize):
        * pango/pangoft2-fontmap.c (pango_ft2_font_map_finalize):
        Finalize FreeType library after finalizing the FC fontmap.  Fixes
        segfault in the PangoFT2FontMap's finalize.

svn path=/trunk/; revision=2775

15 years agoFix possible reference leak when fallback is disabled.
Behdad Esfahbod [Fri, 2 Jan 2009 07:00:36 +0000 (07:00 +0000)]
Fix possible reference leak when fallback is disabled.

2009-01-02  Behdad Esfahbod  <behdad@gnome.org>

        * pango/pango-context.c (shaper_font_element_destroy),
        (get_shaper_font_cache), (shaper_font_cache_insert),
        (get_shaper_and_font_foreach), (itemize_state_process_run):
        Fix possible reference leak when fallback is disabled.

svn path=/trunk/; revision=2774

15 years agoBug 565644 – Maybe pango_font_descriptions_free is deprecated
Behdad Esfahbod [Fri, 26 Dec 2008 05:41:34 +0000 (05:41 +0000)]
Bug 565644 – Maybe pango_font_descriptions_free is deprecated

2008-12-26  Behdad Esfahbod  <behdad@gnome.org>

        Bug 565644 – Maybe pango_font_descriptions_free is deprecated

        * pango/fonts.c: Adjust docs.

svn path=/trunk/; revision=2773

15 years agoCall cairo_debug_reset_static_data().
Behdad Esfahbod [Fri, 26 Dec 2008 05:09:58 +0000 (05:09 +0000)]
Call cairo_debug_reset_static_data().

2008-12-26  Behdad Esfahbod  <behdad@gnome.org>

        * pango-view/viewer-pangocairo.c (pangocairo_view_destroy):
        Call cairo_debug_reset_static_data().

svn path=/trunk/; revision=2772

15 years agoFix all warnings in modules/.
Behdad Esfahbod [Fri, 26 Dec 2008 05:09:48 +0000 (05:09 +0000)]
Fix all warnings in modules/.

2008-12-25  Behdad Esfahbod  <behdad@gnome.org>

        * modules/arabic/arabic-fc.c (arabic_engine_shape):
        * modules/arabic/arabic-lang.c (arabic_engine_break):
        * modules/basic/basic-fc.c (basic_engine_shape):
        * modules/basic/basic-x.c (find_char), (conv_8bit), (conv_eucjp),
        (conv_16bit), (conv_16bit_MSB_on), (conv_gb18030_1), (conv_euctw),
        (conv_ucs4), (basic_engine_shape), (basic_engine_covers):
        * modules/hangul/hangul-fc.c (hangul_engine_shape):
        * modules/hebrew/hebrew-fc.c (add_cluster), (fallback_shape):
        * modules/indic/indic-lang.c (indic_engine_break):
        * modules/khmer/khmer-fc.c (khmer_engine_shape):
        * modules/syriac/syriac-fc.c (syriac_engine_shape):
        * modules/thai/thai-fc.c (get_glyph_index_tis),
        (thai_engine_shape), (thai_make_unknown_glyph):
        * modules/thai/thai-lang.c (thai_engine_break):
        * modules/thai/thai-shaper.c (get_glyphs_list):
        * modules/tibetan/tibetan-fc.c (tibetan_engine_shape):
        Fix all warnings in modules/.

svn path=/trunk/; revision=2771

15 years agoFix warning.
Behdad Esfahbod [Fri, 26 Dec 2008 03:23:09 +0000 (03:23 +0000)]
Fix warning.

svn path=/trunk/; revision=2770

15 years agoFix all warnings in pango-view/
Behdad Esfahbod [Fri, 26 Dec 2008 03:22:31 +0000 (03:22 +0000)]
Fix all warnings in pango-view/

2008-12-25  Behdad Esfahbod  <behdad@gnome.org>

        * pango-view/viewer-main.c (main):
        * pango-view/viewer-pangocairo.c (pangocairo_view_create),
        (transform_callback), (pangocairo_view_render),
        (pangocairo_view_write):
        * pango-view/viewer-pangoft2.c (substitute_func),
        (pangoft2_view_create), (pangoft2_view_create_surface),
        (pangoft2_view_destroy_surface), (render_callback),
        (pangoft2_view_render), (pangoft2_view_write):
        * pango-view/viewer-pangox.c (render_callback):
        * pango-view/viewer-pangoxft.c (default_substitute),
        (render_callback):
        * pango-view/viewer-render.c (parse_enum), (parse_align),
        (parse_ellipsis), (parse_gravity), (parse_gravity_hint),
        (parse_hinting), (parse_wrap), (parse_backend), (show_version):
        * pango-view/viewer-x.c (x_view_init):
        Fix all warnings in pango-view/

svn path=/trunk/; revision=2769

15 years agoCleanup fontmap finalization.
Behdad Esfahbod [Fri, 26 Dec 2008 02:55:57 +0000 (02:55 +0000)]
Cleanup fontmap finalization.

2008-12-25  Behdad Esfahbod  <behdad@gnome.org>

        * pango/pangofc-fontmap.c (pango_fc_font_map_finalize),
        (pango_fc_font_map_shutdown):
        Cleanup fontmap finalization.

svn path=/trunk/; revision=2768

15 years agoBug 469049 – Fix all compiler warnings
Behdad Esfahbod [Fri, 26 Dec 2008 02:31:47 +0000 (02:31 +0000)]
Bug 469049 – Fix all compiler warnings

2008-12-25  Behdad Esfahbod  <behdad@gnome.org>

        Bug 469049 – Fix all compiler warnings

        * pango-view/viewer-pangocairo.c (render_callback):
        * pango/fonts.c (append_field), (pango_font_description_to_string):
        * pango/opentype/harfbuzz-dump.c:
        * pango/pango-bidi-type.c (pango_log2vis_get_embedding_levels):
        * pango/pango-coverage.c (pango_coverage_set):
        * pango/pango-markup.c (span_parse_func):
        * pango/pango-renderer.c
        (pango_renderer_default_draw_error_underline):
        * pango/pango-utils.c (pango_scan_string):
        * pango/pangocairo-render.c (pango_cairo_renderer_draw_trapezoid),
        (draw_error_underline), (pango_cairo_renderer_class_init):
        Fix all the remaining warnings.

svn path=/trunk/; revision=2767

15 years agoFix more warnings.
Behdad Esfahbod [Fri, 26 Dec 2008 02:31:35 +0000 (02:31 +0000)]
Fix more warnings.

2008-12-25  Behdad Esfahbod  <behdad@gnome.org>

        * pango/modules.c (pango_module_load), (script_info_free):
        * pango/opentype/harfbuzz-gpos.c (HB_Load_GPOS_Table):
        * pango/pango-bidi-type.c:
        * pango/pango-coverage.c (pango_coverage_ref),
        (pango_coverage_unref):
        * pango/pango-engine.c (pango_engine_shape_real_covers),
        (fallback_engine_shape), (fallback_engine_covers):
        * pango/pango-fontmap.c (pango_font_map_init):
        * pango/pango-ot-ruleset.c (pango_ot_ruleset_finalize),
        (pango_ot_ruleset_new):
        * pango/pangofc-decoder.c (pango_fc_decoder_init),
        (pango_fc_decoder_class_init):
        * pango/pangofc-font.c (pango_fc_font_find_shaper),
        (pango_fc_font_get_coverage):
        * pango/pangofc-fontmap.c (pango_fc_font_map_list_families),
        (pango_fc_make_pattern), (pango_fc_font_map_get_patterns),
        (get_first_font), (_pango_fc_font_map_get_coverage),
        (cleanup_font), (pango_fc_font_description_from_pattern),
        (pango_fc_face_list_sizes), (pango_fc_family_list_faces):
        * pango/pangoft2-fontmap.c (pango_ft2_font_map_get_resolution):
        * pango/pangoft2-render.c (pango_ft2_renderer_init),
        (pango_ft2_renderer_draw_trapezoid):
        * pango/pangoft2.c (pango_ft2_font_get_face),
        (pango_ft2_font_real_unlock_face),
        (pango_ft2_free_glyph_info_callback):
        Fix more warnings.

svn path=/trunk/; revision=2766

15 years agoFix warnings.
Behdad Esfahbod [Fri, 26 Dec 2008 02:20:59 +0000 (02:20 +0000)]
Fix warnings.

2008-12-25  Behdad Esfahbod  <behdad@gnome.org>

        * pango/break.c (pango_default_break):
        * pango/fonts.c (find_field_any), (pango_font_class_init),
        (pango_font_init), (pango_font_metrics_ref),
        (pango_font_metrics_unref), (pango_font_family_class_init),
        (pango_font_family_init), (pango_font_face_class_init),
        (pango_font_face_init):
        * pango/pango-attributes.c (pango_attr_list_ref),
        (pango_attr_list_unref), (pango_attr_iterator_get_font):
        * pango/pango-layout.c (pango_layout_set_height), (extents_free),
        (no_shape_filter_func), (pango_layout_line_ref),
        (pango_layout_line_unref), (pango_layout_get_item_properties):
        * pango/pango-markup.c (end_element_handler), (text_handler),
        (b_parse_func), (big_parse_func), (span_parse_func),
        (i_parse_func), (markup_parse_func), (s_parse_func),
        (sub_parse_func), (sup_parse_func), (small_parse_func),
        (tt_parse_func), (u_parse_func):
        * pango/pango-ot-info.c (get_glyph_class):
        * pango/pango-renderer.c (get_item_properties),
        (pango_renderer_default_prepare_run):
        * pango/pango-utils.c (_pango_shape_shape):
        * pango/pangocairo-fcfontmap.c
        (pango_cairo_fc_font_map_get_font_type),
        (pango_cairo_fc_font_map_context_substitute),
        (pango_cairo_fc_font_map_context_key_get),
        (pango_cairo_fc_font_map_context_key_copy),
        (pango_cairo_fc_font_map_context_key_free),
        (pango_cairo_fc_font_map_context_key_hash),
        (pango_cairo_fc_font_map_context_key_equal):
        * pango/pangocairo-fontmap.c
        (pango_cairo_font_map_new_for_font_type),
        (pango_cairo_font_map_set_default):
        * pango/pangocairo-render.c (pango_cairo_renderer_init):
        * pango/pangox-fontcache.c (free_cache_entry):
        * pango/pangox-fontmap.c (close_display_cb),
        (list_families_foreach), (pango_x_font_map_load_font),
        (ignore_error):
        * pango/pangox.c (average_width_foreach), (subfonts_foreach),
        (pango_x_font_find_shaper), (pango_x_get_unknown_glyph),
        (pango_x_get_item_properties), (pango_x_apply_ligatures),
        (pango_x_font_get_unknown_glyph):
        * pango/pangoxft-fontmap.c (pango_xft_font_map_init),
        (close_display_cb):
        * pango/querymodules.c (show_version):
        Fix warnings.

svn path=/trunk/; revision=2765

15 years agoReword.
Behdad Esfahbod [Mon, 22 Dec 2008 21:16:03 +0000 (21:16 +0000)]
Reword.

svn path=/trunk/; revision=2764

15 years agoBug 565379 – pango_font_description_better_match some style attributes
Behdad Esfahbod [Mon, 22 Dec 2008 21:15:20 +0000 (21:15 +0000)]
Bug 565379 – pango_font_description_better_match some style attributes

2008-12-22  Behdad Esfahbod  <behdad@gnome.org>

        Bug 565379 – pango_font_description_better_match some style attributes
        of old_match are not checked

        * pango/fonts.c: Improve docs.

svn path=/trunk/; revision=2763

15 years agoBug 564877 – pango-engine.h: PANGO_MODULE_PREFIX and G_MODULE_EXPORT
Behdad Esfahbod [Wed, 17 Dec 2008 20:18:59 +0000 (20:18 +0000)]
Bug 564877 – pango-engine.h: PANGO_MODULE_PREFIX and G_MODULE_EXPORT

2008-12-17  Behdad Esfahbod  <behdad@gnome.org>

        Bug 564877 – pango-engine.h: PANGO_MODULE_PREFIX and G_MODULE_EXPORT

        * pango/pango-engine.h: Don't add G_MODULE_EXPORT.  This
        roles back a change introduced in 1.22.4.

svn path=/trunk/; revision=2762

15 years ago=== Released 1.22.4 === PANGO_1_22_4
Behdad Esfahbod [Mon, 15 Dec 2008 20:52:39 +0000 (20:52 +0000)]
=== Released 1.22.4 ===

2008-12-15  Behdad Esfahbod  <behdad@gnome.org>

        * === Released 1.22.4 ===

        * configure.in: Version 1.22.4

        * NEWS: Updated.

svn path=/trunk/; revision=2760

15 years agoBug 564644 – Not complete description of the
Behdad Esfahbod [Mon, 15 Dec 2008 19:37:25 +0000 (19:37 +0000)]
Bug 564644 – Not complete description of the

2008-12-15  Behdad Esfahbod  <behdad@gnome.org>

        Bug 564644 – Not complete description of the
        pango_font_description_better_match function

        * pango/fonts.c: Improve docs even more.

svn path=/trunk/; revision=2759

15 years agoBug 564644 – Not complete description of the
Behdad Esfahbod [Mon, 15 Dec 2008 18:17:21 +0000 (18:17 +0000)]
Bug 564644 – Not complete description of the

2008-12-15  Behdad Esfahbod  <behdad@gnome.org>

        Bug 564644 – Not complete description of the
        pango_font_description_better_match function

        * pango/fonts.c: Improve docs.

svn path=/trunk/; revision=2758

15 years agoBug 563898 – Generated output is not deterministic
Behdad Esfahbod [Sun, 14 Dec 2008 18:22:53 +0000 (18:22 +0000)]
Bug 563898 – Generated output is not deterministic

2008-12-14  Behdad Esfahbod  <behdad@gnome.org>

        Bug 563898 – Generated output is not deterministic

        * docs/pango-querymodules.xml:
        * docs/pango_markup.sgml:
        Add section ids, such that generated HTML is deterministic.

svn path=/trunk/; revision=2757

15 years agoDon't call exit(). Let us crash.
Behdad Esfahbod [Tue, 9 Dec 2008 21:42:06 +0000 (21:42 +0000)]
Don't call exit(). Let us crash.

2008-12-09  Behdad Esfahbod  <behdad@gnome.org>

        * pango/pangoxft-font.c (pango_xft_font_init),
        (load_fallback_font): Don't call exit().  Let us crash.

svn path=/trunk/; revision=2756

15 years agoBug 563803 – pango_renderer_finalize fails to call parent finalize
Behdad Esfahbod [Tue, 9 Dec 2008 10:09:30 +0000 (10:09 +0000)]
Bug 563803 – pango_renderer_finalize fails to call parent finalize

2008-12-09  Behdad Esfahbod  <behdad@gnome.org>

        Bug 563803 – pango_renderer_finalize fails to call parent finalize

        * pango/pango-renderer.c (pango_renderer_class_init),
        (pango_renderer_finalize): Call parent finalize.

        * pango/pango-renderer.c (add_strikethrough),
        (pango_renderer_default_draw_glyph_item),
        (pango_renderer_default_draw_error_underline):
        Clean up a bit.

svn path=/trunk/; revision=2755

15 years agoBug 499626 – Space should be optional after comma in
Behdad Esfahbod [Mon, 8 Dec 2008 03:59:49 +0000 (03:59 +0000)]
Bug 499626 – Space should be optional after comma in

2008-12-07  Behdad Esfahbod  <behdad@gnome.org>

        Bug 499626 – Space should be optional after comma in
        PangoFontDescription input string

        * pango/fonts.c (getword): Don't require space after comma.

svn path=/trunk/; revision=2754

15 years agoBug 499624 – Spaces around commas in PangoFontDescription family name
Behdad Esfahbod [Mon, 8 Dec 2008 03:53:12 +0000 (03:53 +0000)]
Bug 499624 – Spaces around commas in PangoFontDescription family name

2008-12-07  Behdad Esfahbod  <behdad@gnome.org>

        Bug 499624 – Spaces around commas in PangoFontDescription family name
        should be trimmed

        * pango/fonts.c (pango_font_description_from_string):
        * pango/pangofc-fontmap.c (pango_fc_make_pattern):
        Do it in pango_font_description_from_string() instead of pangofc
        backend.

svn path=/trunk/; revision=2753

15 years agoBug 499624 – Spaces around commas in PangoFontDescription family name
Behdad Esfahbod [Mon, 8 Dec 2008 03:41:22 +0000 (03:41 +0000)]
Bug 499624 – Spaces around commas in PangoFontDescription family name

2008-12-07  Behdad Esfahbod  <behdad@gnome.org>

        Bug 499624 – Spaces around commas in PangoFontDescription family name
        should be trimmed

        * pango/pangofc-fontmap.c (pango_fc_make_pattern): Trim family strings
        before adding to pattern.

svn path=/trunk/; revision=2752

15 years agoBug 563557 – set g_get_prgname() in fc pattern
Behdad Esfahbod [Mon, 8 Dec 2008 03:28:29 +0000 (03:28 +0000)]
Bug 563557 – set g_get_prgname() in fc pattern

2008-12-07  Behdad Esfahbod  <behdad@gnome.org>

        Bug 563557 – set g_get_prgname() in fc pattern

        * docs/pango-sections.txt:
        * pango/pangofc-fontmap.c (pango_fc_make_pattern):
        * pango/pangofc-fontmap.h:
        Add PANGO_FC_PRGNAME which is the fontconfig element "pangoprgname".
        Populate it on all our fontconfig search patterns using
        g_get_prgname().  See bug for sample use.

svn path=/trunk/; revision=2751

15 years agoAdd G_MODULE_EXPORT annotation for modules.
Behdad Esfahbod [Mon, 8 Dec 2008 01:01:40 +0000 (01:01 +0000)]
Add G_MODULE_EXPORT annotation for modules.

2008-12-07  Behdad Esfahbod  <behdad@gnome.org>

        * pango/pango-engine.h: Add G_MODULE_EXPORT annotation for modules.

svn path=/trunk/; revision=2750

15 years agoFix docs re NULL language. Also allow NULL desc.
Behdad Esfahbod [Sun, 7 Dec 2008 07:36:15 +0000 (07:36 +0000)]
Fix docs re NULL language. Also allow NULL desc.

2008-12-07  Behdad Esfahbod  <behdad@gnome.org>

        * pango/pango-context.c (pango_context_get_metrics):
        Fix docs re NULL language.  Also allow NULL desc.

svn path=/trunk/; revision=2749

15 years agoAdd more debug info if creating scaled font failed.
Behdad Esfahbod [Sat, 6 Dec 2008 22:17:16 +0000 (22:17 +0000)]
Add more debug info if creating scaled font failed.

2008-12-06  Behdad Esfahbod  <behdad@gnome.org>

        * pango/pangocairo-font.c
        (_pango_cairo_font_private_get_scaled_font):
        Add more debug info if creating scaled font failed.

svn path=/trunk/; revision=2748

15 years agoBug 563356 – The input area of firefox and the blank width after text in
Behdad Esfahbod [Sat, 6 Dec 2008 01:44:03 +0000 (01:44 +0000)]
Bug 563356 – The input area of firefox and the blank width after text in

2008-12-05  Behdad Esfahbod  <behdad@gnome.org>

        Bug 563356 – The input area of firefox and the blank width after text
        in gnome-menu was stretched too wide, under pango-1.22.3

        * docs/tmpl/fonts.sgml:
        * pango/pango-impl-utils.h:
        * pango/pangocairo-atsuifont.c
        (pango_cairo_atsui_font_create_metrics_for_context):
        * pango/pangocairo-win32font.c
        (pango_cairo_win32_font_create_metrics_for_context):
        * pango/pangofc-font.c (pango_fc_font_create_metrics_for_context):
        For approximate_char_width calculation take each char's width into
        account.  That is, do a weighted average instead of uniform average.
        g_unichar_iszerowidth() chars count as 0, g_unichar_iswide() chars
        count 2, and the rest count as 1.  Pretty much wcwidth() behavior.
        See bug report for rationale.

svn path=/trunk/; revision=2747

15 years agoBug 562574 – Pangocariowin32 is leaking every cairo font it ever creates
Behdad Esfahbod [Fri, 28 Nov 2008 17:34:57 +0000 (17:34 +0000)]
Bug 562574 – Pangocariowin32 is leaking every cairo font it ever creates

2008-11-28  Behdad Esfahbod  <behdad@gnome.org>

        Bug 562574 – Pangocariowin32 is leaking every cairo font it ever
        creates

        * pango/pangocairo-atsuifont.c (pango_cairo_atsui_font_finalize):
        * pango/pangocairo-win32font.c (pango_cairo_win32_font_finalize):
        Finalize shared pangocairo font resources.  Oops!

        * pango/pangocairo-font.c (_pango_cairo_font_private_finalize):
        Protect against multiple calls to finalize.  This is practiced by the
        pangocairo-fcfont when a font is shutdown and then finalized.

svn path=/trunk/; revision=2746

15 years agoHandle close_path correctly.
Behdad Esfahbod [Wed, 26 Nov 2008 18:05:39 +0000 (18:05 +0000)]
Handle close_path correctly.

2008-11-26  Behdad Esfahbod  <behdad@gnome.org>

        * examples/cairotwisted.c (parametrize_path), (point_on_path):
        Handle close_path correctly.

svn path=/trunk/; revision=2745

15 years ago=== Released 1.22.3 === PANGO_1_22_3
Behdad Esfahbod [Sun, 23 Nov 2008 14:16:55 +0000 (14:16 +0000)]
=== Released 1.22.3 ===

2008-11-23  Behdad Esfahbod  <behdad@gnome.org>

        * === Released 1.22.3 ===

        * configure.in: Version 1.22.3

        * NEWS: Updated.

svn path=/trunk/; revision=2742

15 years agoMinor indentation fixes for previous commit.
Theppitak Karoonboonyanan [Sat, 22 Nov 2008 04:16:43 +0000 (04:16 +0000)]
Minor indentation fixes for previous commit.

2008-11-22  Theppitak Karoonboonyanan  <thep@linux.thai.net>

* modules/thai/thai-lang.c (thai_engine_break):
Minor indentation fixes for previous commit.

svn path=/trunk/; revision=2741

15 years agoBug 561740 – Use stack allocation for thai_engine_break
Chris Wilson [Sat, 22 Nov 2008 00:10:07 +0000 (00:10 +0000)]
Bug 561740 – Use stack allocation for thai_engine_break

2008-11-22  Chris Wilson  <chris@chris-wilson.co.uk>

Bug 561740 – Use stack allocation for thai_engine_break

* modules/thai/thai-lang.c (utf8_to_tis), (thai_engine_break):
Small tweak to allocate small, temporary arrays on the stack.

svn path=/trunk/; revision=2740

15 years agoBug 561779 – incorrect calculations in pango_matrix_concat
Behdad Esfahbod [Fri, 21 Nov 2008 21:52:36 +0000 (21:52 +0000)]
Bug 561779 – incorrect calculations in pango_matrix_concat

2008-11-21  Behdad Esfahbod  <behdad@gnome.org>

        Bug 561779 – incorrect calculations in pango_matrix_concat
        implementation

        * pango/pango-matrix.c (pango_matrix_concat): Fix bug in y0
        computation.

svn path=/trunk/; revision=2739

15 years agoBug 560730 – pango 1.22.2 build failure on Solaris 10, too many array
Behdad Esfahbod [Wed, 19 Nov 2008 19:52:30 +0000 (19:52 +0000)]
Bug 560730 – pango 1.22.2 build failure on Solaris 10, too many array

2008-11-19  Behdad Esfahbod  <behdad@gnome.org>

        Bug 560730 – pango 1.22.2 build failure on Solaris 10, too many array
        initializers in pango-language.c

        * pango/pango-language.c: Don't use anonymous struct.

svn path=/trunk/; revision=2738

15 years agoWrite error code in capital hex.
Behdad Esfahbod [Wed, 19 Nov 2008 19:52:22 +0000 (19:52 +0000)]
Write error code in capital hex.

2008-11-19  Behdad Esfahbod  <behdad@gnome.org>

        * pango/pango-ot-info.c (pango_ot_info_get_gdef),
        (pango_ot_info_get_gsub), (pango_ot_info_get_gpos):
        Write error code in capital hex.

svn path=/trunk/; revision=2737

15 years ago=== Released 1.22.2 === PANGO_1_22_2
Behdad Esfahbod [Tue, 28 Oct 2008 19:31:17 +0000 (19:31 +0000)]
=== Released 1.22.2 ===

2008-10-28  Behdad Esfahbod  <behdad@gnome.org>

        * === Released 1.22.2 ===

        * configure.in: Version 1.22.2

        * NEWS: Updated.

svn path=/trunk/; revision=2735

15 years agoBug 558254 – Internal reference handling messed up
Behdad Esfahbod [Tue, 28 Oct 2008 17:09:21 +0000 (17:09 +0000)]
Bug 558254 – Internal reference handling messed up

2008-10-28  Behdad Esfahbod  <behdad@gnome.org>

        Bug 558254 – Internal reference handling messed up

        * pango/pangofc-font.c (pango_fc_font_get_coverage):
        * pango/pangofc-fontmap.c (pango_fc_font_map_finalize):
        Make sure fonts->fontmap is set to NULL when fontmap finalizes.

svn path=/trunk/; revision=2734

15 years agoBug 558107 – is_monospace always returns FALSE in pangoatsui
Richard Hult [Tue, 28 Oct 2008 13:38:30 +0000 (13:38 +0000)]
Bug 558107 – is_monospace always returns FALSE in pangoatsui

2008-10-27  Richard Hult  <richard@imendio.com>

Bug 558107 – is_monospace always returns FALSE in pangoatsui

* pango/pangoatsui-fontmap.c: (pango_atsui_family_is_monospace),
(pango_atsui_font_map_init): Mark families whose faces have the
NSFixedPitchFontMask set as monospaced, and use this in the
is_monospace implementation.

svn path=/trunk/; revision=2733

15 years agoBug 557620 – pango_font_description_from_string not correct
Behdad Esfahbod [Thu, 23 Oct 2008 18:24:48 +0000 (18:24 +0000)]
Bug 557620 – pango_font_description_from_string not correct

2008-10-23  Behdad Esfahbod  <behdad@gnome.org>

        Bug 557620 – pango_font_description_from_string not correct

        * pango/fonts.c (find_field_any): Fix parsing of "normal" when
        not at the end of string.

svn path=/trunk/; revision=2732

15 years ago=== Released 1.22.1 ===
Behdad Esfahbod [Thu, 23 Oct 2008 18:24:38 +0000 (18:24 +0000)]
=== Released 1.22.1 ===

2008-10-20  Behdad Esfahbod  <behdad@gnome.org>

        * === Released 1.22.1 ===

        * configure.in: Version 1.22.1

        * NEWS: Updated.

svn path=/trunk/; revision=2731

15 years agoBug 528272 – "Error loading GPOS table 5503" when using katakana
Behdad Esfahbod [Wed, 15 Oct 2008 03:45:29 +0000 (03:45 +0000)]
Bug 528272 – "Error loading GPOS table 5503" when using katakana

2008-10-14  Behdad Esfahbod  <behdad@gnome.org>

        Bug 528272 – "Error loading GPOS table 5503" when using katakana
        characters

        * pango/opentype/harfbuzz-gpos.c (Load_Mark2Array): Skip parsing
        null anchor tables.

svn path=/trunk/; revision=2730

15 years agoBug 552107 – Small libtool fixes
Behdad Esfahbod [Fri, 10 Oct 2008 23:59:29 +0000 (23:59 +0000)]
Bug 552107 – Small libtool fixes

2008-10-10  Behdad Esfahbod  <behdad@gnome.org>

        Bug 552107 – Small libtool fixes

        * configure.in: Regenerate libtool early, quote $deplibs_check_method.
        Patch by Patryk Zawadzki

svn path=/trunk/; revision=2729

15 years agoFix a gcc warning.
Kjartan Maraas [Fri, 10 Oct 2008 20:21:24 +0000 (20:21 +0000)]
Fix a gcc warning.

2008-10-10  Kjartan Maraas  <kmaraas@gnome.org>

* pango/pangox.c: (get_context_info): Fix a gcc warning.

svn path=/trunk/; revision=2728

15 years agoBug 539623 – document that pango_color_parse accepts NULL
Christian Persch [Wed, 8 Oct 2008 20:49:25 +0000 (20:49 +0000)]
Bug 539623 – document that pango_color_parse accepts NULL

svn path=/trunk/; revision=2727

15 years agoBug 555219 – Memory leak when using pango_layout_iter_copy Patch from
Behdad Esfahbod [Mon, 6 Oct 2008 16:09:54 +0000 (16:09 +0000)]
Bug 555219 – Memory leak when using pango_layout_iter_copy Patch from

2008-10-06  Behdad Esfahbod  <behdad@gnome.org>

        Bug 555219 – Memory leak when using pango_layout_iter_copy
        Patch from Falk Rohsiepe

        * pango/pango-layout.c (pango_layout_iter_copy):  Use gslice, not
        memdup.  Oops!

svn path=/trunk/; revision=2726

15 years agoFix left-to-right positioning. Reported by Peter Hunter.
Behdad Esfahbod [Mon, 29 Sep 2008 22:28:47 +0000 (22:28 +0000)]
Fix left-to-right positioning. Reported by Peter Hunter.

2008-09-29  Behdad Esfahbod  <behdad@gnome.org>

        * pango/opentype/harfbuzz-gpos.c (Position_CursiveChain):
        Fix left-to-right positioning.  Reported by Peter Hunter.

svn path=/trunk/; revision=2725

15 years agoImprove Japanese text
Behdad Esfahbod [Tue, 23 Sep 2008 01:39:03 +0000 (01:39 +0000)]
Improve Japanese text

svn path=/trunk/; revision=2724

15 years ago=== Released 1.22.0 === PANGO_1_22_0
Behdad Esfahbod [Mon, 22 Sep 2008 22:34:34 +0000 (22:34 +0000)]
=== Released 1.22.0 ===

2008-09-22  Behdad Esfahbod  <behdad@gnome.org>

        * === Released 1.22.0 ===

        * configure.in: Version 1.22.0

        * NEWS: Updated.

svn path=/trunk/; revision=2722

15 years agoUpdate to cairo-1.7.6 API.
Behdad Esfahbod [Mon, 22 Sep 2008 22:34:24 +0000 (22:34 +0000)]
Update to cairo-1.7.6 API.

2008-09-22  Behdad Esfahbod  <behdad@gnome.org>

        * configure.in:
        * pango/pangocairo-render.c
        (pango_cairo_renderer_show_text_glyphs), (save_current_point):
        Update to cairo-1.7.6 API.

svn path=/trunk/; revision=2721

15 years agoBug 552993 – Romanian pangram
Behdad Esfahbod [Sat, 20 Sep 2008 20:36:40 +0000 (20:36 +0000)]
Bug 552993 – Romanian pangram

2008-09-20  Behdad Esfahbod  <behdad@gnome.org>

        Bug 552993 – Romanian pangram

        * pango/pango-language-sample-table.h: New Romanian sample text
        from Misu Moldovan.

svn path=/trunk/; revision=2720

15 years agoDrop pango.aliases as we have a default such built-in nowadays.
Tor Lillqvist [Thu, 18 Sep 2008 20:25:25 +0000 (20:25 +0000)]
Drop pango.aliases as we have a default such built-in nowadays.

2008-09-18  Tor Lillqvist  <tml@novell.com>

* pango-zip.sh.in: Drop pango.aliases as we have a default such
built-in nowadays.

svn path=/trunk/; revision=2719