1 // -*- Mode: Java; indent-tabs-mode: t; tab-width: 4 -*-
2 // ---------------------------------------------------------------------------
4 // Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
5 // ---------------------------------------------------------------------------
6 // SquirrelJME is under the GNU General Public License v3+, or later.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc
.squirreljme
.jvm
.mle
.constants
;
13 * Flags used for font information.
17 public interface UIFontFlag
19 /** Pixel size mask. */
20 byte PIXEL_SIZE_MASK
=
23 /** The monospace font. */
24 short FACE_MONOSPACE
=
27 /** Proportional fonts. */
28 short FACE_PROPORTIONAL
=
31 /** The system font. */
35 /** Font face mask. */
43 /** Italic (slanted) text. */
44 int STYLE_ITALIC_FLAG
=
47 /** Underlined text. */
48 int STYLE_UNDERLINED_FLAG
=