Class: Glimmer::Tk::ScrollbarFrameProxy
- Inherits:
-
WidgetProxy
- Object
- WidgetProxy
- Glimmer::Tk::ScrollbarFrameProxy
- Defined in:
- lib/glimmer/tk/scrollbar_frame_proxy.rb
Overview
Scrolledframe (#scrolledframe_tk attribute) Nested widgets go into the child site (#tk attribute or @scrolledframe_tk.child_site)
Constant Summary
Constants inherited from WidgetProxy
WidgetProxy::FONTS_PREDEFINED, WidgetProxy::HEXADECIMAL_CHARACTERS
Instance Attribute Summary collapse
-
#canvas_proxy ⇒ Object
readonly
Returns the value of attribute canvas_proxy.
-
#container_frame_proxy ⇒ Object
readonly
Returns the value of attribute container_frame_proxy.
-
#original_parent_proxy ⇒ Object
readonly
Returns the value of attribute original_parent_proxy.
-
#xscrollbar_proxy ⇒ Object
readonly
Returns the value of attribute xscrollbar_proxy.
-
#yscrollbar_proxy ⇒ Object
readonly
Returns the value of attribute yscrollbar_proxy.
Attributes inherited from WidgetProxy
#args, #bind_ids, #children, #destroyed, #keyword, #parent_proxy, #tk
Attributes included from DraggableAndDroppable
Instance Method Summary collapse
- #get_attribute(attribute, *args) ⇒ Object
- #has_attribute?(attribute, *args) ⇒ Boolean
- #post_add_content ⇒ Object
- #set_attribute(attribute, *args) ⇒ Object
Methods inherited from WidgetProxy
#add_observer, #ancestor_proxies, #apply_style, #attribute_argument_normalizers, #attribute_setter, #clear_children, #content, create, #destroy, #disabled, #disabled=, #enabled, #enabled=, #event_generate, #font=, #grid, #handle_listener, #has_attributes_attribute?, #has_state?, #hidden, #hidden=, #image_argument, #initialize, #inspect, #method_missing, #normalize_attribute_arguments, #on, #post_initialize_child, #respond_to?, #root_parent_proxy, #style=, tk_widget_class_for, #tk_widget_has_attribute_getter_setter?, #tk_widget_has_attribute_setter?, #toplevel_parent_proxy, #unbind_all, #visible, #visible=, #widget_attribute_listener_installers, #widget_custom_attribute_mapping, widget_exists?, widget_proxy_class, #window?
Methods included from DraggableAndDroppable
#drag_source=, #drop_target=, #handle_listener, #make_draggable, #make_droppable, #make_non_draggable, #make_non_droppable, #on_drag_start_block=, #on_drop_block=, #textvariable_defined?
Constructor Details
This class inherits a constructor from Glimmer::Tk::WidgetProxy
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Glimmer::Tk::WidgetProxy
Instance Attribute Details
#canvas_proxy ⇒ Object (readonly)
Returns the value of attribute canvas_proxy.
29 30 31 |
# File 'lib/glimmer/tk/scrollbar_frame_proxy.rb', line 29 def canvas_proxy @canvas_proxy end |
#container_frame_proxy ⇒ Object (readonly)
Returns the value of attribute container_frame_proxy.
29 30 31 |
# File 'lib/glimmer/tk/scrollbar_frame_proxy.rb', line 29 def container_frame_proxy @container_frame_proxy end |
#original_parent_proxy ⇒ Object (readonly)
Returns the value of attribute original_parent_proxy.
29 30 31 |
# File 'lib/glimmer/tk/scrollbar_frame_proxy.rb', line 29 def original_parent_proxy @original_parent_proxy end |
#xscrollbar_proxy ⇒ Object (readonly)
Returns the value of attribute xscrollbar_proxy.
29 30 31 |
# File 'lib/glimmer/tk/scrollbar_frame_proxy.rb', line 29 def @xscrollbar_proxy end |
#yscrollbar_proxy ⇒ Object (readonly)
Returns the value of attribute yscrollbar_proxy.
29 30 31 |
# File 'lib/glimmer/tk/scrollbar_frame_proxy.rb', line 29 def @yscrollbar_proxy end |
Instance Method Details
#get_attribute(attribute, *args) ⇒ Object
77 78 79 80 81 82 83 84 85 86 |
# File 'lib/glimmer/tk/scrollbar_frame_proxy.rb', line 77 def get_attribute(attribute, *args) case attribute.to_s when 'show_yscrollbar' @yscrollbar when 'show_xscrollbar' @xscrollbar else container_frame_proxy.get_attribute(attribute, *args) end end |
#has_attribute?(attribute, *args) ⇒ Boolean
39 40 41 42 43 44 45 46 |
# File 'lib/glimmer/tk/scrollbar_frame_proxy.rb', line 39 def has_attribute?(attribute, *args) case attribute.to_s when 'yscrollbar', 'xscrollbar' true else container_frame_proxy.has_attribute?(attribute, *args) end end |
#post_add_content ⇒ Object
31 32 33 34 35 36 37 |
# File 'lib/glimmer/tk/scrollbar_frame_proxy.rb', line 31 def post_add_content @tk.bind('Configure') { @canvas_proxy.tk.scrollregion(@canvas_proxy.tk.bbox("all")) } @canvas_proxy.tk.yscrollcommand {|*args| @yscrollbar_proxy&.set(*args)} @canvas_proxy.tk.xscrollcommand {|*args| @xscrollbar_proxy&.set(*args)} end |
#set_attribute(attribute, *args) ⇒ Object
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/glimmer/tk/scrollbar_frame_proxy.rb', line 48 def set_attribute(attribute, *args) case attribute.to_s when 'yscrollbar' @yscrollbar = args.first if @yscrollbar == true unless @yscrollbar_proxy elsif @yscrollbar.is_a?(Glimmer::Tk::WidgetProxy) @yscrollbar_proxy.destroy (@yscrollbar) else @yscrollbar_proxy.destroy @yscrollbar_proxy = nil end when 'xscrollbar' @xscrollbar = args.first if @xscrollbar == true unless @xscrollbar_proxy elsif @xscrollbar.is_a?(Glimmer::Tk::WidgetProxy) @xscrollbar_proxy.destroy (@xscrollbar) else @xscrollbar_proxy.destroy @xscrollbar_proxy = nil end else container_frame_proxy.set_attribute(attribute, *args) end end |