com.hdcookbook.grin.input
Interface SERCHandler

All Known Implementing Classes:
SECommandRCHandler, SEVisualRCHandler

public interface SERCHandler


Method Summary
 int getKeyPressedInterestMask()
          Get the bitmask formed by or-ing together the mask of all key pressed events we're interested in.
 int getKeyReleasedInterestMask()
          Get the bitmask formed by or-ing together the mask of all key released events we're interested in.
 int getKeyTypedInterestMask()
          Get the bitmask formed by or-ing together the mask of all key typed events we're interested in.
 

Method Detail

getKeyPressedInterestMask

int getKeyPressedInterestMask()
Get the bitmask formed by or-ing together the mask of all key pressed events we're interested in. This is used to determine if a Show is currently interested in receiving a keypress; a bit in the bitmask needen't be unique, if a set of keys go together as a group.

See Also:
Show.handleKeyPressed(int)

getKeyReleasedInterestMask

int getKeyReleasedInterestMask()
Get the bitmask formed by or-ing together the mask of all key released events we're interested in. This is used to determine if a Show is currently interested in receiving a keypress; a bit in the bitmask needen't be unique, if a set of keys go together as a group.

See Also:
Show.handleKeyReleased(int)

getKeyTypedInterestMask

int getKeyTypedInterestMask()
Get the bitmask formed by or-ing together the mask of all key typed events we're interested in. This is used to determine if a Show is currently interested in receiving a keypress; a bit in the bitmask needen't be unique, if a set of keys go together as a group.

See Also:
Show.handleKeyTyped(RCKeyEvent)