Package org.eclipse.gef.requests
Class SelectionRequest
- java.lang.Object
-
- org.eclipse.gef.Request
-
- org.eclipse.gef.requests.LocationRequest
-
- org.eclipse.gef.requests.SelectionRequest
-
public class SelectionRequest extends LocationRequest
A request to select an edit part.
-
-
Constructor Summary
Constructors Constructor Description SelectionRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetLastButtonPressed()Returns the last button that was pressed.intgetModifiers()Returns the statemask for this request.booleanisAltKeyPressed()Returnstrueif the ALT key is currently pressed.booleanisAnyMouseButtonPressed()Returnstrueif any mouse button is currently pressed.booleanisCommandKeyPressed()Returnstrueif the COMMAND key is currently pressed.booleanisControlKeyPressed()Returnstrueif the CTRL key is currently pressed.booleanisLeftMouseButtonPressed()Returnstrueif the left mouse button is pressed.booleanisRightMouseButtonPressed()Returnstrueif the right mouse button is pressed.booleanisShiftKeyPressed()Returnstrueif the SHIFT key is currently pressed.voidsetLastButtonPressed(int button)Sets the last mouse button that was pressed.voidsetModifiers(int mask)Sets the statemask for this request.-
Methods inherited from class org.eclipse.gef.requests.LocationRequest
getLocation, setLocation
-
Methods inherited from class org.eclipse.gef.Request
getExtendedData, getType, setExtendedData, setType
-
-
-
-
Method Detail
-
getLastButtonPressed
public int getLastButtonPressed()
Returns the last button that was pressed. This is useful if there is more than one mouse button pressed and the most recent button pressed needs to be identified.- Returns:
- the last button pressed
-
getModifiers
public int getModifiers()
Returns the statemask for this request.- Returns:
- the statemask
- Since:
- 3.7
-
isAltKeyPressed
public boolean isAltKeyPressed()
Returnstrueif the ALT key is currently pressed.- Returns:
- whether the ALT key is pressed
-
isAnyMouseButtonPressed
public boolean isAnyMouseButtonPressed()
Returnstrueif any mouse button is currently pressed.- Returns:
- whether any mouse button is pressed
-
isCommandKeyPressed
public boolean isCommandKeyPressed()
Returnstrueif the COMMAND key is currently pressed.- Returns:
- whether the COMMAND key is pressed
- Since:
- 3.7
-
isControlKeyPressed
public boolean isControlKeyPressed()
Returnstrueif the CTRL key is currently pressed.- Returns:
- whether the CTRL key is pressed
-
isLeftMouseButtonPressed
public boolean isLeftMouseButtonPressed()
Returnstrueif the left mouse button is pressed.- Returns:
- whether the left mouse button is pressed
-
isRightMouseButtonPressed
public boolean isRightMouseButtonPressed()
Returnstrueif the right mouse button is pressed.- Returns:
- whether the right mouse button is pressed
-
isShiftKeyPressed
public boolean isShiftKeyPressed()
Returnstrueif the SHIFT key is currently pressed.- Returns:
- whether the SHIFT key is pressed
-
setModifiers
public void setModifiers(int mask)
Sets the statemask for this request.- Parameters:
mask- the statemask
-
setLastButtonPressed
public void setLastButtonPressed(int button)
Sets the last mouse button that was pressed.- Parameters:
button- the last button pressed
-
-