org.brainwy.liclipsetext.shared_ui.FontUtils.java Source code

Java tutorial

Introduction

Here is the source code for org.brainwy.liclipsetext.shared_ui.FontUtils.java

Source

/**
 * Copyright (c) 2005-2013 by Appcelerator, Inc. All Rights Reserved.
 * Licensed under the terms of the Eclipse Public License (EPL).
 * Please see the license.txt included with this distribution for details.
 * Any modifications to this file must keep this entire header intact.
 */
package org.brainwy.liclipsetext.shared_ui;

import org.brainwy.liclipsetext.shared_core.structure.Tuple;
import org.eclipse.core.runtime.Platform;
import org.eclipse.jface.resource.JFaceResources;
import org.eclipse.osgi.service.environment.Constants;
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.FontData;

/**
 * <p><tt>FontUtils</tt> provides helper methods dealing with
 * <tt>Font</tt>s.</p>
 * 
 * @author Andr Berg
 * @version 0.2
 */
public class FontUtils {

    /**
     * Selects a proper font name and height for various usage cases of monospaced fonts throughout Pydev.
     * 
     * @param usage intended usage. See {@link IFontUsage} for valid values.
     * @return a {@link Tuple} containing the font name as {@link String} and the base height as {@link Integer}.
     * @throws IllegalArgumentException if <tt>usage</tt> is not found in {@link IFontUsage}.
     */
    private static Tuple<String, Integer> getCodeFontNameAndHeight(int usage) throws IllegalArgumentException {
        String fontName = "Courier New";
        int fontHeight = 10;
        if (Platform.getOS().equals(Constants.OS_MACOSX)) {
            switch (usage) {
            case IFontUsage.STYLED:
                fontName = "Monaco";
                fontHeight = 11;
                break;
            case IFontUsage.DIALOG:
                // on OS X we need a different font because 
                // under Mac SWT the bitmap font rasterizer 
                // doesn't take hinting into account and thus 
                // makes small fonts rendered as bitmaps unreadable
                // see http://aptanastudio.tenderapp.com/discussions/problems/2052-some-dialogs-have-unreadable-small-font-size
                fontName = "Courier";
                fontHeight = 11;
                break;
            case IFontUsage.WIDGET:
                fontName = "Monaco";
                fontHeight = 9;
                break;
            case IFontUsage.IMAGECACHE:
                fontName = "Monaco";
                fontHeight = 11;
                break;
            case IFontUsage.SMALLUI:
                fontName = "Monaco";
                fontHeight = 9;
                break;

            default:
                throw new IllegalArgumentException("Invalid usage. See IFontUsage for valid values.");
            }
        } else {
            switch (usage) {
            case IFontUsage.STYLED:
                fontName = "Courier New";
                fontHeight = 10;
                break;
            case IFontUsage.DIALOG:
                fontName = "Courier New";
                fontHeight = 8;
                break;
            case IFontUsage.WIDGET:
                fontName = "Courier New";
                fontHeight = 10;
                break;
            case IFontUsage.IMAGECACHE:
                fontName = "Courier New";
                fontHeight = 9;
                break;
            case IFontUsage.SMALLUI:
                fontName = "Courier New";
                fontHeight = 8;
                break;

            default:
                throw new IllegalArgumentException("Invalid usage. See IFontUsage for valid values.");
            }
        }
        return new Tuple<String, Integer>(fontName, fontHeight);
    }

    /**
     * Calls {@link #getFontData(int, boolean)} with {@link SWT#NONE} for the style param.
     * @see {@link #getFontData(int, int, boolean)}
     */
    public static FontData getFontData(int usage, boolean useDefaultJFaceFontIfPossible) {
        return getFontData(usage, SWT.NONE, useDefaultJFaceFontIfPossible);
    }

    /**
     * Select a monospaced font based on intended usage. 
     * Can be used to provide a consistend code font size between platforms.
     * 
     * @param usage intended usage. See {@link IFontUsage} for valid values.
     * @param style SWT style constants mask
     * @param useDefaultJFaceFontIfPossible
     * @return {@link FontData} object
     */
    public static FontData getFontData(int usage, int style, boolean useDefaultJFaceFontIfPossible) {
        if (useDefaultJFaceFontIfPossible) {
            FontData[] textFontData = JFaceResources.getTextFont().getFontData();
            if (textFontData.length == 1) {
                return textFontData[0];
            }
        }
        Tuple<String, Integer> codeFontDetails = FontUtils.getCodeFontNameAndHeight(usage);
        String fontName = codeFontDetails.o1;
        int base = codeFontDetails.o2.intValue();
        return new FontData(fontName, base, style);
    }
}