module Hyalite::DOM::Event::MouseEventInterface
Public Instance Methods
alt_key()
click to toggle source
# File lib/hyalite/dom/event/mouse_event_interface.rb, line 50 def alt_key `#@native.altKey` end
client()
click to toggle source
# File lib/hyalite/dom/event/mouse_event_interface.rb, line 22 def client @client ||= AliasPosition.new(@native, :client) end
ctrl_key()
click to toggle source
# File lib/hyalite/dom/event/mouse_event_interface.rb, line 46 def ctrl_key `#@native.ctrlKey` end
init_mouse_event()
click to toggle source
# File lib/hyalite/dom/event/mouse_event_interface.rb, line 78 def init_mouse_event `#@native.initMouseEvent()` end
meta_key()
click to toggle source
# File lib/hyalite/dom/event/mouse_event_interface.rb, line 54 def meta_key `#@native.metaKey` end
modifire_state()
click to toggle source
# File lib/hyalite/dom/event/mouse_event_interface.rb, line 74 def modifire_state `#@native.getModifierState()` end
movement()
click to toggle source
# File lib/hyalite/dom/event/mouse_event_interface.rb, line 26 def movement @movement ||= AliasPosition.new(@native, :movement) end
offset()
click to toggle source
# File lib/hyalite/dom/event/mouse_event_interface.rb, line 30 def offset @offset ||= AliasPosition.new(@native, :offset) end
page()
click to toggle source
# File lib/hyalite/dom/event/mouse_event_interface.rb, line 34 def page @page ||= AliasPosition.new(@native, :page) end
region()
click to toggle source
# File lib/hyalite/dom/event/mouse_event_interface.rb, line 66 def region `#@native.region` end
screen()
click to toggle source
# File lib/hyalite/dom/event/mouse_event_interface.rb, line 38 def screen @screen ||= AliasPosition.new(@native, :screen) end
shift_key()
click to toggle source
# File lib/hyalite/dom/event/mouse_event_interface.rb, line 42 def shift_key `#@native.shiftKey` end