Package | Description |
---|---|
com.sun.glass.ui.lens |
Modifier and Type | Field and Description |
---|---|
private LensWindow |
LensApplication.LensWindowEvent.window |
Modifier and Type | Method and Description |
---|---|
protected void |
LensApplication.notifyWindowEvent(LensWindow window,
int windowEvent)
This notification informs JFX on window events that doesn't
requires additional information for handling the
notification.
|
protected void |
LensApplication.notifyWindowMove(LensWindow window,
int x,
int y)
Notify JFX that the window have been moved and provide the
new coordinates.
|
protected void |
LensApplication.notifyWindowResize(LensWindow window,
int eventType,
int width,
int height)
handles the following window events WindowEvent.MINIMIZE /
MAXIMIZE /RESTORE / RESIZE
See Window.java::notifyResize() for more information
|
protected void |
LensApplication.windowExpose(LensWindow window,
int x,
int y,
int width,
int height) |
Constructor and Description |
---|
LensWindowEvent(LensApplication.LensWindowEvent.EType type,
LensWindow window,
int windowEvent)
Generic constructor, used when no parameters need to be
updated
|
LensWindowEvent(LensApplication.LensWindowEvent.EType type,
LensWindow window,
int windowEvent,
int x,
int y,
int width,
int height)
Use this constructor when window parameters have been changed
|