INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "A combo box with a list box and an edit control. ", "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_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

set_limit_text (limit: INTEGER)
-- Set the length of the text the user may type.
require
exists: exists
positive_limit: limit >= 0

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
end -- class WEL_DROP_DOWN_COMBO_BOX

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES