Class: VBox::GuestMouseEvent
Instance Attribute Summary
Attributes inherited from Base
#ref
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 Method Details
#absolute ⇒ Object
6
7
8
|
# File 'lib/virtualbox/classes/events/guest_mouse_event.rb', line 6
def absolute
VBox::WebService.send_request(:i_guest_mouse_event_get_absolute, _this)
end
|
26
27
28
|
# File 'lib/virtualbox/classes/events/guest_mouse_event.rb', line 26
def buttons
VBox::WebService.send_request(:i_guest_mouse_event_get_buttons, _this)
end
|
#w ⇒ Object
22
23
24
|
# File 'lib/virtualbox/classes/events/guest_mouse_event.rb', line 22
def w
VBox::WebService.send_request(:i_guest_mouse_event_get_w, _this)
end
|
#x ⇒ Object
10
11
12
|
# File 'lib/virtualbox/classes/events/guest_mouse_event.rb', line 10
def x
VBox::WebService.send_request(:i_guest_mouse_event_get_x, _this)
end
|
#y ⇒ Object
14
15
16
|
# File 'lib/virtualbox/classes/events/guest_mouse_event.rb', line 14
def y
VBox::WebService.send_request(:i_guest_mouse_event_get_y, _this)
end
|
#z ⇒ Object
18
19
20
|
# File 'lib/virtualbox/classes/events/guest_mouse_event.rb', line 18
def z
VBox::WebService.send_request(:i_guest_mouse_event_get_z, _this)
end
|