Class: Scarpe::Webview::Link
- Inherits:
-
TextDrawable
- Object
- Shoes::Linkable
- Drawable
- TextDrawable
- Scarpe::Webview::Link
- Defined in:
- lib/scarpe/wv/link.rb
Constant Summary
Constants included from Shoes::Log
Shoes::Log::DEFAULT_COMPONENT, Shoes::Log::DEFAULT_DEBUG_LOG_CONFIG, Shoes::Log::DEFAULT_LOG_CONFIG
Instance Attribute Summary
Attributes inherited from Drawable
#children, #parent, #shoes_linkable_id
Attributes inherited from Shoes::Linkable
Instance Method Summary collapse
-
#initialize(properties) ⇒ Link
constructor
A new instance of Link.
- #to_calzini_hash ⇒ Object
Methods inherited from TextDrawable
#element, #html_element, #items_to_display_children
Methods inherited from Drawable
#add_child, #bind, #destroy_self, display_class_for, #full_window_redraw!, #handler_js_code, #html_element, #html_id, #inspect, #needs_update!, #promise_update, #properties_changed, #remove_child, #set_parent, #shoes_styles, #to_html
Methods included from Shoes::Log
configure_logger, #log_init, logger
Methods inherited from Shoes::Linkable
#bind_shoes_event, #send_self_event, #send_shoes_event, #unsub_all_shoes_events, #unsub_shoes_event
Constructor Details
#initialize(properties) ⇒ Link
Returns a new instance of Link.
5 6 7 8 9 10 11 |
# File 'lib/scarpe/wv/link.rb', line 5 def initialize(properties) super bind("click") do send_self_event(event_name: "click") end end |
Instance Method Details
#to_calzini_hash ⇒ Object
13 14 15 16 17 |
# File 'lib/scarpe/wv/link.rb', line 13 def to_calzini_hash h = super h[:tag] = "a" h end |