- indexing
- title: "Desktop 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 DESKTOP
- inherit
-
WINDOW
-
- rename
-
make
as w_make
-
- redefine
- add,
- insert,
- on_lbutton_double,
- on_lbutton_down,
- on_lbutton_up,
- on_mouse_move,
- on_rbutton_double,
- on_rbutton_down,
- on_rbutton_up,
- on_size,
- system_init
- end
- creation
- make
- feature
-
make
-
add (de: DESKTOP_ELEMENT)
-
insert (de, before: DESKTOP_ELEMENT)
-
tile
-
cascade
-
arrange
-
next
-
previous
-
on_size (w, h: INTEGER): INTEGER
-
on_lbutton_down (x, y: INTEGER): INTEGER
-
on_lbutton_up (x, y: INTEGER): INTEGER
-
on_rbutton_down (x, y: INTEGER): INTEGER
-
on_rbutton_up (x, y: INTEGER): INTEGER
-
on_lbutton_double (x, y: INTEGER): INTEGER
-
on_rbutton_double (x, y: INTEGER): INTEGER
-
on_mouse_move (x, y: INTEGER): INTEGER
-
system_init (s: STRING): INTEGER
-
invoke_select_child_dialog
end -- class DESKTOP