21 lines
738 B
Java
21 lines
738 B
Java
package org.atriaSoft.gale.key;
|
|
|
|
public enum KeyStatus {
|
|
unknow,
|
|
down, // availlable on Keyboard too
|
|
downRepeate, // availlable on Keyboard too: the down event us in repeate cycle
|
|
move,
|
|
pressSingle,
|
|
pressDouble,
|
|
pressTriple,
|
|
pressQuad,
|
|
pressQuinte,
|
|
up, // availlable on Keyboard too
|
|
upRepeate, // availlable on Keyboard too: the up event us in repeate cycle
|
|
upAfter, // mouse input & finger input this appear after the single event (depending on some case...)
|
|
enter,
|
|
leave,
|
|
abort, // Appeare when an event is tranfert betwwen widgets (the widget which receive this has lost the events)
|
|
transfert // Appeare when an event is tranfert betwwen widgets (the widget which receive this has receive the transfert of the event)
|
|
}
|