indexing
	description: "Font family (FF) constants."
	status: "See notice at end of class."
	date: "$Date$"
	revision: "$Revision$"

class interface
	WEL_FONT_FAMILY_CONSTANTS

feature -- Access

	ff_decorative: INTEGER
			-- Novelty fonts. Old English is an example.

	ff_dontcare: INTEGER
			-- Don't care or don't know

	ff_modern: INTEGER
			-- Fonts with constant stroke width (monospace),
			-- with or without serifs. Monospace fonts are usually
			-- modern. Pica, Elite, and CourierNew are examples.

	ff_roman: INTEGER
			-- Fonts with variable stroke width (proportional)
			-- and with serifs. MS Serif is an example.

	ff_script: INTEGER
			-- Fonts designed to look like handwriting.
			-- Script and Cursive are examples.

	ff_swiss: INTEGER
			-- Fonts with variable stroke width (proportional)
			-- and without serifs. MS Sans Serif is an example.
	
invariant

		-- from ANY
	reflexive_equality: standard_is_equal (Current)
	reflexive_conformance: conforms_to (Current)

end -- class WEL_FONT_FAMILY_CONSTANTS