Class: Glimmer::DSL::SWT::DataBindingExpression

Inherits:
Expression
  • Object
show all
Defined in:
lib/glimmer/dsl/swt/data_binding_expression.rb

Overview

Responsible for wiring two-way data-binding for text and selection properties on Text, Button, and Spinner widgets. Does so by using the output of the bind(model, property) command in the form of a ModelBinding, which is then connected to an anonymous widget observer (aka widget_data_binder as per widget_data_binders array)

Depends on BindCommandHandler

Instance Method Summary collapse

Instance Method Details

#can_interpret?(parent, keyword, *args, &block) ⇒ Boolean

Returns:

  • (Boolean)


38
39
40
41
# File 'lib/glimmer/dsl/swt/data_binding_expression.rb', line 38

def can_interpret?(parent, keyword, *args, &block)
  args.size == 1 and
    args[0].is_a?(DataBinding::ModelBinding)
end

#interpret(parent, keyword, *args, &block) ⇒ Object



43
44
45
46
47
48
49
50
51
# File 'lib/glimmer/dsl/swt/data_binding_expression.rb', line 43

def interpret(parent, keyword, *args, &block)
  model_binding = args[0]
  widget_binding = DataBinding::WidgetBinding.new(parent, keyword, sync_exec: model_binding.binding_options[:sync_exec], async_exec: model_binding.binding_options[:async_exec])
  widget_binding.call(model_binding.evaluate_property)
  #TODO make this options observer dependent and all similar observers in widget specific data binding handlers
  widget_binding.observe(model_binding)
  # TODO simplify this logic and put it where it belongs
  parent.add_observer(model_binding, keyword) if parent.respond_to?(:add_observer, [model_binding, keyword])
end