
So as some of you already know, we will be storing more complete font information in the style string so that Inkscape can (eventually) do more than what CSS can represent. However. we need to carefully choose exactly what this information will be.
It was suggested previously that we use the system font name, which I was going to use pango to retrieve (http://www.gtk.org/api/2.6/pango/pango-Fonts.html#pango-font-description-to-...). However, this function produces almost the same answer as pango_font_description_to_string(), so it's probably just as easy to use that function. I believe this could be reasonable if we trust that pango will not change how this is written (because if they do, we have to make a font-specification-v2 or something).
There is another disadvantage: Pango doesn't support anything that CSS doesn't. For quite a long time I thought I could get around this because when pango finds fonts on the system, I was able to print out the information about even the non-CSS styles. Unfortunately, we are currently very dependent on the PangoFontDescription structure, and once this structure is obtained from this point on, we lose all non-CSS information. There are two things I would like to look into in the future: first, whether we can around this super-dependence on that structure and could use instead somehow the PangoFontFace structure that seems to contain all needed information; and second, perhaps contributing to pango and/or finding out why they don't have more general font support.
Anyway, so the reason for this email is to get some of your ideas on what you think we should put into font-specification. Tell me why too!
Thanks, Gail

On 8/16/07, Gail Banaszkiewicz <gbanaszk@...1686...> wrote:
It was suggested previously that we use the system font name, which I was going to use pango to retrieve (http://www.gtk.org/api/2.6/pango/pango-Fonts.html#pango-font-description-to-...). However, this function produces almost the same answer as pango_font_description_to_string(), so it's probably just as easy to use that function.
From description, I think we should use
pango_font_description_to_string() because it does not do space/underscore replacements.
There is another disadvantage: Pango doesn't support anything that CSS doesn't. For quite a long time I thought I could get around this because when pango finds fonts on the system, I was able to print out the information about even the non-CSS styles. Unfortunately, we are currently very dependent on the PangoFontDescription structure, and once this structure is obtained from this point on, we lose all non-CSS information. There are two things I would like to look into in the future: first, whether we can around this super-dependence on that structure and could use instead somehow the PangoFontFace structure that seems to contain all needed information; and second, perhaps contributing to pango and/or finding out why they don't have more general font support.
I'm not really qualified to give advice on this issue, but I would perhaps just try to store the PangoFontFace for a font in Inkscape in parallel with PangoFontDescription, so that this change would be minimally intrusive. Asking advice from Pango devs is also a good idea I think.

bulia byak wrote:
I'm not really qualified to give advice on this issue, but I would perhaps just try to store the PangoFontFace for a font in Inkscape in parallel with PangoFontDescription, so that this change would be minimally intrusive. Asking advice from Pango devs is also a good idea I think.
Yes, I will be trying to get into contact with the pango devs for sure, but because it's not something I can do before the GSoC deadline, I will be attempting instead to stop displaying fonts we can't work with for now, and improve the UI for font family and style (as previously discussed). Once my wedding frenzy is over I intend to look into this further. On initial investigation, however, PangoFontFace is frustratingly not that useful and we really seem to rely on PangoFontDescription. More investigation to come.
I will use pango_font_description_to_string as the font-specification (which I am for now anyway) unless I hear any other compelling suggestions... :) Note that while it's easy to change now, once a new version is released, we are pretty much committed!
Gail
participants (2)
-
bulia byak
-
Gail Banaszkiewicz