Sha256: ac62a31ebdab0ced9d6a3965414dbd97fd98500e434412a9c120a4d2dffa197d
Contents?: true
Size: 1.16 KB
Versions: 4
Compression:
Stored size: 1.16 KB
Contents
require File.dirname(__FILE__) + "/../command_handler" require File.dirname(__FILE__) + "/models/r_widget" class ComboSelectionDataBindingCommandHandler include CommandHandler include Glimmer include_package 'org.eclipse.swt.widgets' def can_handle?(parent, command_symbol, *args, &block) parent.is_a?(RWidget) and parent.widget.is_a?(Combo) and command_symbol.to_s == "selection" and args.size == 1 and args[0].is_a?(ModelBinding) and args[0].evaluate_options_property.is_a?(Array) and block == nil end def do_handle(parent, command_symbol, *args, &block) model_binding = args[0] widget_binding = WidgetBinding.new(parent, "items") widget_binding.update(model_binding.evaluate_options_property) model = model_binding.base_model widget_binding.observe(model, model_binding.options_property_name) widget_binding = WidgetBinding.new(parent, "text") widget_binding.update(model_binding.evaluate_property) widget_binding.observe(model, model_binding.property_name_expression) add_contents(parent) { on_widget_selected { model_binding.update(widget_binding.evaluate_property) } } end end
Version data entries
4 entries across 4 versions & 1 rubygems