blob: 6d9a8bf5fe297197f74cf46daaacc1400afd9166 [file] [log] [blame]
package org.eclipse.swt.graphics;
/*
* Copyright (c) 2000, 2002 IBM Corp. All rights reserved.
* This file is made available under the terms of the Common Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v10.html
*/
import org.eclipse.swt.internal.photon.*;
/**
* Instances of this class provide measurement information
* about fonts including ascent, descent, height, leading
* space between rows, and average character width.
* <code>FontMetrics</code> are obtained from <code>GC</code>s
* using the <code>getFontMetrics()</code> method.
*
* @see GC#getFontMetrics
*/
public final class FontMetrics {
/**
* On Windows, handle is a Win32 TEXTMETRIC struct
* On Photon, handle is a Photon FontQueryInfo struct
* (Warning: This field is platform dependent)
*/
public FontQueryInfo handle;
FontMetrics() {
}
/**
* Compares the argument to the receiver, and returns true
* if they represent the <em>same</em> object using a class
* specific comparison.
*
* @param object the object to compare with this object
* @return <code>true</code> if the object is the same as this object and <code>false</code> otherwise
*
* @see #hashCode
*/
public boolean equals (Object object) {
if (object == this) return true;
if (!(object instanceof FontMetrics)) return false;
FontQueryInfo info = ((FontMetrics)object).handle;
if (info == handle) return true;
if (info == null || handle == null) return false;
if (handle.size == info.size &&
handle.style == info.style &&
handle.ascender == info.ascender &&
handle.descender == info.descender &&
handle.width == info.width &&
handle.lochar == info.lochar &&
handle.hichar == info.hichar &&
handle.desc.length == info.desc.length &&
handle.font.length == info.font.length)
{
for (int i = handle.font.length - 1; i >= 0; i--) {
if (handle.font[i] != info.font[i]) return false;
}
return true;
}
return false;
}
/**
* Returns the ascent of the font described by the receiver. A
* font's <em>ascent</em> is the distance from the baseline to the
* top of actual characters, not including any of the leading area,
* measured in pixels.
*
* @return the ascent of the font
*/
public int getAscent() {
return -handle.ascender;
}
/**
* Returns the average character width, measured in pixels,
* of the font described by the receiver.
*
* @return the average character width of the font
*/
public int getAverageCharWidth() {
if ((handle.style & OS.PHFONT_INFO_FIXED) != 0) return handle.width;
return handle.width / 3;
}
/**
* Returns the descent of the font described by the receiver. A
* font's <em>descent</em> is the distance from the baseline to the
* bottom of actual characters, not including any of the leading area,
* measured in pixels.
*
* @return the descent of the font
*/
public int getDescent() {
return handle.descender;
}
/**
* Returns the height of the font described by the receiver,
* measured in pixels. A font's <em>height</em> is the sum of
* its ascent, descent and leading area.
*
* @return the height of the font
*
* @see #getAscent
* @see #getDescent
* @see #getLeading
*/
public int getHeight() {
return -handle.ascender + handle.descender;
}
/**
* Returns the leading area of the font described by the
* receiver. A font's <em>leading area</em> is the space
* above its ascent which may include accents or other marks.
*
* @return the leading space of the font
*/
public int getLeading() {
return 0;
}
/**
* Returns an integer hash code for the receiver. Any two
* objects which return <code>true</code> when passed to
* <code>equals</code> must return the same value for this
* method.
*
* @return the receiver's hash
*
* @see #equals
*/
public int hashCode() {
if (handle == null) return 0;
return handle.size ^ handle.style ^ handle.ascender ^
handle.descender ^ handle.width ^
handle.lochar ^ handle.hichar ^ handle.font.hashCode() ^
handle.desc.hashCode();
}
public static FontMetrics photon_new(FontQueryInfo handle) {
FontMetrics fontMetrics = new FontMetrics();
fontMetrics.handle = handle;
return fontMetrics;
}
}