|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.zkoss.zk.ui.event.Event
org.zkoss.zk.ui.event.MouseEvent
public class MouseEvent
Represents an event cause by mouse activitly.
There are two possible way to identify a mouse event.
One is by coordination (getX() and getY().
The other is by a logical name, called area (getArea()).
| Field Summary | |
|---|---|
static int |
ALT_KEY
Indicates whether the Alt key is pressed. |
static int |
CTRL_KEY
Indicates whether the Ctrl key is pressed. |
static int |
SHIFT_KEY
Indicates whether the Shift key is pressed. |
| Constructor Summary | |
|---|---|
MouseEvent(java.lang.String name,
Component target)
Construct a mouse relevant event with coordination or area. |
|
MouseEvent(java.lang.String name,
Component target,
int x,
int y)
Constructs a mouse relevant event. |
|
MouseEvent(java.lang.String name,
Component target,
int x,
int y,
int keys)
Constructs a mouse relevant event. |
|
MouseEvent(java.lang.String name,
Component target,
java.lang.String area)
Constructs a mouse relevant event with a logic name called area. |
|
| Method Summary | |
|---|---|
java.lang.String |
getArea()
Returns the logical name of the area that the click occurs, or null if not available. |
int |
getKeys()
Returns what keys were pressed when the mouse is clicked, or 0 if none of them was pressed. |
int |
getX()
Returns the x coordination of the mouse pointer relevant to the component. |
int |
getY()
Returns the y coordination of the mouse pointer relevant to the component. |
| Methods inherited from class org.zkoss.zk.ui.event.Event |
|---|
getData, getName, getPage, getTarget, isPropagatable, stopPropagation, toString |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
public static final int ALT_KEY
getKeys().
public static final int CTRL_KEY
getKeys().
public static final int SHIFT_KEY
getKeys().
| Constructor Detail |
|---|
public MouseEvent(java.lang.String name,
Component target)
public MouseEvent(java.lang.String name,
Component target,
int x,
int y)
public MouseEvent(java.lang.String name,
Component target,
int x,
int y,
int keys)
keys - a combination of CTRL_KEY, SHIFT_KEY
and ALT_KEY.
public MouseEvent(java.lang.String name,
Component target,
java.lang.String area)
| Method Detail |
|---|
public java.lang.String getArea()
It is used only with some special components, such as imagemap,
that partition itself into several logical areas.
public final int getX()
public final int getY()
public final int getKeys()
CTRL_KEY, SHIFT_KEY
and ALT_KEY.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||