
gnu.x11.keysym.Special Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of escher Show documentation
Show all versions of escher Show documentation
Escher is a collection of libraries for X Window System written purely in Java.
The newest version!
package gnu.x11.keysym;
/**
* Special-specific keyboard symbols. Imported from
* XK_SPECIAL
section of
* /usr/include/X11/keysymdef.h
. Note that byte 3 = 0x09.
*/
public class Special {
public static final int BLANK = 0x9df;
public static final int SOLID_DIAMOND = 0x9e0;
public static final int CHECKER_BOARD = 0x9e1;
public static final int HT = 0x9e2;
public static final int FF = 0x9e3;
public static final int CR = 0x9e4;
public static final int LF = 0x9e5;
public static final int NL = 0x9e8;
public static final int VT = 0x9e9;
public static final int LOW_RIGHT_CORNER = 0x9ea;
public static final int UP_RIGHT_CORNER = 0x9eb;
public static final int UP_LEFT_CORNER = 0x9ec;
public static final int LOW_LEFT_CORNER = 0x9ed;
public static final int CROSSING_LINES = 0x9ee;
public static final int HORIZ_LINE_SCAN1 = 0x9ef;
public static final int HORIZ_LINE_SCAN3 = 0x9f0;
public static final int HORIZ_LINE_SCAN5 = 0x9f1;
public static final int HORIZ_LINE_SCAN7 = 0x9f2;
public static final int HORIZ_LINE_SCAN9 = 0x9f3;
public static final int LEFTT = 0x9f4;
public static final int RIGHTT = 0x9f5;
public static final int BOTT = 0x9f6;
public static final int TOPT = 0x9f7;
public static final int VERT_BAR = 0x9f8;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy