- indexing
- title: "Abstract class"
- project: "Visual Eiffel"
- revision: "$Revision: 1.1 $"
- copyright: "Copyright (C) 1996-2005 Object Tools Group"
- license: "http://visual-eiffel.com/license"
- cluster: grape
class GROUP
- inherit
-
TILE
-
- rename
-
make
as t_make
-
- redefine
- can_destroy,
- disable,
- enable,
- init,
- on_activate,
- on_size
- end
- creation
- make
- feature
-
children: ARRAY [TILE]
-
ccount: INTEGER
-
cchild: INTEGER
-
not_propagate_activation: BOOLEAN
-
default_number_of_entries: INTEGER
- feature
-
make
-
add (t: TILE)
-
insert (t: TILE; before: TILE)
-
execute (d: DIALOG): INTEGER
-
- require
-
not_void_dialog:
d /= void
-
get_current: TILE
-
child (i: INTEGER): TILE
-
get_child_with_context (ctx: INTEGER): TILE
-
child_number (t: TILE): INTEGER
-
number_of_childs: INTEGER
-
remove (t: TILE)
-
set_current (t: TILE)
-
enable
-
disable
-
init
-
wipe
-
on_activate: INTEGER
-
can_destroy: INTEGER
-
on_size (w, h: INTEGER): INTEGER
end -- class GROUP