INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES

indexing

title: "contains information used to add a new item to a ", "tree-view control. ", "note: The common controls dll (WEL_COMMON_CONTROLS_DLL) ", " needs to be loaded to use this 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_TREE_VIEW_INSERT_STRUCT
inherit

WEL_STRUCTURE
end

WEL_TVI_CONSTANTS
export
{NONE}
all
end
creation

make
feature -- Access

parent: INTEGER
-- Handle to the parent item. If this member is
-- the Tvi_root value or NULL, the item is inserted
-- at the root of the tree-view control.

insert_after: INTEGER
-- Handle to the item after which the new item is to
-- be inserted or one of the Tvi_* values.
-- See class WEL_TVI_CONSTANTS.

tree_view_item: WEL_TREE_VIEW_ITEM
-- Item to insert
ensure
result_not_void: Result /= void
feature -- Element change

set_parent (a_parent: INTEGER)
-- Set `parent' with `a_parent'.
ensure
parent_set: parent = a_parent

set_insert_after (a_insert_after: INTEGER)
-- Set `insert_after' with `a_insert_after'.
ensure
insert_after_set: insert_after = a_insert_after

set_tree_view_item (a_tree_view_item: WEL_TREE_VIEW_ITEM)
-- Set `tree_view_item' with `a_tree_view_item'.

set_first
-- Insert the item at the beginning of the list.

set_last
-- Insert the item at the end of the list.

set_sort
-- Insert the item into the list in alphabetical order.

set_root
-- Insert the item as the root of the list.
feature -- Measurement

structure_size: INTEGER
-- Size to allocate (in bytes)
end -- class WEL_TREE_VIEW_INSERT_STRUCT

INDEX CLUSTER FEATURES SHORT FRAMES NO FRAMES