Class HostKeyEvent

java.lang.Object
com.iizix.term.HostKeyEvent

public class HostKeyEvent extends Object
Key event for Host, like Java AWT's KeyEvent, i.e. not SWT.
Author:
Christopher Mindus
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    final boolean
    The Alt key state.
    final boolean
    The Control key state.
    final boolean
    The Shift key state.
    static final int
     
    static final int
     
    static final int
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    HostKeyEvent(int vk, boolean isShiftDown, boolean isControlDown, boolean isAltDown)
    Constructor.
    HostKeyEvent(int vk, boolean isShiftDown, boolean isControlDown, boolean isAltDown, boolean isRightSide)
    Constructor for Right Side.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Gets the key.
    int
    Gets the send key value, 0x1000 for right side, 0x2000 for Shift, 0x4000 for Control and 0x8000 for Alt.
    boolean
    Checks for right side.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • VK_CONTROL

      public static final int VK_CONTROL
      See Also:
    • VK_ENTER

      public static final int VK_ENTER
      See Also:
    • VK_F4

      public static final int VK_F4
      See Also:
    • isShiftDown

      public final boolean isShiftDown
      The Shift key state.
    • isControlDown

      public final boolean isControlDown
      The Control key state.
    • isAltDown

      public final boolean isAltDown
      The Alt key state.
  • Constructor Details

    • HostKeyEvent

      public HostKeyEvent(int vk, boolean isShiftDown, boolean isControlDown, boolean isAltDown)
      Constructor.
    • HostKeyEvent

      public HostKeyEvent(int vk, boolean isShiftDown, boolean isControlDown, boolean isAltDown, boolean isRightSide)
      Constructor for Right Side.
  • Method Details

    • getKey

      public int getKey()
      Gets the key.
    • isRightSide

      public boolean isRightSide()
      Checks for right side.
    • getSendKey

      public int getSendKey()
      Gets the send key value, 0x1000 for right side, 0x2000 for Shift, 0x4000 for Control and 0x8000 for Alt.