Java Swing Font createTextAttributes(Font baseFont, Color color, boolean bold, boolean italic)

Here you can find the source of createTextAttributes(Font baseFont, Color color, boolean bold, boolean italic)

Description

Creates text style attributes with the specified properties.

License

Apache License

Declaration

static AttributeSet createTextAttributes(Font baseFont, Color color, boolean bold, boolean italic) 

Method Source Code

//package com.java2s;
/*/*from  w  w w .  ja  v a  2  s . com*/
 * Copyright 2013 Anton Karmanov
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.awt.Color;
import java.awt.Font;

import javax.swing.text.AttributeSet;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.StyleConstants;

public class Main {
    /**
     * Creates text style attributes with the specified properties.
     */
    static AttributeSet createTextAttributes(Font baseFont, Color color, boolean bold, boolean italic) {
        SimpleAttributeSet attrs = new SimpleAttributeSet();
        if (baseFont != null) {
            StyleConstants.setFontFamily(attrs, baseFont.getFamily());
            StyleConstants.setFontSize(attrs, baseFont.getSize());
        }
        StyleConstants.setForeground(attrs, color);
        StyleConstants.setBold(attrs, bold);
        StyleConstants.setItalic(attrs, italic);
        return attrs;
    }
}

Related

  1. applyFont(JPanel p)
  2. applyProperties(final Component comp, final Color colBack, final Color colFore, final Font font)
  3. autoAwesomeLookAndFeel(String fontName, Map defaults)
  4. boldFont(JComponent component)
  5. clipText(JComponent c, Font fnt, String val, int xFrom, int xTo)
  6. createTextLayout(JComponent c, String s, Font f, FontRenderContext frc)
  7. defaultFont()
  8. drawCentredText(Graphics2D g, Font font, String text, int x, int y)
  9. drawString(Graphics g, Font font, String text, Rectangle rect, int align)