File: MacFontUtils.java

package info (click to toggle)
mac-widgets 0.9.5%2Bsvn369-dfsg1-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,920 kB
  • sloc: java: 8,318; makefile: 13; sh: 12
file content (17 lines) | stat: -rw-r--r-- 477 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.explodingpixels.macwidgets;

import javax.swing.UIManager;
import java.awt.Font;

public class MacFontUtils {

    public static final Font ITUNES_FONT =
            UIManager.getFont("Table.font").deriveFont(11.0f);

    public static final Font ITUNES_TABLE_HEADER_FONT =
            UIManager.getFont("Table.font").deriveFont(Font.BOLD, 11.0f);

    public static final Font TOOLBAR_LABEL_FONT =
            UIManager.getFont("Label.font").deriveFont(11.0f);

}