summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>2004-07-14 22:17:36 +0000
committerOwen Taylor <otaylor@src.gnome.org>2004-07-14 22:17:36 +0000
commite8451d0463303bbaa3ba3d840d7985f9120ba58a (patch)
tree9ce3e64b7191ea3dc352e101ccd552231e9bbc59 /docs
parent731bd56653de86e2298cd8b04c320fca82bb2f9f (diff)
downloadpango-e8451d0463303bbaa3ba3d840d7985f9120ba58a.tar.gz
Add PangoEllipsizeMode, pango_layout_set_ellipsize(), implement. (#59071)
Wed Jul 14 17:47:38 2004 Owen Taylor <otaylor@redhat.com> * pango/pango-layout.[ch] pango/ellipsize.c pango/Makefile.am: Add PangoEllipsizeMode, pango_layout_set_ellipsize(), implement. (#59071) * pango/pango-layout-private.h pango/pango-layout.c: Move PangoLayout structure into a separate header file. * pango/pango-glyph-item.[ch]: Add pango_glyph_item_free(). * pango/pango-glyph-item-private.h pango/pango-glyph-item.c: Internally export the PangoGlyphItemIter functionality. * examples/renderdemo.[ch]: Add --ellipsize option.
Diffstat (limited to 'docs')
-rw-r--r--docs/Makefile.am2
-rw-r--r--docs/pango-sections.txt8
-rw-r--r--docs/tmpl/glyphs.sgml15
-rw-r--r--docs/tmpl/layout.sgml35
-rw-r--r--docs/tmpl/main.sgml9
-rw-r--r--docs/tmpl/opentype.sgml9
6 files changed, 78 insertions, 0 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am
index aaa468f3..aefc843f 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -27,6 +27,8 @@ IGNORE_HFILES= \
modules.h \
pango-engine-private.h \
pango-impl-utils.h \
+ pango-glyph-item-private.h \
+ pango-layout-private.h \
pango-script-table.h \
pango-utils.h \
pangofc-private.h \
diff --git a/docs/pango-sections.txt b/docs/pango-sections.txt
index 5a55d943..cae925bd 100644
--- a/docs/pango-sections.txt
+++ b/docs/pango-sections.txt
@@ -18,6 +18,7 @@ pango_reorder_items
<SUBSECTION>
pango_context_new
pango_context_set_font_map
+pango_context_get_font_map
pango_context_get_font_description
pango_context_set_font_description
pango_context_get_language
@@ -95,9 +96,11 @@ pango_glyph_string_get_logical_widths
pango_glyph_item_split
pango_glyph_item_apply_attrs
pango_glyph_item_letter_space
+pango_glyph_item_free
<SUBSECTION Private>
pango_glyph_string_get_type
+pango_matrix_get_type
</SECTION>
<SECTION>
@@ -402,6 +405,10 @@ pango_layout_set_wrap
pango_layout_get_wrap
PangoWrapMode
PANGO_TYPE_WRAP_MODE
+pango_layout_set_ellipsize
+pango_layout_get_ellipsize
+PangoEllipsizeMode
+PANGO_TYPE_ELLIPSIZE_MODE
pango_layout_set_indent
pango_layout_get_indent
pango_layout_get_spacing
@@ -479,6 +486,7 @@ pango_layout_get_type
pango_layout_iter_get_type
pango_alignment_get_type
pango_wrap_mode_get_type
+pango_ellipsize_mode_get_type
</SECTION>
<SECTION>
diff --git a/docs/tmpl/glyphs.sgml b/docs/tmpl/glyphs.sgml
index 435d939d..35b4fbe8 100644
--- a/docs/tmpl/glyphs.sgml
+++ b/docs/tmpl/glyphs.sgml
@@ -110,6 +110,13 @@ horizontal origin.
@x0:
@y0:
+<!-- ##### MACRO PANGO_TYPE_MATRIX ##### -->
+<para>
+
+</para>
+
+
+
<!-- ##### MACRO PANGO_MATRIX_INIT ##### -->
<para>
@@ -404,3 +411,11 @@ The GObject type for #PangoGlyphString.
@letter_spacing:
+<!-- ##### FUNCTION pango_glyph_item_free ##### -->
+<para>
+
+</para>
+
+@glyph_item:
+
+
diff --git a/docs/tmpl/layout.sgml b/docs/tmpl/layout.sgml
index 90b228e5..2f9c0398 100644
--- a/docs/tmpl/layout.sgml
+++ b/docs/tmpl/layout.sgml
@@ -215,6 +215,41 @@ The GObject type for #PangoWrapMode.
+<!-- ##### FUNCTION pango_layout_set_ellipsize ##### -->
+<para>
+
+</para>
+
+@layout:
+@ellipsize:
+
+
+<!-- ##### FUNCTION pango_layout_get_ellipsize ##### -->
+<para>
+
+</para>
+
+@layout:
+@Returns:
+
+
+<!-- ##### ENUM PangoEllipsizeMode ##### -->
+<para>
+
+</para>
+
+@PANGO_ELLIPSIZE_NONE:
+@PANGO_ELLIPSIZE_START:
+@PANGO_ELLIPSIZE_MIDDLE:
+@PANGO_ELLIPSIZE_END:
+
+<!-- ##### MACRO PANGO_TYPE_ELLIPSIZE_MODE ##### -->
+<para>
+The GObject type for #PangoEllipsizeMode.
+</para>
+
+
+
<!-- ##### FUNCTION pango_layout_set_indent ##### -->
<para>
diff --git a/docs/tmpl/main.sgml b/docs/tmpl/main.sgml
index 904853e1..669003ec 100644
--- a/docs/tmpl/main.sgml
+++ b/docs/tmpl/main.sgml
@@ -160,6 +160,15 @@ The GObject type for #PangoDirection.
@font_map:
+<!-- ##### FUNCTION pango_context_get_font_map ##### -->
+<para>
+
+</para>
+
+@context:
+@Returns:
+
+
<!-- ##### FUNCTION pango_context_get_font_description ##### -->
<para>
diff --git a/docs/tmpl/opentype.sgml b/docs/tmpl/opentype.sgml
index f77eb3b4..9de20ae6 100644
--- a/docs/tmpl/opentype.sgml
+++ b/docs/tmpl/opentype.sgml
@@ -195,6 +195,15 @@ identify the various OpenType tables in the
@cluster:
+<!-- ##### FUNCTION pango_ot_buffer_set_rtl ##### -->
+<para>
+
+</para>
+
+@buffer:
+@rtl:
+
+
<!-- ##### FUNCTION pango_ot_buffer_set_zero_width_marks ##### -->
<para>