All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.swt.graphics.GlyphMetrics Maven / Gradle / Ivy

Go to download

The osx x86_64 swt jar as available in the Eclipse 4.6 (Neon) release for OSX. It is suitable for use with jface and other dependencies available from maven central in the org.eclipse.scout.sdk.deps group. The sources is copied from swt-4.6-cocoa-macosx-x86_64.zip from http://download.eclipse.org/eclipse/downloads/drops4/R-4.6-201606061100/ and javadoc is generated from sources.

The newest version!
/*******************************************************************************
 * Copyright (c) 2000, 2016 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.graphics;

import org.eclipse.swt.*;
import org.eclipse.swt.internal.*;

/**
 * Instances of this class represent glyph metrics.
 * 

* The hashCode() method in this class uses the values of the public * fields to compute the hash value. When storing instances of the * class in hashed collections, do not modify these fields after the * object has been inserted. *

*

* Application code does not need to explicitly release the * resources managed by each instance when those instances are no longer * required, and thus no dispose() method is provided. *

* * @see TextStyle * @see TextLayout * @see Sample code and further information * * @since 3.2 */ public final class GlyphMetrics { /** * the ascent of the GlyphMetrics */ public int ascent; /** * the descent of the GlyphMetrics */ public int descent; /** * the width of the GlyphMetrics */ public int width; /** * Constructs an instance of this class with the given * ascent, descent and width values. * * @param ascent the GlyphMetrics ascent * @param descent the GlyphMetrics descent * @param width the GlyphMetrics width * * @exception IllegalArgumentException
    *
  • ERROR_INVALID_ARGUMENT - if the ascent, descent or width argument is negative
  • *
*/ public GlyphMetrics(int ascent, int descent, int width) { if (ascent < 0 || descent < 0 || width < 0) { SWT.error(SWT.ERROR_INVALID_ARGUMENT); } this.ascent = ascent; this.descent = descent; this.width = width; } int getAscentInPixels() { return DPIUtil.autoScaleUp(ascent); } int getDescentInPixels() { return DPIUtil.autoScaleUp(descent); } int getWidthInPixels() { return DPIUtil.autoScaleUp(width); } /** * Compares the argument to the receiver, and returns true * if they represent the same object using a class * specific comparison. * * @param object the object to compare with this object * @return true if the object is the same as this object and false otherwise * * @see #hashCode() */ @Override public boolean equals (Object object) { if (object == this) return true; if (!(object instanceof GlyphMetrics)) return false; GlyphMetrics metrics = (GlyphMetrics)object; return metrics.ascent == ascent && metrics.descent == descent && metrics.width == width; } /** * Returns an integer hash code for the receiver. Any two * objects that return true when passed to * equals must return the same value for this * method. * * @return the receiver's hash * * @see #equals(Object) */ @Override public int hashCode () { return ascent ^ descent ^ width; } /** * Returns a string containing a concise, human-readable * description of the receiver. * * @return a string representation of the GlyphMetrics */ @Override public String toString () { return "GlyphMetrics {" + ascent + ", " + descent + ", " + width + "}"; //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy