INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Font family (FF) constants. ", "WEL: library of reusable components for Eiffel. ", "Based on WEL library for ISE Eiffel, used with permission. "
project: "Windows Eiffel Library"
copyright: "(c) 1986-1997 Interactive Software Engineering Inc. ", "Modifications and extensions: ", "(c) 1997 Object Tools ", "All rights reserved. Duplication and distribution prohibited", "May be used only with Visual Eiffel under terms of user ", "license "
cluster: wel
class WEL_FONT_FAMILY_CONSTANTS
inherit

WAPI_FONT_PITCH_AND_FAMILY
rename
ff_dontcare as b32ff_dontcare,
ff_roman as b32ff_roman,
ff_swiss as b32ff_swiss,
ff_modern as b32ff_modern,
ff_script as b32ff_script,
ff_decorative as b32ff_decorative,
default_pitch as b32default_pitch,
fixed_pitch as b32fixed_pitch,
variable_pitch as b32variable_pitch
end
feature -- Access

Ff_dontcare: INTEGER

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

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

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_script: INTEGER
-- Fonts designed to look like handwriting.
-- Script and Cursive are examples.

Ff_decorative: INTEGER
-- Novelty fonts. Old English is an example.
end -- class WEL_FONT_FAMILY_CONSTANTS

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES