class EL_RIGHT_CONTEXT_MENU
Right context menu
note
description: "Right context menu"
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_RIGHT_CONTEXT_MENU [G -> EL_NAMEABLE [ZSTRING]]
inherit
EV_MENU
EL_MODULE_DEFERRED_LOCALE
create
make
feature {NONE} -- Initialization
make (a_item_list: like item_list; a_select_action: like select_action)
do
default_create
item_list := a_item_list
select_action := a_select_action
from item_list.start until item_list.after loop
extend (
create {EV_MENU_ITEM}.make_with_text_and_action (
item_list.item.name,
agent (a_index: INTEGER)
do
destroy
item_list.go_i_th (a_index)
select_action.call ([item_list.item])
end (item_list.index)
)
)
item_list.forth
end
end
feature {NONE} -- Implementation
item_list: LIST [G]
select_action: PROCEDURE [G]
end