java.lang.Object
javafx.scene.web.PopupFeatures
This class describes features of a Web popup window as specified by
JavaScript
window.open
function. Instances are passed into popup
handlers registered on a WebEngine
using
WebEngine.setCreatePopupHandler(javafx.util.Callback<javafx.scene.web.PopupFeatures, javafx.scene.web.WebEngine>)
method.-
Constructor Summary
ConstructorDescriptionPopupFeatures
(boolean menu, boolean status, boolean toolbar, boolean resizable) Creates a new instance. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
hasMenu()
Returns whether menu bar should be present.final boolean
Returns whether status bar should be present.final boolean
Returns whether tool bar should be present.final boolean
Returns whether popup window should be resizable.
-
Constructor Details
-
PopupFeatures
public PopupFeatures(boolean menu, boolean status, boolean toolbar, boolean resizable) Creates a new instance.- Parameters:
menu
- whether menu bar should be presentstatus
- whether status bar should be presenttoolbar
- whether tool bar should be presentresizable
- whether popup window should be resizable
-
-
Method Details
-
hasMenu
public final boolean hasMenu()Returns whether menu bar should be present.- Returns:
- true if the menu bar should be present
-
hasStatus
public final boolean hasStatus()Returns whether status bar should be present.- Returns:
- true if the status bar should be present
-
hasToolbar
public final boolean hasToolbar()Returns whether tool bar should be present.- Returns:
- true if the tool bar should be present
-
isResizable
public final boolean isResizable()Returns whether popup window should be resizable.- Returns:
- true if the popup window should be resizable
-