summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2008-02-26 01:30:58 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2008-02-26 01:30:58 +0000
commit6b7891aa7204265878270edc448aaaae396838f1 (patch)
tree6aeee82b761d6db28579ce15859f8c37ccb66c65
parentce6da4f504e9fc96b250a775cec8916375d70de5 (diff)
downloadpango-6b7891aa7204265878270edc448aaaae396838f1.tar.gz
Bug 511172 – pango_layout_set_height() with positive height always shows
2008-02-25 Behdad Esfahbod <behdad@gnome.org> Bug 511172 – pango_layout_set_height() with positive height always shows at least two lines * pango/pango-layout.c (should_ellipsize_current_line), (pango_layout_check_lines), (pango_layout_get_empty_extents_at_index), (pango_layout_line_get_empty_extents): Initialize line_height using empty-line extents. svn path=/trunk/; revision=2577
-rw-r--r--ChangeLog11
-rw-r--r--pango/pango-layout.c34
2 files changed, 36 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog
index e3d8bbcf..7b22ba7b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2008-02-25 Behdad Esfahbod <behdad@gnome.org>
+
+ Bug 511172 – pango_layout_set_height() with positive height always
+ shows at least two lines
+
+ * pango/pango-layout.c (should_ellipsize_current_line),
+ (pango_layout_check_lines),
+ (pango_layout_get_empty_extents_at_index),
+ (pango_layout_line_get_empty_extents):
+ Initialize line_height using empty-line extents.
+
2008-02-25 Tor Lillqvist <tml@novell.com>
Bug 515484 – Uniscribe interface handles surrogate
diff --git a/pango/pango-layout.c b/pango/pango-layout.c
index 4a116f91..137ebabd 100644
--- a/pango/pango-layout.c
+++ b/pango/pango-layout.c
@@ -177,6 +177,10 @@ static PangoLayoutLine* _pango_layout_iter_get_line (PangoLayoutIter *iter);
static void pango_layout_get_item_properties (PangoItem *item,
ItemProperties *properties);
+static void pango_layout_get_empty_extents_at_index (PangoLayout *layout,
+ int index,
+ PangoRectangle *logical_rect);
+
static void pango_layout_finalize (GObject *object);
G_DEFINE_TYPE (PangoLayout, pango_layout, G_TYPE_OBJECT)
@@ -396,6 +400,10 @@ pango_layout_get_width (PangoLayout *layout)
* paragraph. That is, the total number of lines shown may well be more than
* this value if the layout contains multiple paragraphs of text.
* The default value of -1 means that first line of each paragraph is ellipsized.
+ * This behvaior may be changed in the future to act per layout instead of per
+ * paragraph. File a bug against pango at <ulink
+ * url="http://bugzilla.gnome.org/">http://bugzilla.gnome.org/</ulink> if your
+ * code relies on this behavior.
*
* Height setting only has effect if a positive width is set on
* @layout and ellipsization mode of @layout is not %PANGO_ELLIPSIZE_NONE.
@@ -3389,7 +3397,7 @@ should_ellipsize_current_line (PangoLayout *layout,
}
else
{
- /* -layout->height is numbre of lines per paragraph to show */
+ /* -layout->height is number of lines per paragraph to show */
return state->line_of_par == - layout->height;
}
}
@@ -3705,6 +3713,12 @@ pango_layout_check_lines (PangoLayout *layout)
/* these are only used if layout->height >= 0 */
state.remaining_height = layout->height;
state.line_height = -1;
+ if (layout->height >= 0)
+ {
+ PangoRectangle logical;
+ pango_layout_get_empty_extents_at_index (layout, 0, &logical);
+ state.line_height = logical.height;
+ }
do
{
@@ -4257,21 +4271,16 @@ pango_layout_line_get_x_ranges (PangoLayoutLine *line,
}
static void
-pango_layout_line_get_empty_extents (PangoLayoutLine *line,
- PangoRectangle *logical_rect)
+pango_layout_get_empty_extents_at_index (PangoLayout *layout,
+ int index,
+ PangoRectangle *logical_rect)
{
if (logical_rect)
{
- char *line_start;
- int index;
- PangoLayout *layout = line->layout;
PangoFont *font;
PangoFontDescription *font_desc = NULL;
gboolean free_font_desc = FALSE;
- pango_layout_line_get_range (line, &line_start, NULL);
- index = line_start - layout->text;
-
/* Find the font description for this line
*/
if (layout->attrs)
@@ -4353,6 +4362,13 @@ pango_layout_line_get_empty_extents (PangoLayoutLine *line,
}
static void
+pango_layout_line_get_empty_extents (PangoLayoutLine *line,
+ PangoRectangle *logical_rect)
+{
+ pango_layout_get_empty_extents_at_index (line->layout, line->start_index, logical_rect);
+}
+
+static void
pango_layout_run_get_extents (PangoLayoutRun *run,
PangoRectangle *run_ink,
PangoRectangle *run_logical)