/*! * This program is free software; you can redistribute it and/or modify it under the * terms of the GNU Lesser General Public License, version 2.1 as published by the Free Software * Foundation. * * You should have received a copy of the GNU Lesser General Public License along with this * program; if not, you can obtain a copy at http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html * or from the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU Lesser General Public License for more details. * * Copyright (c) 2002-2013 Pentaho Corporation.. All rights reserved. */ package org.pentaho.reporting.engine.classic.core.testsupport.font; import org.pentaho.reporting.libraries.fonts.registry.FontFamily; import org.pentaho.reporting.libraries.fonts.registry.FontIdentifier; import org.pentaho.reporting.libraries.fonts.registry.FontRecord; import org.pentaho.reporting.libraries.fonts.registry.FontType; public class LocalFontRecord implements FontIdentifier, FontRecord { private FontFamily fontFamily; private boolean bold; private boolean italics; private String originatingFile; public LocalFontRecord( final FontFamily fontFamily, final String originatingFile, final boolean bold, final boolean italics ) { if ( fontFamily == null ) { throw new NullPointerException(); } this.originatingFile = originatingFile; this.fontFamily = fontFamily; this.bold = bold; this.italics = italics; } public String getOriginatingFile() { return originatingFile; } /** * Returns the family for this record. * * @return the font family. */ public FontFamily getFamily() { return fontFamily; } /** * Returns true, if this font corresponds to a bold version of the font. A font that does not provide a bold face must * emulate the boldness using other means. * * @return true, if the font provides bold glyphs, false otherwise. */ public boolean isBold() { return bold; } /** * Returns true, if this font includes italic glyphs. Italics is different from oblique, as certain glyphs (most * notably the lowercase 'f') will have a different appearance, making the font look more like a script font. * * @return true, if the font is italic. */ public boolean isItalic() { return italics; } /** * Returns tue, if this font's italic mode is in fact some sort of being oblique. An oblique font's glyphs are * sheared, but they are not made to look more script like. * * @return true, if the font is oblique. */ public boolean isOblique() { return italics; } public FontIdentifier getIdentifier() { return this; } /** * Defines, whether the font identifier represents a scalable font type. Such fonts usually create one font metric * object for each physical font, and apply the font size afterwards. * * @return true, if the font is scalable, false otherwise */ public boolean isScalable() { return true; } public FontType getFontType() { return FontType.OTHER; } public boolean equals( final Object o ) { if ( this == o ) { return true; } if ( o == null || getClass() != o.getClass() ) { return false; } final LocalFontRecord that = (LocalFontRecord) o; if ( bold != that.bold ) { return false; } if ( italics != that.italics ) { return false; } if ( !fontFamily.equals( that.fontFamily ) ) { return false; } return true; } public int hashCode() { int result = fontFamily.hashCode(); result = 29 * result + ( bold ? 1 : 0 ); result = 29 * result + ( italics ? 1 : 0 ); return result; } }