Package com.sun.javafx.stage
Class PopupWindowPeerListener
java.lang.Object
com.sun.javafx.stage.WindowPeerListener
com.sun.javafx.stage.PopupWindowPeerListener
- All Implemented Interfaces:
TKStageListener
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidchangedFocused(boolean cf, FocusCause cause) The stages peer focused state has changed.voidchangedFullscreen(boolean fs) The stages peer has changed its full screen statusvoidchangedIconified(boolean iconified) The stages peer has become iconified or uniconifiedvoidchangedLocation(float x, float y) The stages peer's location have changed so we need to update the scenevoidchangedMaximized(boolean maximized) The stages peer has become maximized or unmaximizedvoidchangedResizable(boolean resizable) The stages peer has become resizable or nonresizablevoidclosing()Called if the window is closing do to something that has happened on the peer.voidFocus grab has been reset for the stage peer.Methods inherited from class com.sun.javafx.stage.WindowPeerListener
changedAlwaysOnTop, changedScreen, changedSize, closed
-
Constructor Details
-
PopupWindowPeerListener
-
-
Method Details
-
changedFocused
Description copied from interface:TKStageListenerThe stages peer focused state has changed.- Specified by:
changedFocusedin interfaceTKStageListener- Overrides:
changedFocusedin classWindowPeerListener- Parameters:
cf- True if the stage's peer now contains the focuscause- The cause of (de)activation
-
closing
public void closing()Description copied from interface:TKStageListenerCalled if the window is closing do to something that has happened on the peer. For example the user clicking the close button or choosing quit from the application menu on a mac or right click close on the task bar on windows.- Specified by:
closingin interfaceTKStageListener- Overrides:
closingin classWindowPeerListener
-
changedLocation
public void changedLocation(float x, float y) Description copied from interface:TKStageListenerThe stages peer's location have changed so we need to update the scene- Specified by:
changedLocationin interfaceTKStageListener- Overrides:
changedLocationin classWindowPeerListener- Parameters:
x- the new Xy- The new Y
-
changedIconified
public void changedIconified(boolean iconified) Description copied from interface:TKStageListenerThe stages peer has become iconified or uniconified- Specified by:
changedIconifiedin interfaceTKStageListener- Overrides:
changedIconifiedin classWindowPeerListener- Parameters:
iconified- True if the stage's peer is now iconified
-
changedMaximized
public void changedMaximized(boolean maximized) Description copied from interface:TKStageListenerThe stages peer has become maximized or unmaximized- Specified by:
changedMaximizedin interfaceTKStageListener- Overrides:
changedMaximizedin classWindowPeerListener- Parameters:
maximized- True if the stage's peer is now maximized
-
changedResizable
public void changedResizable(boolean resizable) Description copied from interface:TKStageListenerThe stages peer has become resizable or nonresizable- Specified by:
changedResizablein interfaceTKStageListener- Overrides:
changedResizablein classWindowPeerListener- Parameters:
resizable- True if the stage's peer is now resizable
-
changedFullscreen
public void changedFullscreen(boolean fs) Description copied from interface:TKStageListenerThe stages peer has changed its full screen status- Specified by:
changedFullscreenin interfaceTKStageListener- Overrides:
changedFullscreenin classWindowPeerListener- Parameters:
fs- True if the stage's peer is now full screen, false otherwise
-
focusUngrab
public void focusUngrab()Description copied from interface:TKStageListenerFocus grab has been reset for the stage peer. Called after a previous call towhen the grab is reset either by user action (e.g. clicking the titlebar of the stage), or via a call toinvalid @link
TKStage#grabFocus.invalid @link
TKStage#ungrabFocus- Specified by:
focusUngrabin interfaceTKStageListener- Overrides:
focusUngrabin classWindowPeerListener
-