Home | History | Annotate | Download | only in layout

Lines Matching full:line

38  * The opaque type for a line in a paragraph layout.
45 * The opaque type for a visual run in a line.
209 * Reset line breaking to start from the beginning of the paragraph.
219 * Return a <code>pl_line</code> object which represents next line
220 * in the paragraph. The width of the line is specified each time so that it can
224 * @param width is the width of the line. If <code>width</code> is less than or equal
225 * to zero, a <code>ParagraphLayout::Line</code> object representing the
228 * @return a <code>ParagraphLayout::Line</code> object which represents the line. The caller
240 * Close the given line object. Line objects are created
244 * @param line the <code>pl_line</code> object to close.
249 pl_closeLine(pl_line *line);
252 * Count the number of visual runs in the line.
254 * @param line the <code>pl_line</code> object.
261 pl_countLineRuns(const pl_line *line);
264 * Get the ascent of the line. This is the maximum ascent
265 * of all the fonts on the line.
267 * @param line the <code>pl_line</code> object.
269 * @return the ascent of the line.
274 pl_getLineAscent(const pl_line *line);
277 * Get the descent of the line. This is the maximum descent
278 * of all the fonts on the line.
280 * @param line the <code>pl_line</code> object.
282 * @return the descent of the line.
287 pl_getLineDescent(const pl_line *line);
290 * Get the leading of the line. This is the maximum leading
291 * of all the fonts on the line.
293 * @param line the <code>pl_line</code> object.
295 * @return the leading of the line.
300 pl_getLineLeading(const pl_line *line);
303 * Get the width of the line. This is a convenience method
305 * in the line.
307 * @param line the <code>pl_line</code> object.
309 * @return the width of the line.
314 pl_getLineWidth(const pl_line *line);
318 * visual run in the line.
320 * @param line the <code>pl_line</code> object.
333 pl_getLineVisualRun(const pl_line *line, le_int32 runIndex);
358 * run is left-to-right and <code>UBIDI_RTL</code> if the line is right-to-left.