Lines Matching refs:paragraph

23  * \brief C API for paragraph layout.
31 * The opaque type for a paragraph layout.
38 * The opaque type for a line in a paragraph layout.
52 * Construct a <code>ParagraphLayout</code> object for a styled paragraph. The paragraph is specified
63 * @param chars is an array of the characters in the paragraph
65 * @param count is the number of characters in the paragraph.
81 * @param paragraphLevel is the directionality of the paragraph, as in the UBiDi object.
83 * @param vertical is <code>TRUE</code> if the paragraph should be set vertically.
108 * Close the given paragraph layout object.
110 * @param paragraph the <code>pl_paragraph</code> object to be
117 pl_close(pl_paragraph *paragraph);
123 * @param chars is an array of the characters in the paragraph
125 * @param count is the number of characters in the paragraph.
137 * Return the resolved paragraph level. This is useful for those cases
139 * strong character in the paragraph.
141 * @param paragraph the <code>pl_paragraph</code>
143 * @return the resolved paragraph level.
148 pl_getParagraphLevel(pl_paragraph *paragraph);
151 * Return the directionality of the text in the paragraph.
153 * @param paragraph the <code>pl_paragraph</code>
162 pl_getTextDirection(pl_paragraph *paragraph);
166 * in the paragraph.
168 * @param paragraph the <code>pl_paragraph</code>
171 * in the paragraph.
173 * @param paragraph the <code>pl_paragraph</code>
180 pl_getAscent(const pl_paragraph *paragraph);
184 * in the paragraph.
186 * @param paragraph the <code>pl_paragraph</code>
193 pl_getDescent(const pl_paragraph *paragraph);
197 * in the paragraph.
199 * @param paragraph the <code>pl_paragraph</code>
206 pl_getLeading(const pl_paragraph *paragraph);
209 * Reset line breaking to start from the beginning of the paragraph.
211 * @param paragraph the <code>pl_paragraph</code>
216 pl_reflow(pl_paragraph *paragraph);
220 * in the paragraph. The width of the line is specified each time so that it can
221 * be varied to support arbitrary paragraph shapes.
223 * @param paragraph the <code>pl_paragraph</code>
226 * rest of the paragraph will be returned.
230 * more lines in the paragraph.
237 pl_nextLine(pl_paragraph *paragraph, float width);
412 * the glyph array to indices into the character array used to create the paragraph.