com.vaadin.ui.
Class Button.ClickEvent
java.lang.Object
java.util.EventObject
com.vaadin.ui.Component.Event
com.vaadin.ui.Button.ClickEvent
All Implemented Interfaces:
Enclosing class:
- extends Component.Event
public class Button.ClickEvent
Click event. This event is thrown, when the button is clicked.
Since:
3.0
Version:
6.8.18
Author:
Vaadin Ltd.
See Also:
Field Summary |
---|
Fields inherited from class java.util.EventObject |
---|
source |
Constructor Summary | |
---|---|
Button.ClickEvent(Component source)
New instance of text change event. |
|
Button.ClickEvent(Component source,
MouseEventDetails details)
Constructor with mouse details |
Method Summary | |
---|---|
Button |
getButton()
Gets the Button where the event occurred. |
int |
getClientX()
Returns the mouse position (x coordinate) when the click took place. |
int |
getClientY()
Returns the mouse position (y coordinate) when the click took place. |
int |
getRelativeX()
Returns the relative mouse position (x coordinate) when the click took place. |
int |
getRelativeY()
Returns the relative mouse position (y coordinate) when the click took place. |
boolean |
isAltKey()
Checks if the Alt key was down when the mouse event took place. |
boolean |
isCtrlKey()
Checks if the Ctrl key was down when the mouse event took place. |
boolean |
isMetaKey()
Checks if the Meta key was down when the mouse event took place. |
boolean |
isShiftKey()
Checks if the Shift key was down when the mouse event took place. |
Methods inherited from class com.vaadin.ui.Component.Event |
---|
getComponent |
Methods inherited from class java.util.EventObject |
---|
getSource, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
Button.ClickEvent
public Button.ClickEvent(Component source)
- Parameters:
source
- the Source of the event.
New instance of text change event.
Button.ClickEvent
public Button.ClickEvent(Component source,
MouseEventDetails details)
- Parameters:
source
- The source where the click took placedetails
- Details about the mouse click
Constructor with mouse details
Method Detail |
---|
getButton
public Button getButton()
- Returns:
- the Source of the event.
Gets the Button where the event occurred.
getClientX
public int getClientX()
- Returns:
- The mouse cursor x position or -1 if unknown
Returns the mouse position (x coordinate) when the click took place. The position is relative to the browser client area.
getClientY
public int getClientY()
- Returns:
- The mouse cursor y position or -1 if unknown
Returns the mouse position (y coordinate) when the click took place. The position is relative to the browser client area.
getRelativeX
public int getRelativeX()
- Returns:
- The mouse cursor x position relative to the clicked layout component or -1 if no x coordinate available
Returns the relative mouse position (x coordinate) when the click took place. The position is relative to the clicked component.
getRelativeY
public int getRelativeY()
- Returns:
- The mouse cursor y position relative to the clicked layout component or -1 if no y coordinate available
Returns the relative mouse position (y coordinate) when the click took place. The position is relative to the clicked component.
isAltKey
public boolean isAltKey()
- Returns:
- true if Alt was down when the event occured, false otherwise or if unknown
Checks if the Alt key was down when the mouse event took place.
isCtrlKey
public boolean isCtrlKey()
- Returns:
- true if Ctrl was pressed when the event occured, false otherwise or if unknown
Checks if the Ctrl key was down when the mouse event took place.
isMetaKey
public boolean isMetaKey()
- Returns:
- true if Meta was pressed when the event occured, false otherwise or if unknown
Checks if the Meta key was down when the mouse event took place.
isShiftKey
public boolean isShiftKey()
- Returns:
- true if Shift was pressed when the event occured, false otherwise or if unknown
Checks if the Shift key was down when the mouse event took place.