class EL_DRAWING_AREA_LABEL
Drawing area label
note
description: "Drawing area label"
author: "Finnian Reilly"
copyright: "Copyright (c) 2001-2022 Finnian Reilly"
contact: "finnian at eiffel hyphen loop dot com"
license: "MIT license (See: en.wikipedia.org/wiki/MIT_License)"
date: "2022-11-15 19:56:05 GMT (Tuesday 15th November 2022)"
revision: "8"
class
EL_DRAWING_AREA_LABEL
inherit
EL_DRAWING_AREA
undefine
on_redraw
redefine
on_resize, implementation
end
EL_DRAWABLE_LABEL
undefine
copy, is_equal, is_in_default_state
redefine
implementation, make_with_text_and_font
end
create
make_with_text_and_font, make_default
feature {NONE} -- Initialization
make_with_text_and_font (a_text: like text; a_font: like font)
do
Precursor (a_text, a_font)
set_expose_actions
resize_actions.extend (agent on_resize)
end
feature {NONE} -- Event handlers
on_resize (a_x, a_y, a_width, a_height: INTEGER)
do
if a_height > 1 and a_width > 1 then
redraw
end
end
feature {EV_ANY, EV_ANY_I, EV_ANY_HANDLER} -- Implementation
implementation: EV_DRAWING_AREA_I
end