summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2006-05-22 10:53:52 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2006-05-22 10:53:52 +0000
commit707be23961a01d36e592f86d0471fa43114e1b36 (patch)
treee340504c971424619bdf51d6cb61ed2c4a5caefc
parent1c6c1160533bdb5bcd189923fbafa1d5c665c509 (diff)
downloadpango-707be23961a01d36e592f86d0471fa43114e1b36.tar.gz
Bug 342562 – Support absolute sizes in
2006-05-22 Behdad Esfahbod <behdad@gnome.org> Bug 342562 – Support absolute sizes in pango_font_description_to/from_string * pango/fonts.c (parse_size), (pango_font_description_from_string), (pango_font_description_to_string): Accept and generate a "px" suffix to identify absolute font sizes.
-rw-r--r--ChangeLog9
-rw-r--r--pango/fonts.c23
2 files changed, 27 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index a21fbc50..1ffbce8f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
2006-05-22 Behdad Esfahbod <behdad@gnome.org>
+ Bug 342562 – Support absolute sizes in
+ pango_font_description_to/from_string
+
+ * pango/fonts.c (parse_size), (pango_font_description_from_string),
+ (pango_font_description_to_string): Accept and generate a "px" suffix
+ to identify absolute font sizes.
+
+2006-05-22 Behdad Esfahbod <behdad@gnome.org>
+
Bug 341922 – pango should handle more characters as zero width
Patch from Roozbeh Pournader
diff --git a/pango/fonts.c b/pango/fonts.c
index 0e5de467..17f67703 100644
--- a/pango/fonts.c
+++ b/pango/fonts.c
@@ -847,16 +847,23 @@ getword (const char *str, const char *last, size_t *wordlen)
static gboolean
parse_size (const char *word,
size_t wordlen,
- int *pango_size)
+ int *pango_size,
+ gboolean *size_is_absolute)
{
char *end;
double size = g_ascii_strtod (word, &end);
- if ((size_t)(end - word) == wordlen && size >= 0 && size <= 1000000) /* word is a valid float */
+ if (end != word &&
+ (end == word + wordlen ||
+ (end + 2 == word + wordlen && !strncmp (end, "px", 2))
+ ) && size >= 0 && size <= 1000000) /* word is a valid float */
{
if (pango_size)
*pango_size = (int)(size * PANGO_SCALE + 0.5);
+ if (size_is_absolute)
+ *size_is_absolute = end < word + wordlen;
+
return TRUE;
}
@@ -872,7 +879,8 @@ parse_size (const char *word,
* comma separated list of families optionally terminated by a comma,
* STYLE_OPTIONS is a whitespace separated list of words where each
* WORD describes one of style, variant, weight, or stretch, and SIZE
- * is an decimal number (size in points). Any one of the options may
+ * is a decimal number (size in points) or optionally followed by the
+ * unit modifier "px" for absolute size. Any one of the options may
* be absent. If FAMILY-LIST is absent, then the family_name field of
* the resulting font description will be initialized to %NULL. If
* STYLE-OPTIONS is missing, then all style options will be set to the
@@ -916,8 +924,10 @@ pango_font_description_from_string (const char *str)
*/
if (wordlen != 0)
{
- if (parse_size (p, wordlen, &desc->size))
+ gboolean size_is_absolute;
+ if (parse_size (p, wordlen, &desc->size, &size_is_absolute))
{
+ desc->size_is_absolute = size_is_absolute;
desc->mask |= PANGO_FONT_MASK_SIZE;
last = p;
}
@@ -1015,7 +1025,7 @@ pango_font_description_to_string (const PangoFontDescription *desc)
p = getword (desc->family_name, desc->family_name + strlen(desc->family_name), &wordlen);
if (wordlen != 0 &&
(find_field_any (p, wordlen, NULL) ||
- (parse_size (p, wordlen, NULL) &&
+ (parse_size (p, wordlen, NULL, NULL) &&
desc->weight == PANGO_WEIGHT_NORMAL &&
desc->style == PANGO_STYLE_NORMAL &&
desc->stretch == PANGO_STRETCH_NORMAL &&
@@ -1041,6 +1051,9 @@ pango_font_description_to_string (const PangoFontDescription *desc)
g_ascii_dtostr (buf, sizeof (buf), (double)desc->size / PANGO_SCALE);
g_string_append (result, buf);
+
+ if (desc->size_is_absolute)
+ g_string_append (result, "px");
}
return g_string_free (result, FALSE);