indexing description: "Tree view style (TVS) constants." status: "See notice at end of class." date: "$Date$" revision: "$Revision$" class WEL_TVS_CONSTANTS feature -- Access Tvs_hasbuttons: INTEGER is 1 -- Displays plus (+) and minus (-) buttons next to -- parent items. The user clicks the buttons to expand -- or collapse a parent item's list of child items. To -- include buttons with items at the root of the tree -- view, Tvs_linesatroot must also be specified. -- -- Declared in Windows as TVS_HASBUTTONS Tvs_haslines: INTEGER is 2 -- Uses lines to show the hierarchy of items. -- -- Declared in Windows as TVS_HASLINES Tvs_linesatroot: INTEGER is 4 -- Uses lines to link items at the root of the -- tree-view control. This value is ignored if -- Tvs_haslines is not also specified. -- -- Declared in Windows as TVS_LINESATROOT Tvs_editlabels: INTEGER is 8 -- Allows the user to edit the labels of tree-view -- items. -- -- Declared in Windows as TVS_EDITLABELS Tvs_disabledragdrop: INTEGER is 16 -- Prevents the tree-view control from sending -- Tvn_begindrag notification messages. -- -- Declared in Windows as TVS_DISABLEDRAGDROP Tvs_showselalways: INTEGER is 32 -- Causes a selected item to remain selected when the -- tree-view control loses focus. -- -- Declared in Windows as TVS_SHOWSELALWAYS Tvs_infotip: INTEGER is 2048 -- Declared in Windows as TVS_INFOTIP end -- class WEL_TVS_CONSTANTS --|---------------------------------------------------------------- --| Windows Eiffel Library: library of reusable components for ISE Eiffel. --| Copyright (C) 1986-2001 Interactive Software Engineering Inc. --| All rights reserved. Duplication and distribution prohibited. --| May be used only with ISE Eiffel, under terms of user license. --| Contact ISE for any other use. --| --| Interactive Software Engineering Inc. --| ISE Building --| 360 Storke Road, Goleta, CA 93117 USA --| Telephone 805-685-1006, Fax 805-685-6869 --| Electronic mail --| Customer support: http://support.eiffel.com> --| For latest info see award-winning pages: http://www.eiffel.com --|----------------------------------------------------------------