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

io.github.dheid.fontchooser.FontContainer Maven / Gradle / Ivy

Go to download

A Java Swing Component to choose a font according to the list of available font families, styles and sizes.

The newest version!
package io.github.dheid.fontchooser;

import java.awt.Font;


/**
 * Created by dheid on 4/1/17.
 */
public interface FontContainer {

    String getSelectedStyle();

    float getSelectedSize();

    String getSelectedFamily();

    Font getSelectedFont();

    void setSelectedFont(Font font);

    void setPreviewFont(Font font);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy