Class: SDL2::Event::JoyHatMotion
- Inherits:
-
SDL2::Event
- Object
- SDL2::Event
- SDL2::Event::JoyHatMotion
- Defined in:
- event.c,
event.c
Overview
This class represents the joystick hat position change events.
Instance Attribute Summary (collapse)
-
- (Integer) hat
the joystick hat index.
-
- (Integer) value
the hat position value, same value as Joystick#hat.
-
- (Integer) which
the joystick index.
Attributes inherited from SDL2::Event
Instance Method Summary (collapse)
-
- (String) inspect
Inspection string.
Methods inherited from SDL2::Event
enable=, enabled?, poll, #window
Instance Attribute Details
- (Integer) hat
the joystick hat index
- (Integer) value
the hat position value, same value as Joystick#hat.
- (Integer) which
the joystick index
Instance Method Details
- (String) inspect
Returns inspection string
752 753 754 755 756 757 758 |
# File 'event.c', line 752
static VALUE EvJoyHatMotion_inspect(VALUE self)
{
SDL_Event* ev; Data_Get_Struct(self, SDL_Event, ev);
return rb_sprintf("<%s: type=%u timestamp=%u which=%d hat=%u value=%u>",
rb_obj_classname(self), ev->common.type, ev->common.timestamp,
ev->jhat.which, ev->jhat.hat, ev->jhat.value);
}
|