All Packages Class Hierarchy This Package Previous Next Index
Class java.awt.Event
java.lang.Object
|
+----java.awt.Event
- public class Event
- extends Object
- implements Serializable
Event is a platform-independent class that encapsulates events from
the local Graphical User Interface(GUI) platform.
The event contains an id which indicates the type
of event it is and which other Event variables are relavent for the event.
For keyboard events, key will contain a value indicating
the key that was activated and modifiers will
contain the modifiers. For KEY_PRESS and KEY_RELEASE event ids, the value of key
will be the unicode character code for the key; for KEY_ACTION and KEY_ACTION_RELEASE,
the value of key will be one of the defined action-key identifiers in the Event
class (PGUP, PGDN, F1, F2, etc).
-
ACTION_EVENT
- An action event.
-
ALT_MASK
-
The alt modifier constant.
-
arg
- An arbitrary argument.
-
BACK_SPACE
- The BackSpace key.
-
CAPS_LOCK
- The CapsLock action-key.
-
clickCount
- The number of consecutive clicks.
-
CTRL_MASK
- The control modifier constant.
-
DELETE
- The Delete key.
-
DOWN
- The down arrow action-key.
-
END
-
The end action-key.
-
ENTER
- The Enter key.
-
ESCAPE
- The Escape key.
-
evt
- The next event.
-
F1
- The F1 function action-key.
-
F10
- The F10 function action-key.
-
F11
- The F11 function action-key.
-
F12
- The F12 function action-key.
-
F2
- The F2 function action-key.
-
F3
- The F3 function action-key.
-
F4
- The F4 function action-key.
-
F5
- The F5 function action-key.
-
F6
- The F6 function action-key.
-
F7
- The F7 function action-key.
-
F8
- The F8 function action-key.
-
F9
- The F9 function action-key.
-
GOT_FOCUS
- A component gained the focus.
-
HOME
-
The home action-key.
-
id
- The type of this event.
-
INSERT
- The Insert key.
-
key
-
The key code that was pressed in a keyboard event.
-
KEY_ACTION
-
The action-key press keyboard event.
-
KEY_ACTION_RELEASE
-
The action-key release keyboard event.
-
KEY_PRESS
- The key press keyboard event.
-
KEY_RELEASE
- The key release keyboard event.
-
LEFT
- The left arrow action-key.
-
LIST_DESELECT
-
-
LIST_SELECT
-
-
LOAD_FILE
- A file loading event.
-
LOST_FOCUS
- A component lost the focus.
-
META_MASK
-
The meta modifier constant.
-
modifiers
-
The state of the modifier keys.
-
MOUSE_DOWN
- The mouse down event.
-
MOUSE_DRAG
-
The mouse drag event.
-
MOUSE_ENTER
- The mouse enter event.
-
MOUSE_EXIT
- The mouse exit event.
-
MOUSE_MOVE
- The mouse move event.
-
MOUSE_UP
- The mouse up event.
-
NUM_LOCK
- The NumLock action-key.
-
PAUSE
- The Pause action-key.
-
PGDN
- The page down action-key.
-
PGUP
- The page up action-key.
-
PRINT_SCREEN
- The PrintScreen action-key.
-
RIGHT
- The right arrow action-key.
-
SAVE_FILE
- A file saving event.
-
SCROLL_ABSOLUTE
- The absolute scroll event.
-
SCROLL_BEGIN
- The scroll begin event.
-
SCROLL_END
- The scroll end event.
-
SCROLL_LINE_DOWN
- The line down scroll event.
-
SCROLL_LINE_UP
-
The line up scroll event.
-
SCROLL_LOCK
- The ScrollLock action-key.
-
SCROLL_PAGE_DOWN
- The page down scroll event.
-
SCROLL_PAGE_UP
- The page up scroll event.
-
SHIFT_MASK
- The shift modifier constant.
-
TAB
- The Tab key.
-
target
- The target component.
-
UP
- The up arrow action-key.
-
when
- The time stamp.
-
WINDOW_DEICONIFY
-
The de-iconify window event.
-
WINDOW_DESTROY
- The destroy window event.
-
WINDOW_EXPOSE
- The expose window event.
-
WINDOW_ICONIFY
-
The iconify window event.
-
WINDOW_MOVED
- The move window event.
-
x
-
The x coordinate of the event.
-
y
-
The y coordinate of the event.
-
Event(Object, int, Object)
- Constructs an event with the specified target component,
event type, and argument.
-
Event(Object, long, int, int, int, int, int)
- Constructs an event with the specified target component, time stamp,
event type, x and y coordinates, keyboard key, state of the modifier
keys and an argument set to null.
-
Event(Object, long, int, int, int, int, int, Object)
- Constructs an event with the specified target component, time stamp,
event type, x and y coordinates, keyboard key, state of the modifier
keys and argument.
-
controlDown()
- Checks if the control key is down.
-
metaDown()
- Checks if the meta key is down.
-
paramString()
- Returns the parameter String of this Event.
-
shiftDown()
- Checks if the shift key is down.
-
toString()
- Returns the String representation of this Event's values.
-
translate(int, int)
-
Translates an event relative to the given component.
SHIFT_MASK
public static final int SHIFT_MASK
- The shift modifier constant.
CTRL_MASK
public static final int CTRL_MASK
- The control modifier constant.
META_MASK
public static final int META_MASK
- The meta modifier constant.
ALT_MASK
public static final int ALT_MASK
- The alt modifier constant.
HOME
public static final int HOME
- The home action-key.
END
public static final int END
- The end action-key.
PGUP
public static final int PGUP
- The page up action-key.
PGDN
public static final int PGDN
- The page down action-key.
UP
public static final int UP
- The up arrow action-key.
DOWN
public static final int DOWN
- The down arrow action-key.
LEFT
public static final int LEFT
- The left arrow action-key.
RIGHT
public static final int RIGHT
- The right arrow action-key.
F1
public static final int F1
- The F1 function action-key.
F2
public static final int F2
- The F2 function action-key.
F3
public static final int F3
- The F3 function action-key.
F4
public static final int F4
- The F4 function action-key.
F5
public static final int F5
- The F5 function action-key.
F6
public static final int F6
- The F6 function action-key.
F7
public static final int F7
- The F7 function action-key.
F8
public static final int F8
- The F8 function action-key.
F9
public static final int F9
- The F9 function action-key.
F10
public static final int F10
- The F10 function action-key.
F11
public static final int F11
- The F11 function action-key.
F12
public static final int F12
- The F12 function action-key.
PRINT_SCREEN
public static final int PRINT_SCREEN
- The PrintScreen action-key.
SCROLL_LOCK
public static final int SCROLL_LOCK
- The ScrollLock action-key.
CAPS_LOCK
public static final int CAPS_LOCK
- The CapsLock action-key.
NUM_LOCK
public static final int NUM_LOCK
- The NumLock action-key.
PAUSE
public static final int PAUSE
- The Pause action-key.
INSERT
public static final int INSERT
- The Insert key.
ENTER
public static final int ENTER
- The Enter key.
BACK_SPACE
public static final int BACK_SPACE
- The BackSpace key.
TAB
public static final int TAB
- The Tab key.
ESCAPE
public static final int ESCAPE
- The Escape key.
DELETE
public static final int DELETE
- The Delete key.
WINDOW_DESTROY
public static final int WINDOW_DESTROY
- The destroy window event.
WINDOW_EXPOSE
public static final int WINDOW_EXPOSE
- The expose window event.
WINDOW_ICONIFY
public static final int WINDOW_ICONIFY
- The iconify window event.
WINDOW_DEICONIFY
public static final int WINDOW_DEICONIFY
- The de-iconify window event.
WINDOW_MOVED
public static final int WINDOW_MOVED
- The move window event.
KEY_PRESS
public static final int KEY_PRESS
- The key press keyboard event.
KEY_RELEASE
public static final int KEY_RELEASE
- The key release keyboard event.
KEY_ACTION
public static final int KEY_ACTION
- The action-key press keyboard event.
KEY_ACTION_RELEASE
public static final int KEY_ACTION_RELEASE
- The action-key release keyboard event.
MOUSE_DOWN
public static final int MOUSE_DOWN
- The mouse down event.
MOUSE_UP
public static final int MOUSE_UP
- The mouse up event.
MOUSE_MOVE
public static final int MOUSE_MOVE
- The mouse move event.
MOUSE_ENTER
public static final int MOUSE_ENTER
- The mouse enter event.
MOUSE_EXIT
public static final int MOUSE_EXIT
- The mouse exit event.
MOUSE_DRAG
public static final int MOUSE_DRAG
- The mouse drag event.
SCROLL_LINE_UP
public static final int SCROLL_LINE_UP
- The line up scroll event.
SCROLL_LINE_DOWN
public static final int SCROLL_LINE_DOWN
- The line down scroll event.
SCROLL_PAGE_UP
public static final int SCROLL_PAGE_UP
- The page up scroll event.
SCROLL_PAGE_DOWN
public static final int SCROLL_PAGE_DOWN
- The page down scroll event.
SCROLL_ABSOLUTE
public static final int SCROLL_ABSOLUTE
- The absolute scroll event.
SCROLL_BEGIN
public static final int SCROLL_BEGIN
- The scroll begin event.
SCROLL_END
public static final int SCROLL_END
- The scroll end event.
LIST_SELECT
public static final int LIST_SELECT
LIST_DESELECT
public static final int LIST_DESELECT
ACTION_EVENT
public static final int ACTION_EVENT
- An action event.
LOAD_FILE
public static final int LOAD_FILE
- A file loading event.
SAVE_FILE
public static final int SAVE_FILE
- A file saving event.
GOT_FOCUS
public static final int GOT_FOCUS
- A component gained the focus.
LOST_FOCUS
public static final int LOST_FOCUS
- A component lost the focus.
target
public Object target
- The target component.
when
public long when
- The time stamp.
id
public int id
- The type of this event.
x
public int x
- The x coordinate of the event.
y
public int y
- The y coordinate of the event.
key
public int key
- The key code that was pressed in a keyboard event.
modifiers
public int modifiers
- The state of the modifier keys.
clickCount
public int clickCount
- The number of consecutive clicks. This field is relevant only for
MOUSE_DOWN events. If the field isn't set it will be 0. Otherwise,
it will be 1 for single-clicks, 2 for double-clicks, and so on.
arg
public Object arg
- An arbitrary argument.
evt
public Event evt
- The next event. Used when putting events into a linked list.
Event
public Event(Object target,
long when,
int id,
int x,
int y,
int key,
int modifiers,
Object arg)
- Constructs an event with the specified target component, time stamp,
event type, x and y coordinates, keyboard key, state of the modifier
keys and argument.
- Parameters:
- target - the target component
- when - the time stamp
- id - the event type
- x - the x coordinate
- y - the y coordinate
- key - the key pressed in a keyboard event
- modifiers - the state of the modifier keys
- arg - the specified argument
Event
public Event(Object target,
long when,
int id,
int x,
int y,
int key,
int modifiers)
- Constructs an event with the specified target component, time stamp,
event type, x and y coordinates, keyboard key, state of the modifier
keys and an argument set to null.
- Parameters:
- target - the target component
- when - the time stamp
- id - the event type
- x - the x coordinate
- y - the y coordinate
- key - the key pressed in a keyboard event
- modifiers - the state of the modifier keys
Event
public Event(Object target,
int id,
Object arg)
- Constructs an event with the specified target component,
event type, and argument.
- Parameters:
- target - the target component
- id - the event type
- arg - the specified argument
translate
public void translate(int x,
int y)
- Translates an event relative to the given component. This
involves at a minimum translating the coordinates so they make
sense within the given component. It may also involve
translating a region in the case of an expose event.
- Parameters:
- x - the x coordinate
- y - the y coordinate
shiftDown
public boolean shiftDown()
- Checks if the shift key is down.
- See Also:
- modifiers, controlDown, metaDown
controlDown
public boolean controlDown()
- Checks if the control key is down.
- See Also:
- modifiers, shiftDown, metaDown
metaDown
public boolean metaDown()
- Checks if the meta key is down.
- See Also:
- modifiers, shiftDown, controlDown
paramString
protected String paramString()
- Returns the parameter String of this Event.
toString
public String toString()
- Returns the String representation of this Event's values.
- Overrides:
- toString in class Object
All Packages Class Hierarchy This Package Previous Next Index