diff options
author | Noah Levitt <nlevitt@columbia.edu> | 2003-11-25 21:28:13 +0000 |
---|---|---|
committer | Noah Levitt <nlevitt@src.gnome.org> | 2003-11-25 21:28:13 +0000 |
commit | 3293fbd32eb9a024b05dee32dcaf1fc175546bc6 (patch) | |
tree | 77c10d8b21ebb32830cb49699c25218282c008ae /pango/pango-layout.h | |
parent | 6495fbc14fe9a55d540a21c578e7f067b2edbe6b (diff) | |
download | pango-3293fbd32eb9a024b05dee32dcaf1fc175546bc6.tar.gz |
Add --indent=n option.
2003-11-25 Noah Levitt <nlevitt@columbia.edu>
* examples/pangoft2topgm.c: Add --indent=n option.
* pango/pango-layout.[ch]: Indent the first line of every paragraph,
not just the first line in the layout. (#66626)
Diffstat (limited to 'pango/pango-layout.h')
-rw-r--r-- | pango/pango-layout.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pango/pango-layout.h b/pango/pango-layout.h index f3c8dfce..b490cedd 100644 --- a/pango/pango-layout.h +++ b/pango/pango-layout.h @@ -54,6 +54,7 @@ struct _PangoLayoutLine gint start_index; /* start of line as byte index into layout->text */ gint length; /* length of line in bytes */ GSList *runs; + guint is_paragraph_start : 1; /* TRUE if this is the first line of the paragraph */ }; #define PANGO_TYPE_LAYOUT (pango_layout_get_type ()) |