Uses of Class
org.eclipse.swt.events.ControlEvent
-
Packages that use ControlEvent Package Description org.eclipse.swt.events -
-
Uses of ControlEvent in org.eclipse.swt.events
Methods in org.eclipse.swt.events with parameters of type ControlEvent Modifier and Type Method Description void
ControlAdapter. controlMoved(ControlEvent e)
Sent when the location (x, y) of a control changes relative to its parent (or relative to the display, forShell
s).void
ControlListener. controlMoved(ControlEvent e)
Sent when the location (x, y) of a control changes relative to its parent (or relative to the display, forShell
s).void
ControlAdapter. controlResized(ControlEvent e)
Sent when the size (width, height) of a control changes.void
ControlListener. controlResized(ControlEvent e)
Sent when the size (width, height) of a control changes.Method parameters in org.eclipse.swt.events with type arguments of type ControlEvent Modifier and Type Method Description static ControlListener
ControlListener. controlMovedAdapter(java.util.function.Consumer<ControlEvent> c)
Static helper method to create aControlListener
for theControlListener.controlMoved(ControlEvent e)
) method, given a lambda expression or a method reference.static ControlListener
ControlListener. controlResizedAdapter(java.util.function.Consumer<ControlEvent> c)
Static helper method to create aControlListener
for theControlListener.controlResized(ControlEvent e)
) method, given a lambda expression or a method reference.
-