public interface MouseEvent
The MouseEvent interface provides specific contextual
information associated with Mouse events.
The detail attribute inherited from UIEvent
indicates the number of times a mouse button has been pressed and
released over the same screen location during a user action. The
attribute value is 1 when the user begins this action and increments by 1
for each full sequence of pressing and releasing. If the user moves the
mouse between the mousedown and mouseup the value will be set to 0,
indicating that no click is occurring.
In the case of nested elements mouse events are always targeted at the most deeply nested element. Ancestors of the targeted element may use bubbling to obtain notification of mouse events which occur within its descendent elements.
See also the Document Object Model (DOM) Level 2 Events Specification.
| Field Summary |
|---|
| Fields inherited from interface org.w3c.dom.events.Event |
|---|
AT_TARGET, BUBBLING_PHASE, CAPTURING_PHASE |
| Method Summary | |
|---|---|
boolean |
getAltKey()
Used to indicate whether the 'alt' key was depressed during the firing of the event. |
short |
getButton()
During mouse events caused by the depression or release of a mouse button, button is used to indicate which mouse button
changed state. |
int |
getClientX()
The horizontal coordinate at which the event occurred relative to the DOM implementation's client area. |
int |
getClientY()
The vertical coordinate at which the event occurred relative to the DOM implementation's client area. |
boolean |
getCtrlKey()
Used to indicate whether the 'ctrl' key was depressed during the firing of the event. |
boolean |
getMetaKey()
Used to indicate whether the 'meta' key was depressed during the firing of the event. |
EventTarget |
getRelatedTarget()
Used to identify a secondary EventTarget related to a UI
event. |
int |
getScreenX()
The horizontal coordinate at which the event occurred relative to the origin of the screen coordinate system. |
int |
getScreenY()
The vertical coordinate at which the event occurred relative to the origin of the screen coordinate system. |
boolean |
getShiftKey()
Used to indicate whether the 'shift' key was depressed during the firing of the event. |
void |
initMouseEvent(String typeArg,
boolean canBubbleArg,
boolean cancelableArg,
org.w3c.dom.views.AbstractView viewArg,
int detailArg,
int screenXArg,
int screenYArg,
int clientXArg,
int clientYArg,
boolean ctrlKeyArg,
boolean altKeyArg,
boolean shiftKeyArg,
boolean metaKeyArg,
short buttonArg,
EventTarget relatedTargetArg)
The initMouseEvent method is used to initialize the value
of a MouseEvent created through the
DocumentEvent interface. |
| Methods inherited from interface org.w3c.dom.events.UIEvent |
|---|
getDetail, getView, initUIEvent |
| Methods inherited from interface org.w3c.dom.events.Event |
|---|
getBubbles, getCancelable, getCurrentTarget, getEventPhase, getTarget, getTimeStamp, getType, initEvent, preventDefault, stopPropagation |
| Method Detail |
|---|
int getScreenX()
int getScreenY()
int getClientX()
int getClientY()
boolean getCtrlKey()
boolean getShiftKey()
boolean getAltKey()
boolean getMetaKey()
short getButton()
button is used to indicate which mouse button
changed state. The values for button range from zero to
indicate the left button of the mouse, one to indicate the middle
button if present, and two to indicate the right button. For mice
configured for left handed use in which the button actions are
reversed the values are instead read from right to left.
EventTarget getRelatedTarget()
EventTarget related to a UI
event. Currently this attribute is used with the mouseover event to
indicate the EventTarget which the pointing device
exited and with the mouseout event to indicate the
EventTarget which the pointing device entered.
void initMouseEvent(String typeArg, boolean canBubbleArg, boolean cancelableArg, org.w3c.dom.views.AbstractView viewArg, int detailArg, int screenXArg, int screenYArg, int clientXArg, int clientYArg, boolean ctrlKeyArg, boolean altKeyArg, boolean shiftKeyArg, boolean metaKeyArg, short buttonArg, EventTarget relatedTargetArg)
initMouseEvent method is used to initialize the value
of a MouseEvent created through the
DocumentEvent interface. This method may only be called
before the MouseEvent has been dispatched via the
dispatchEvent method, though it may be called multiple
times during that phase if necessary. If called multiple times, the
final invocation takes precedence.
typeArgSpecifies - the event type.canBubbleArgSpecifies - whether or not the event can bubble.cancelableArgSpecifies - whether or not the event's default
action can be prevented.viewArgSpecifies - the Event's
AbstractView.detailArgSpecifies - the Event's mouse click count.screenXArgSpecifies - the Event's screen x coordinatescreenYArgSpecifies - the Event's screen y coordinateclientXArgSpecifies - the Event's client x coordinateclientYArgSpecifies - the Event's client y coordinatectrlKeyArgSpecifies - whether or not control key was depressed
during the Event.altKeyArgSpecifies - whether or not alt key was depressed during
the Event.shiftKeyArgSpecifies - whether or not shift key was depressed
during the Event.metaKeyArgSpecifies - whether or not meta key was depressed
during the Event.buttonArgSpecifies - the Event's mouse button.relatedTargetArgSpecifies - the Event's related
EventTarget.Ces informations proviennent du site de http://java.sun.com
Le contenu de cette page provient du site de Sun, et est généré depuis un cache sur l'infobrol après certains traitements automatisés. La présentation peut donc différer du document original, mais le contenu aussi. Vous pouvez utiliser ce bouton pour afficher la page originale du site de Sun :
Maintenir les pages en cache sur différents sites peut offrir plus de disponibilité.
Chaque page est indexée dans la base de donnée, ce qui permet de retrouver facilement les informations, au moyen des sommaires, du moteur de recherche interne, etc.
Des facilités sont mises en place pour que les membres de l'infobrol puissent effectuer des traductions en français des différents documents. Ceci devrait permettre aux débutants en programmation Java de consulter les API en français s'ils maîtrisent moins bien la langue de Shakespeare. Dans le cas où une traduction a été soumise, elle est disponible au moyen d'un lien en bas de page. Si la traduction a été validée, la page s'affiche par défaut en français, et un lien en bas de page permet d'atteindre la version en anglais.
Le code sur l'infobrol est automatiquement coloré selon la syntaxe, et les différents mots clés sont transformés en liens pour accéder rapidement aux informations.
Vous avez la possibilité de partager vos expériences en proposant vos propres extraits de code en utilisant le bouton "ajouter un commentaire" en bas de page. Si vous visitez simplement l'infobrol, vous avez déjà accès à cette fonction, mais si vous étes membre du brol, vous pouvez en plus utiliser des boutons supplémentaires de mise en forme, dont la coloration automatique de vos extraits de codes.
Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.
8 mots clés dont 0 définis manuellement (plus d'information...).
Avertissement
Cette page ne possède pas encore de mots clés manuels, ceci est donc un exemple automatique (les niveaux de pertinence sont fictifs, mais les liens sont valables). Pour tester le nuage avec une page qui contient des mots définis manuellement, vous pouvez cliquer ici.Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher le nuage de mots clés.
Recherche (afficher)
Utilisateur (masquer)
Navigation (masquer)
Apparence (afficher)
Stats (afficher)
Citation (masquer)