Java Swing Font Set setUIFont(FontUIResource f)

Here you can find the source of setUIFont(FontUIResource f)

Description

Sets the default font for all Swing components.

License

Open Source License

Parameter

Parameter Description
f the f

Declaration

public static void setUIFont(FontUIResource f) 

Method Source Code

//package com.java2s;
/*//from w  w w.ja va  2s.c o m
 * aTunes 1.12.0
 * Copyright (C) 2006-2009 Alex Aranda, Sylvain Gaudard, Thomas Beckers and contributors
 *
 * See http://www.atunes.org/wiki/index.php?title=Contributing for information about contributors
 *
 * http://www.atunes.org
 * http://sourceforge.net/projects/atunes
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * 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 General Public License for more details.
 */

import java.util.Enumeration;

import javax.swing.UIManager;
import javax.swing.plaf.FontUIResource;

public class Main {
    /**
     * Sets the default font for all Swing components.
     * 
     * @param f
     *            the f
     */
    public static void setUIFont(FontUIResource f) {
        Enumeration<Object> keys = UIManager.getDefaults().keys();
        while (keys.hasMoreElements()) {
            Object key = keys.nextElement();
            Object value = UIManager.get(key);
            if (value instanceof FontUIResource) {
                UIManager.put(key, f);
            }
        }
    }
}

Related

  1. setUIFont(Font f)
  2. setUIFont(Font fon)
  3. setUIFont(FontUIResource f)
  4. setUIFont(FontUIResource f)
  5. setUIFont(FontUIResource f)
  6. setUIFont(FontUIResource f)
  7. setUIFont(javax.swing.plaf.FontUIResource f)
  8. setUIFont(javax.swing.plaf.FontUIResource f)
  9. setUIFont(javax.swing.plaf.FontUIResource f)