class RUI::GuiBuilder::ActionList
An action list is a placeholder for dynamically pluggable actions.
Action
lists can be plugged by using {ActionHandler#plug_action_list} and removed with {ActionHandler#unplug_action_list}.
Public Instance Methods
create_element(window, parent, desc)
click to toggle source
# File lib/rui/toolkits/qtbase/gui_builder.rb, line 157 def create_element(window, parent, desc) entry = Entry.new(parent) window.action_list_entries[desc.opts[:name]] << entry parent end