- indexing
- title: "Button class"
- project: "Visual Eiffel"
- revision: "$Revision: 1.1 $"
- copyright: "Copyright (C) 1996-2005 Object Tools Group"
- license: "http://visual-eiffel.com/license"
- cluster: grape
deferred class BUTTON
- inherit
-
CONTROL
-
- rename
-
make
as c_make
-
- redefine
- init,
- on_destroy
- end
- feature
-
owner: BUTTON_GROUP
-
no_correction: BOOLEAN
-
make (n: STRING; r: RECT; ctx: INTEGER)
-
set_owner (bg: BUTTON_GROUP)
-
on_destroy: INTEGER
-
init
-
set_tabstop
-
clear_tabstop
-
press
-
release
-
toggle
-
is_pressed: BOOLEAN
-
height_init: REAL
-
minimal_width (title: STRING): REAL
-
set_no_correction (b: BOOLEAN)
end -- class BUTTON