1 /*******************************************************************************
2  * Copyright (c) 2000, 2012 IBM Corporation and others. All rights reserved.
3  * The contents of this file are made available under the terms
4  * of the GNU Lesser General Public License (LGPL) Version 2.1 that
5  * accompanies this distribution (lgpl-v21.txt).  The LGPL is also
6  * available at http://www.gnu.org/licenses/lgpl.html.  If the version
7  * of the LGPL at http://www.gnu.org is different to the version of
8  * the LGPL accompanying this distribution and there is any conflict
9  * between the two license versions, the terms of the LGPL accompanying
10  * this distribution shall govern.
11  *
12  * Contributors:
13  *     IBM Corporation - initial API and implementation
14  *******************************************************************************/
15 package org.eclipse.swt.internal.gtk;
16 
17 public class PangoLayoutLine {
18 	/** @field cast=(PangoLayout *) */
19 	public long layout;
20 	public int start_index;
21 	public int length;
22 	/** @field cast=(GSList *) */
23 	public long runs;
24 //	public boolean is_paragraph_start;
25 //	public byte resolved_dir;
26 	public static final int sizeof = OS.PangoLayoutLine_sizeof();
27 }
28