indexing description : "List view item styles (LVIS) constants." legal: "See notice at end of class." status: "See notice at end of class." date : "$Date$" revision : "$Revision$" class WEL_LVIS_CONSTANTS obsolete "use WEL_LIST_VIEW_CONSTANTS instead" feature -- Access Lvis_cut: INTEGER is 4 -- The item is marked for a cut and paste operation. -- -- Declared in Windows as LVIS_CUT Lvis_drophilited: INTEGER is 8 -- The item is highlighted as a drag-and-dop target. -- -- Declared in Windows as LVIS_DROPHILITED Lvis_focused: INTEGER is 1 -- The item has the focus. -- -- Declared in Windows as LVIS_FOCUSED Lvis_selected: INTEGER is 2 -- The item is selected. -- -- Declared in Windows as LVIS_SELECTED feature -- Status report valid_lvis_constants (value: INTEGER): BOOLEAN is -- Is `value' a valid constant? do Result := value = Lvis_cut or else value = Lvis_drophilited or else value = Lvis_focused or else value = Lvis_selected end indexing copyright: "Copyright (c) 1984-2006, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 356 Storke Road, Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Website http://www.eiffel.com Customer support http://support.eiffel.com ]" end -- class WEL_LVIS_CONSTANTS