Class: VBox::GuestMouseEvent
Instance Attribute Summary collapse
Instance Method Summary
collapse
#generation, #reuse
Methods inherited from Event
#set_processed, #source, #type, #wait_processed, #waitable
Methods inherited from Base
#_this, #delete!, #ensure_hash, #initialize, #vbox_class
Constructor Details
This class inherits a constructor from VBox::Base
Instance Attribute Details
#ref ⇒ Object
Returns the value of attribute ref.
4
5
6
|
# File 'lib/virtualbox/classes/events/guest_mouse_event.rb', line 4
def ref
@ref
end
|
Instance Method Details
#absolute ⇒ Object
8
9
10
|
# File 'lib/virtualbox/classes/events/guest_mouse_event.rb', line 8
def absolute
VBox::WebService.send_request(:i_guest_mouse_event_get_absolute, _this)
end
|
28
29
30
|
# File 'lib/virtualbox/classes/events/guest_mouse_event.rb', line 28
def buttons
VBox::WebService.send_request(:i_guest_mouse_event_get_buttons, _this)
end
|
#w ⇒ Object
24
25
26
|
# File 'lib/virtualbox/classes/events/guest_mouse_event.rb', line 24
def w
VBox::WebService.send_request(:i_guest_mouse_event_get_w, _this)
end
|
#x ⇒ Object
12
13
14
|
# File 'lib/virtualbox/classes/events/guest_mouse_event.rb', line 12
def x
VBox::WebService.send_request(:i_guest_mouse_event_get_x, _this)
end
|
#y ⇒ Object
16
17
18
|
# File 'lib/virtualbox/classes/events/guest_mouse_event.rb', line 16
def y
VBox::WebService.send_request(:i_guest_mouse_event_get_y, _this)
end
|
#z ⇒ Object
20
21
22
|
# File 'lib/virtualbox/classes/events/guest_mouse_event.rb', line 20
def z
VBox::WebService.send_request(:i_guest_mouse_event_get_z, _this)
end
|