Interface for receiving button press and release events.
Objects which implement this protocol may receive callbacks when these events occur, via delegation from a GrabbaButtonListener object.
Note that this protocol need not be directly implemented; it may be simpler to subclass GrabbaButtonListener and thereby receive the events directly.
Thread safety: This interface is intended to be thread-safe; any classes deriving from it should ensure that the relevant methods are callable from any thread.
Instance Methods | |
(void) | - leftButtonEvent: |
Callback which is invoked when the left button is pressed or released on a connected Grabba device. More... | |
(void) | - rightButtonEvent: |
Callback which is invoked when the right button is pressed or released on a connected Grabba device. More... | |
- (void) leftButtonEvent: | (BOOL) | pressed |
Callback which is invoked when the left button is pressed or released on a connected Grabba device.
pressed | YES if the button has just been pressed, or NO if the button has just been released |
- (void) rightButtonEvent: | (BOOL) | pressed |
Callback which is invoked when the right button is pressed or released on a connected Grabba device.
pressed | YES if the button has just been pressed, or NO if the button has just been released |