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 Mozilla Public License Version 2.0.
7 // See license.mkd for licensing and copyright information.
8 // ---------------------------------------------------------------------------
10 package cc
.squirreljme
.jvm
.mle
.constants
;
12 import cc
.squirreljme
.runtime
.cldc
.annotation
.SquirrelJMEVendorApi
;
15 * Flags used for font information.
20 public interface UIFontFlag
22 /** Pixel size mask. */
24 byte PIXEL_SIZE_MASK
=
27 /** The monospace font. */
29 short FACE_MONOSPACE
=
32 /** Proportional fonts. */
34 short FACE_PROPORTIONAL
=
37 /** The system font. */
42 /** Font face mask. */
52 /** Italic (slanted) text. */
54 int STYLE_ITALIC_FLAG
=
57 /** Underlined text. */
59 int STYLE_UNDERLINED_FLAG
=