INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "A combo box which has a drop down list box. ", "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
class WEL_DROP_DOWN_LIST_COMBO_BOX
inherit

WEL_COMBO_BOX
redefine
height
end

WEL_CBS_CONSTANTS
export
{NONE}
all
end
creation

make,
make_by_id
feature -- Access

height: INTEGER
-- Height including the list box
feature -- Status setting

show_list
-- Show the drop down list
require
exists: exists
ensure
list_shown: list_shown

hide_list
-- Hide the drop down list
require
exists: exists
ensure
list_not_shown: not list_shown
feature -- Status report

list_shown: BOOLEAN
-- Is the drop down list shown?
require
exists: exists
feature -- Obsolete

show_drop_down
obsolete "Use ``show_list''"
require
exists: exists
ensure
list_shown: list_shown

hide_drop_down
obsolete "Use ``hide_list''"
require
exists: exists
ensure
list_not_shown: not list_shown

dropped_down: BOOLEAN
obsolete "Use ``list_shown''"
require
exists: exists
end -- class WEL_DROP_DOWN_LIST_COMBO_BOX

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES