Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSilenio Quarti2009-07-01 14:50:54 +0000
committerSilenio Quarti2009-07-01 14:50:54 +0000
commit093c579a4ffd9551acb901bba9617e7aa776989d (patch)
tree71cf23798b651ef92f188390841a8d130908fb11 /bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OUTLINETEXTMETRIC.java
parentf664d297f7bb009784868bf3fcf0b3e3bb9a646b (diff)
downloadeclipse.platform.swt-093c579a4ffd9551acb901bba9617e7aa776989d.tar.gz
eclipse.platform.swt-093c579a4ffd9551acb901bba9617e7aa776989d.tar.xz
eclipse.platform.swt-093c579a4ffd9551acb901bba9617e7aa776989d.zip
restore HEAD after accidental deletion by error in automated build script
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OUTLINETEXTMETRIC.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OUTLINETEXTMETRIC.java69
1 files changed, 69 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OUTLINETEXTMETRIC.java b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OUTLINETEXTMETRIC.java
new file mode 100644
index 0000000000..24a2578eb2
--- /dev/null
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/win32/org/eclipse/swt/internal/win32/OUTLINETEXTMETRIC.java
@@ -0,0 +1,69 @@
+/*******************************************************************************
+ * Copyright (c) 2007, 2008 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.swt.internal.win32;
+
+public class OUTLINETEXTMETRIC {
+ public int otmSize;
+ public byte otmFiller;
+ /** @field accessor=otmPanoseNumber.bFamilyType */
+ public byte otmPanoseNumber_bFamilyType;
+ /** @field accessor=otmPanoseNumber.bSerifStyle */
+ public byte otmPanoseNumber_bSerifStyle;
+ /** @field accessor=otmPanoseNumber.bWeight */
+ public byte otmPanoseNumber_bWeight;
+ /** @field accessor=otmPanoseNumber.bProportion */
+ public byte otmPanoseNumber_bProportion;
+ /** @field accessor=otmPanoseNumber.bContrast */
+ public byte otmPanoseNumber_bContrast;
+ /** @field accessor=otmPanoseNumber.bStrokeVariation */
+ public byte otmPanoseNumber_bStrokeVariation;
+ /** @field accessor=otmPanoseNumber.bArmStyle */
+ public byte otmPanoseNumber_bArmStyle;
+ /** @field accessor=otmPanoseNumber.bLetterform */
+ public byte otmPanoseNumber_bLetterform;
+ /** @field accessor=otmPanoseNumber.bMidline */
+ public byte otmPanoseNumber_bMidline;
+ /** @field accessor=otmPanoseNumber.bXHeight */
+ public byte otmPanoseNumber_bXHeight;
+ public int otmfsSelection;
+ public int otmfsType;
+ public int otmsCharSlopeRise;
+ public int otmsCharSlopeRun;
+ public int otmItalicAngle;
+ public int otmEMSquare;
+ public int otmAscent;
+ public int otmDescent;
+ public int otmLineGap;
+ public int otmsCapEmHeight;
+ public int otmsXHeight;
+ public RECT otmrcFontBox = new RECT();
+ public int otmMacAscent;
+ public int otmMacDescent;
+ public int otmMacLineGap;
+ public int otmusMinimumPPEM;
+ public POINT otmptSubscriptSize = new POINT();
+ public POINT otmptSubscriptOffset = new POINT();
+ public POINT otmptSuperscriptSize = new POINT();
+ public POINT otmptSuperscriptOffset = new POINT();
+ public int otmsStrikeoutSize;
+ public int otmsStrikeoutPosition;
+ public int otmsUnderscoreSize;
+ public int otmsUnderscorePosition;
+ /** @field cast=(PSTR) */
+ public int /*long*/ otmpFamilyName;
+ /** @field cast=(PSTR) */
+ public int /*long*/ otmpFaceName;
+ /** @field cast=(PSTR) */
+ public int /*long*/ otmpStyleName;
+ /** @field cast=(PSTR) */
+ public int /*long*/ otmpFullName;
+ public static final int sizeof = OS.IsUnicode ? OS.OUTLINETEXTMETRICW_sizeof (): OS.OUTLINETEXTMETRICA_sizeof ();
+}

Back to the top