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

org.microemu.device.swt.SwtSystemFont Maven / Gradle / Ivy

The newest version!
/*
 *  MicroEmulator
 *  Copyright (C) 2006 Bartek Teodorczyk 
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library 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.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */

package org.microemu.device.swt;

import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.Font;
import org.microemu.app.ui.swt.SwtDeviceComponent;

public class SwtSystemFont implements SwtFont {

	private String name;
	
	private String style;
	
	private int size;
	
	private boolean antialiasing;
	
	private boolean initialized;
	
	private Font font;

	public SwtSystemFont(String name, String style, int size, boolean antialiasing) {
		this.name = name;
		this.style = style.toLowerCase();
		this.size = size;
		this.antialiasing = antialiasing;
		
		this.initialized = false;
	}

	public void setAntialiasing(boolean antialiasing) {
		if (this.antialiasing != antialiasing) {
			this.antialiasing = antialiasing;
			initialized = false;
		}
	}

	public Font getFont() {
		checkInitialized();

		return font;
	}

	private synchronized void checkInitialized() {
		if (!initialized) {
			int swtStyle = 0;
			if (style.indexOf("plain") != -1) {
				swtStyle |= SWT.NORMAL;
			}
			if (style.indexOf("bold") != -1) {
				swtStyle |= SWT.BOLD;
			}
			if (style.indexOf("italic") != -1) {
				swtStyle |= SWT.ITALIC;
			}
			if (style.indexOf("underlined") != -1) {
				// TODO underlined style not implemented
			}
			font = SwtDeviceComponent.getFont(name, size, swtStyle, antialiasing);
			initialized = true;
		}
	}

	public int charWidth(char ch) {
		return charsWidth(new char[] {ch}, 0, 1);
	}

	public int charsWidth(char[] ch, int offset, int length) {
		checkInitialized();

		return SwtDeviceComponent.stringWidth(font, new String(ch, offset, length));
	}

	public int getBaselinePosition() {
		checkInitialized();
		
		return SwtDeviceComponent.getFontMetrics(font).getAscent();
	}

	public int getHeight() {
		checkInitialized();
		
		return SwtDeviceComponent.getFontMetrics(font).getHeight();
	}

	public int stringWidth(String str) {
		checkInitialized();
		
		return SwtDeviceComponent.stringWidth(font, str);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy