INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "Font family enumerator. The user must inherit from this ", "class and define the routine `action%'. ", "note: Do not use more than one instance of this class at the", " same time. Nested enumerations are not supported. ", "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
deferred class WEL_FONT_FAMILY_ENUMERATOR
inherit

WEL_FONT_TYPE_ENUM_CONSTANTS
export
{NONE}
all
end
feature -- Basic operations

action (elf: WEL_ENUM_LOG_FONT; tm: WEL_TEXT_METRIC; font_type: INTEGER)
-- Called for each font found.
-- `elf', `tm' and `font_type' contain informations
-- about the font.
-- See class WEL_FONT_TYPE_ENUM_CONSTANTS for
-- `font_type' values.
require
elf_not_void: elf /= void
tm_not_void: tm /= void

init_action
-- Called before the enumeration.
-- May be redefined to make special operations.

finish_action
-- Called after the enumeration.
-- May be redefined to make special operations.
end -- class WEL_FONT_FAMILY_ENUMERATOR

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES