22 package com.realtime.crossfire.jxclient.gui.misc;
24 import java.awt.event.InputEvent;
35 public static final int NONE = 0;
40 public static final int SHIFT = InputEvent.SHIFT_DOWN_MASK;
45 public static final int CTRL = InputEvent.CTRL_DOWN_MASK;
50 public static final int ALT_GRAPH = InputEvent.ALT_GRAPH_DOWN_MASK;
Modifiers()
Private constructor to prevent instantiation.
static final int SHIFT
The mask for "shift".
Helper functions for keyboard modifiers.
static final int CTRL
The mask for "ctrl".
static final int NONE
The mask for "no modifier".
static final int MASK
The mask for all used modifiers.
static final int ALT_GRAPH
The mask for "alt_graph".