API java : MouseEvent


org.w3c.dom.events
Interface MouseEvent

All Superinterfaces:
Event, UIEvent

public interface MouseEvent
extends UIEvent

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.

Since:
DOM Level 2

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

getScreenX

int getScreenX()
The horizontal coordinate at which the event occurred relative to the origin of the screen coordinate system.


getScreenY

int getScreenY()
The vertical coordinate at which the event occurred relative to the origin of the screen coordinate system.


getClientX

int getClientX()
The horizontal coordinate at which the event occurred relative to the DOM implementation's client area.


getClientY

int getClientY()
The vertical coordinate at which the event occurred relative to the DOM implementation's client area.


getCtrlKey

boolean getCtrlKey()
Used to indicate whether the 'ctrl' key was depressed during the firing of the event.


getShiftKey

boolean getShiftKey()
Used to indicate whether the 'shift' key was depressed during the firing of the event.


getAltKey

boolean getAltKey()
Used to indicate whether the 'alt' key was depressed during the firing of the event. On some platforms this key may map to an alternative key name.


getMetaKey

boolean getMetaKey()
Used to indicate whether the 'meta' key was depressed during the firing of the event. On some platforms this key may map to an alternative key name.


getButton

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. 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.


getRelatedTarget

EventTarget getRelatedTarget()
Used to identify a secondary 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.


initMouseEvent

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. 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.

Parameters:
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 coordinate
screenYArgSpecifies - the Event's screen y coordinate
clientXArgSpecifies - the Event's client x coordinate
clientYArgSpecifies - the Event's client y coordinate
ctrlKeyArgSpecifies - 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

Remarques

Contenu

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 :

Quels sont les motivations de cette démarche?

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.

Réseaux sociaux

Vous pouvez modifier vos préférences dans votre profil pour ne plus afficher les interactions avec les réseaux sociaux sur ces pages.

 

Nuage de mots clés

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.

 

Astuce pour imprimer les couleurs des cellules de tableaux : http://www.gaudry.be/ast-rf-450.html
Aucun commentaire pour cette page

© Ce document issu de l′infobrol est enregistré sous le certificat Cyber PrInterDeposit Digital Numbertection. Enregistrement IDDN n° 5329-2510
Document créé le 30/08/06 22:50, dernière modification le Vendredi 17 Juin 2011, 12:12
Source du document imprimé : http://www.gaudry.be/java-api-rf-org/w3c/dom/events/MouseEvent.html Document affiché 1 fois ce mois de Juin.
St.Gaudry©07.01.02
Outils (masquer)
||
Recherche (afficher)
Recherche :

Utilisateur (masquer)
Apparence (afficher)
Stats (afficher)
15832 documents
452 astuces.
549 niouzes.
3099 definitions.
447 membres.
8115 messages.

Document genere en :
0,45 seconde

Mises à jour :
Mises à jour du site
Citation (masquer)
La vie c'est comme une boîte de chocolats, on ne sait jamais sur quoi on va tomber.

Robert Zemeckis [Extrait du film Forrest Gump]
 
l'infobrol
Nous sommes le Samedi 02 Juin 2012, 10:06, toutes les heures sont au format GMT+1.00 Heure, heure d'été (+1)