1 29 38 39 package org.planetamessenger.mos.engine; 40 41 import java.awt.Font ; 42 43 44 45 public abstract class JSystemFonts { 46 47 public static final Font MENU_HEADER_FONT = new Font ( "Dialog", Font.PLAIN, 12 ); 48 public static final Font MENU_FONT = new Font ( "Dialog", Font.PLAIN, 12 ); 49 public static final Font FONT = new Font ( "Dialog", Font.PLAIN, 12 ); 50 public static final Font FONT_10 = new Font ( "Dialog", Font.PLAIN, 12 ); 51 public static final Font FONT_BOLD = new Font ( "Dialog", Font.BOLD, 12 ); 52 public static final Font SPLASH_WINDOW_FONT = new Font ( "Sans-Serif", Font.BOLD, 9 ); 53 54 } 55 56 | Popular Tags |