indexing description : "List view item styles (LVIS) constants." 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 end -- class WEL_LVIS_CONSTANTS --|---------------------------------------------------------------- --| Windows Eiffel Library: library of reusable components for ISE Eiffel. --| Copyright (C) 1985-2004 Eiffel Software. All rights reserved. --| Duplication and distribution prohibited. May be used only with --| ISE Eiffel, under terms of user license. --| Contact Eiffel Software for any other use. --| --| Interactive Software Engineering Inc. --| dba Eiffel Software --| 356 Storke Road, Goleta, CA 93117 USA --| Telephone 805-685-1006, Fax 805-685-6869 --| Contact us at: http://www.eiffel.com/general/email.html --| Customer support: http://support.eiffel.com --| For latest info on our award winning products, visit: --| http://www.eiffel.com --|----------------------------------------------------------------