Class: Glimmer::SWT::ScrolledCompositeProxy
- Inherits:
-
WidgetProxy
- Object
- WidgetProxy
- Glimmer::SWT::ScrolledCompositeProxy
- Defined in:
- lib/glimmer/swt/scrolled_composite_proxy.rb
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
- #calculate_min_size ⇒ Object (also: #recalculate_min_size)
- #post_add_content ⇒ Object
- #post_initialize_child(child) ⇒ Object
Methods inherited from WidgetProxy
#add_observer, #async_exec, #auto_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, #get_attribute, #handle_observation_request, #has_attribute?, #has_style?, #height, #initialize, #method_missing, #pack_same_size, #proxy_source_object, #remove_observer, #respond_to?, #set_attribute, 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, #width, #x, #y
Methods included from Custom::Drawable
#add_shape, #clear_shapes, #deregister_shape_painting, #expanded_shapes, #image_buffered_shapes, #paint_pixel_by_pixel, #setup_shape_painting, #shape_at_location, #shapes, #swt_drawable
Methods included from ProxyProperties
#get_attribute, #has_attribute?, #has_attribute_getter?, #has_attribute_setter?, #method_missing, #proxy_source_object, #respond_to?, #set_attribute
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
#calculate_min_size ⇒ Object Also known as: recalculate_min_size
42 43 44 45 46 |
# File 'lib/glimmer/swt/scrolled_composite_proxy.rb', line 42 def calculate_min_size auto_exec do .set_min_size(.computeSize(SWTProxy[:default], SWTProxy[:default])) end end |
#post_add_content ⇒ Object
38 39 40 |
# File 'lib/glimmer/swt/scrolled_composite_proxy.rb', line 38 def post_add_content calculate_min_size end |
#post_initialize_child(child) ⇒ Object
28 29 30 31 32 33 34 35 36 |
# File 'lib/glimmer/swt/scrolled_composite_proxy.rb', line 28 def post_initialize_child(child) auto_exec do .content = child. end # TODO consider triggering this method in the future upon resizing of content with a listener (on_control_resized) # child.on_control_resized do # swt_widget.set_min_size(swt_widget.computeSize(child.bounds.width, child.bounds.height)) # end end |