Class: Glimmer::SWT::SashFormProxy
- Inherits:
-
WidgetProxy
- Object
- WidgetProxy
- Glimmer::SWT::SashFormProxy
- Defined in:
- lib/glimmer/swt/sash_form_proxy.rb
Overview
Proxy for org.eclipse.swt.custom.SashForm
Follows the Proxy Design Pattern
Constant Summary
Constants inherited from WidgetProxy
WidgetProxy::DEFAULT_INITIALIZERS, WidgetProxy::DEFAULT_STYLES, WidgetProxy::KEYWORD_ALIASES
Instance Attribute Summary
Attributes inherited from WidgetProxy
#drag_source_proxy, #drag_source_style, #drag_source_transfer, #drop_target_proxy, #drop_target_transfer, #finished_add_content, #parent_proxy, #swt_widget
Attributes included from Custom::Drawable
#image_double_buffered, #requires_shape_disposal
Instance Method Summary collapse
- #get_attribute(attribute_name) ⇒ Object
- #post_add_content ⇒ Object
- #set_attribute(attribute_name, *args) ⇒ Object
Methods inherited from WidgetProxy
#add_observer, #async_exec, #can_add_observer?, #can_handle_drag_observation_request?, #can_handle_drop_observation_request?, #can_handle_observation_request?, #content, create, #dispose, #disposed?, #ensure_drag_source_proxy, #ensure_drop_target_proxy, #extract_args, #finish_add_content!, flyweight_swt_widget_classes, #handle_observation_request, #has_attribute?, #has_attribute_getter?, #has_attribute_setter?, #has_style?, #initialize, #method_missing, #pack_same_size, #post_initialize_child, #remove_observer, #respond_to?, swt_widget_class_for, swt_widget_class_manual_entries, #sync_exec, #timer_exec, underscored_widget_name, widget_exists?, #widget_property_listener_installers, widget_proxy_class
Methods included from Custom::Drawable
#add_shape, #clear_shapes, #deregister_shape_painting, #image_buffered_shapes, #setup_shape_painting, #shapes
Methods included from Properties
attribute_getter, #attribute_getter, attribute_setter, #attribute_setter, normalized_attribute, #normalized_attribute, ruby_attribute_getter, #ruby_attribute_setter, ruby_attribute_setter
Methods included from Packages
Constructor Details
This class inherits a constructor from Glimmer::SWT::WidgetProxy
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Glimmer::SWT::WidgetProxy
Instance Method Details
#get_attribute(attribute_name) ⇒ Object
43 44 45 46 47 48 49 |
# File 'lib/glimmer/swt/sash_form_proxy.rb', line 43 def get_attribute(attribute_name) if attribute_name.to_s == "weights" .getWeights.to_a else super(attribute_name) end end |
#post_add_content ⇒ Object
30 31 32 |
# File 'lib/glimmer/swt/sash_form_proxy.rb', line 30 def post_add_content self.weights = @weights unless @weights.nil? end |
#set_attribute(attribute_name, *args) ⇒ Object
34 35 36 37 38 39 40 41 |
# File 'lib/glimmer/swt/sash_form_proxy.rb', line 34 def set_attribute(attribute_name, *args) if attribute_name.to_s == 'weights' @weights = args @weights = @weights.first if @weights.first.is_a?(Array) else super(attribute_name, *args) end end |