KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > eclipse > swt > internal > cairo > cairo_font_extents_t


1 /* ***** BEGIN LICENSE BLOCK *****
2  * Version: MPL 1.1
3  *
4  * The contents of this file are subject to the Mozilla Public License Version
5  * 1.1 (the "License"); you may not use this file except in compliance with
6  * the License. You may obtain a copy of the License at
7  * http://www.mozilla.org/MPL/
8  *
9  * Software distributed under the License is distributed on an "AS IS" basis,
10  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11  * for the specific language governing rights and limitations under the
12  * License.
13  *
14  * Contributor(s):
15  *
16  * IBM
17  * - Binding to permit interfacing between Cairo and SWT
18  * - Copyright (C) 2005 IBM Corp. All Rights Reserved.
19  *
20  * ***** END LICENSE BLOCK ***** */

21 package org.eclipse.swt.internal.cairo;
22
23
24 public class cairo_font_extents_t {
25     public float ascent;
26     public float descent;
27     public float height;
28     public float max_x_advance;
29     public float max_y_advance;
30     public static final int sizeof = Cairo.cairo_font_extents_t_sizeof();
31 }
32
Popular Tags