note description: "Toolbar button state (TB_STATE...) constants." legal: "See notice at end of class." status: "See notice at end of class." date: "$Date$" revision: "$Revision$" class WEL_TB_STATE_CONSTANTS feature -- Access Tbstate_checked: INTEGER = 1 -- The button has the Tbstyle_checked style and is -- being pressed. Tbstate_enabled: INTEGER = 4 -- The button accepts user input. A button not having -- this state does not accept user input and is grayed. Tbstate_hidden: INTEGER = 8 -- The button is not visible and cannot receive user -- input. Tbstate_indeterminate: INTEGER = 16 -- The button is grayed. Tbstate_pressed: INTEGER = 2 -- The button is being pressed. Tbstate_wrap: INTEGER = 32; -- A line break follows the button. The button must -- also have the Tbstate_enabled state. note 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_TB_STATE_CONSTANTS