Module javafx.web

Class WebView

All Implemented Interfaces:
Styleable, EventTarget

public final class WebView extends Parent
WebView is a Node that manages a WebEngine and displays its content. The associated WebEngine is created automatically at construction time and cannot be changed afterwards. WebView handles mouse and some keyboard events, and manages scrolling automatically, so there's no need to put it into a ScrollPane.

WebView objects must be created and accessed solely from the FX thread.

Since:
JavaFX 2.0
  • Property Details

  • Constructor Details

    • WebView

      public WebView()
      Creates a WebView object.
  • Method Details

    • getEngine

      public final WebEngine getEngine()
      Returns the WebEngine object.
      Returns:
      the WebEngine
    • getWidth

      public final double getWidth()
      Gets the value of the width property.
      Property description:
      Width of this WebView.
      Returns:
      the value of the width property
      See Also:
    • widthProperty

      public ReadOnlyDoubleProperty widthProperty()
      Width of this WebView.
      Returns:
      the width property
      See Also:
    • getHeight

      public final double getHeight()
      Gets the value of the height property.
      Property description:
      Height of this WebView.
      Returns:
      the value of the height property
      See Also:
    • heightProperty

      public ReadOnlyDoubleProperty heightProperty()
      Height of this WebView.
      Returns:
      the height property
      See Also:
    • setZoom

      public final void setZoom(double value)
      Sets the value of the zoom property.
      Property description:
      The current zoom factor applied to the entire page contents.
      Default value:
      1.0
      Parameters:
      value - the value for the zoom property
      Since:
      JavaFX 8.0
      See Also:
    • getZoom

      public final double getZoom()
      Gets the value of the zoom property.
      Property description:
      The current zoom factor applied to the entire page contents.
      Default value:
      1.0
      Returns:
      the value of the zoom property
      Since:
      JavaFX 8.0
      See Also:
    • zoomProperty

      public final DoubleProperty zoomProperty()
      The current zoom factor applied to the entire page contents.
      Default value:
      1.0
      Returns:
      the zoom property
      Since:
      JavaFX 8.0
      See Also:
    • setFontScale

      public final void setFontScale(double value)
      Sets the value of the fontScale property.
      Property description:
      Specifies scale factor applied to font. This setting affects text content but not images and fixed size elements.
      Default value:
      1.0
      Parameters:
      value - the value for the fontScale property
      See Also:
    • getFontScale

      public final double getFontScale()
      Gets the value of the fontScale property.
      Property description:
      Specifies scale factor applied to font. This setting affects text content but not images and fixed size elements.
      Default value:
      1.0
      Returns:
      the value of the fontScale property
      See Also:
    • fontScaleProperty

      public DoubleProperty fontScaleProperty()
      Specifies scale factor applied to font. This setting affects text content but not images and fixed size elements.
      Default value:
      1.0
      Returns:
      the fontScale property
      See Also:
    • isResizable

      public boolean isResizable()
      Description copied from class: Node
      Indicates whether this node is a type which can be resized by its parent. If this method returns true, then the parent will resize the node (ideally within its size range) by calling node.resize(width,height) during the layout pass. All Regions, Controls, and WebView are resizable classes which depend on their parents resizing them during layout once all sizing and CSS styling information has been applied.

      If this method returns false, then the parent cannot resize it during layout (resize() is a no-op) and it should return its layoutBounds for minimum, preferred, and maximum sizes. Group, Text, and all Shapes are not resizable and hence depend on the application to establish their sizing by setting appropriate properties (e.g. width/height for Rectangle, text on Text, and so on). Non-resizable nodes may still be relocated during layout.

      Overrides:
      isResizable in class Node
      Returns:
      whether or not this node type can be resized by its parent during layout
      See Also:
    • resize

      public void resize(double width, double height)
      Description copied from class: Node
      If the node is resizable, will set its layout bounds to the specified width and height. If the node is not resizable, this method is a no-op.

      This method should generally only be called by parent nodes from their layoutChildren() methods. All Parent classes will automatically resize resizable children, so resizing done directly by the application will be overridden by the node's parent, unless the child is unmanaged.

      Parents are responsible for ensuring the width and height values fall within the resizable node's preferred range. The autosize() method may be used if the parent just needs to resize the node to its preferred size.

      Overrides:
      resize in class Node
      Parameters:
      width - the target layout bounds width
      height - the target layout bounds height
      See Also:
    • minWidth

      public final double minWidth(double height)
      Called during layout to determine the minimum width for this node.
      Overrides:
      minWidth in class Parent
      Parameters:
      height - the height that should be used if minimum width depends on it
      Returns:
      the minimum width that this node should be resized to during layout
      See Also:
    • minHeight

      public final double minHeight(double width)
      Called during layout to determine the minimum height for this node.
      Overrides:
      minHeight in class Parent
      Parameters:
      width - the width that should be used if minimum height depends on it
      Returns:
      the minimum height that this node should be resized to during layout
      See Also:
    • prefWidth

      public final double prefWidth(double height)
      Called during layout to determine the preferred width for this node.
      Overrides:
      prefWidth in class Parent
      Parameters:
      height - the height that should be used if preferred width depends on it
      Returns:
      the preferred width that this node should be resized to during layout
      See Also:
    • prefHeight

      public final double prefHeight(double width)
      Called during layout to determine the preferred height for this node.
      Overrides:
      prefHeight in class Parent
      Parameters:
      width - the width that should be used if preferred height depends on it
      Returns:
      the preferred height that this node should be resized to during layout
      See Also:
    • maxWidth

      public final double maxWidth(double height)
      Called during layout to determine the maximum width for this node.
      Overrides:
      maxWidth in class Node
      Parameters:
      height - the height that should be used if maximum width depends on it
      Returns:
      the maximum width that this node should be resized to during layout
      See Also:
    • maxHeight

      public final double maxHeight(double width)
      Called during layout to determine the maximum height for this node.
      Overrides:
      maxHeight in class Node
      Parameters:
      width - the width that should be used if maximum height depends on it
      Returns:
      the maximum height that this node should be resized to during layout
      See Also:
    • minWidthProperty

      public DoubleProperty minWidthProperty()
      Minimum width property.
      Returns:
      the minWidth property
      See Also:
    • setMinWidth

      public final void setMinWidth(double value)
      Sets the value of the minWidth property.
      Property description:
      Minimum width property.
      Parameters:
      value - the value for the minWidth property
      See Also:
    • getMinWidth

      public final double getMinWidth()
      Gets the value of the minWidth property.
      Property description:
      Minimum width property.
      Returns:
      the value of the minWidth property
      See Also:
    • minHeightProperty

      public DoubleProperty minHeightProperty()
      Minimum height property.
      Returns:
      the minHeight property
      See Also:
    • setMinHeight

      public final void setMinHeight(double value)
      Sets the value of the minHeight property.
      Property description:
      Minimum height property.
      Parameters:
      value - the value for the minHeight property
      See Also:
    • getMinHeight

      public final double getMinHeight()
      Gets the value of the minHeight property.
      Property description:
      Minimum height property.
      Returns:
      the value of the minHeight property
      See Also:
    • setMinSize

      public void setMinSize(double minWidth, double minHeight)
      Convenience method for setting minimum width and height.
      Parameters:
      minWidth - the minimum width
      minHeight - the minimum height
    • prefWidthProperty

      public DoubleProperty prefWidthProperty()
      Preferred width property.
      Returns:
      the prefWidth property
      See Also:
    • setPrefWidth

      public final void setPrefWidth(double value)
      Sets the value of the prefWidth property.
      Property description:
      Preferred width property.
      Parameters:
      value - the value for the prefWidth property
      See Also:
    • getPrefWidth

      public final double getPrefWidth()
      Gets the value of the prefWidth property.
      Property description:
      Preferred width property.
      Returns:
      the value of the prefWidth property
      See Also:
    • prefHeightProperty

      public DoubleProperty prefHeightProperty()
      Preferred height property.
      Returns:
      the prefHeight property
      See Also:
    • setPrefHeight

      public final void setPrefHeight(double value)
      Sets the value of the prefHeight property.
      Property description:
      Preferred height property.
      Parameters:
      value - the value for the prefHeight property
      See Also:
    • getPrefHeight

      public final double getPrefHeight()
      Gets the value of the prefHeight property.
      Property description:
      Preferred height property.
      Returns:
      the value of the prefHeight property
      See Also:
    • setPrefSize

      public void setPrefSize(double prefWidth, double prefHeight)
      Convenience method for setting preferred width and height.
      Parameters:
      prefWidth - the preferred width
      prefHeight - the preferred height
    • maxWidthProperty

      public DoubleProperty maxWidthProperty()
      Maximum width property.
      Returns:
      the maxWidth property
      See Also:
    • setMaxWidth

      public final void setMaxWidth(double value)
      Sets the value of the maxWidth property.
      Property description:
      Maximum width property.
      Parameters:
      value - the value for the maxWidth property
      See Also:
    • getMaxWidth

      public final double getMaxWidth()
      Gets the value of the maxWidth property.
      Property description:
      Maximum width property.
      Returns:
      the value of the maxWidth property
      See Also:
    • maxHeightProperty

      public DoubleProperty maxHeightProperty()
      Maximum height property.
      Returns:
      the maxHeight property
      See Also:
    • setMaxHeight

      public final void setMaxHeight(double value)
      Sets the value of the maxHeight property.
      Property description:
      Maximum height property.
      Parameters:
      value - the value for the maxHeight property
      See Also:
    • getMaxHeight

      public final double getMaxHeight()
      Gets the value of the maxHeight property.
      Property description:
      Maximum height property.
      Returns:
      the value of the maxHeight property
      See Also:
    • setMaxSize

      public void setMaxSize(double maxWidth, double maxHeight)
      Convenience method for setting maximum width and height.
      Parameters:
      maxWidth - the maximum width
      maxHeight - the maximum height
    • setFontSmoothingType

      public final void setFontSmoothingType(FontSmoothingType value)
      Sets the value of the fontSmoothingType property.
      Property description:
      Specifies a requested font smoothing type : gray or LCD. The width of the bounding box is defined by the widest row. Note: LCD mode doesn't apply in numerous cases, such as various compositing modes, where effects are applied and very large glyphs.
      Default value:
      FontSmoothingType.LCD
      Parameters:
      value - the value for the fontSmoothingType property
      Since:
      JavaFX 2.2
      See Also:
    • getFontSmoothingType

      public final FontSmoothingType getFontSmoothingType()
      Gets the value of the fontSmoothingType property.
      Property description:
      Specifies a requested font smoothing type : gray or LCD. The width of the bounding box is defined by the widest row. Note: LCD mode doesn't apply in numerous cases, such as various compositing modes, where effects are applied and very large glyphs.
      Default value:
      FontSmoothingType.LCD
      Returns:
      the value of the fontSmoothingType property
      Since:
      JavaFX 2.2
      See Also:
    • fontSmoothingTypeProperty

      public final ObjectProperty<FontSmoothingType> fontSmoothingTypeProperty()
      Specifies a requested font smoothing type : gray or LCD. The width of the bounding box is defined by the widest row. Note: LCD mode doesn't apply in numerous cases, such as various compositing modes, where effects are applied and very large glyphs.
      Default value:
      FontSmoothingType.LCD
      Returns:
      the fontSmoothingType property
      Since:
      JavaFX 2.2
      See Also:
    • setContextMenuEnabled

      public final void setContextMenuEnabled(boolean value)
      Sets the value of the contextMenuEnabled property.
      Property description:
      Specifies whether context menu is enabled.
      Default value:
      true
      Parameters:
      value - the value for the contextMenuEnabled property
      Since:
      JavaFX 2.2
      See Also:
    • isContextMenuEnabled

      public final boolean isContextMenuEnabled()
      Gets the value of the contextMenuEnabled property.
      Property description:
      Specifies whether context menu is enabled.
      Default value:
      true
      Returns:
      the value of the contextMenuEnabled property
      Since:
      JavaFX 2.2
      See Also:
    • contextMenuEnabledProperty

      public final BooleanProperty contextMenuEnabledProperty()
      Specifies whether context menu is enabled.
      Default value:
      true
      Returns:
      the contextMenuEnabled property
      Since:
      JavaFX 2.2
      See Also:
    • getClassCssMetaData

      public static List<CssMetaData<? extends Styleable,?>> getClassCssMetaData()
      Returns:
      The CssMetaData associated with this class, which may include the CssMetaData of its superclasses.
      Since:
      JavaFX 8.0
    • getCssMetaData

      public List<CssMetaData<? extends Styleable,?>> getCssMetaData()
      This method should delegate to Node.getClassCssMetaData() so that a Node's CssMetaData can be accessed without the need for reflection.
      Specified by:
      getCssMetaData in interface Styleable
      Overrides:
      getCssMetaData in class Node
      Returns:
      The CssMetaData associated with this node, which may include the CssMetaData of its superclasses.
      Since:
      JavaFX 8.0
    • getChildren

      protected ObservableList<Node> getChildren()
      Description copied from class: Parent
      Gets the list of children of this Parent.

      See the class documentation for Node for scene graph structure restrictions on setting a Parent's children list. If these restrictions are violated by a change to the list of children, the change is ignored and the previous value of the children list is restored. An IllegalArgumentException is thrown in this case.

      If this Parent node is attached to a Scene attached to a Window that is showning (Window.isShowing()), then its list of children must only be modified on the JavaFX Application Thread. An IllegalStateException is thrown if this restriction is violated.

      Note to subclasses: if you override this method, you must return from your implementation the result of calling this super method. The actual list instance returned from any getChildren() implementation must be the list owned and managed by this Parent. The only typical purpose for overriding this method is to promote the method to be public.

      Overrides:
      getChildren in class Parent
      Returns:
      the list of children of this Parent.