Class SeparatorSkin

java.lang.Object
javafx.scene.control.SkinBase<Separator>
javafx.scene.control.skin.SeparatorSkin
All Implemented Interfaces:
Skin<Separator>

public class SeparatorSkin extends SkinBase<Separator>
Default skin implementation for the Separator control.
Since:
9
See Also:
  • Constructor Details

    • SeparatorSkin

      public SeparatorSkin(Separator control)
      Creates a new SeparatorSkin instance, installing the necessary child nodes into the Control children list.
      Parameters:
      control - The control that this skin should be installed onto.
  • Method Details

    • layoutChildren

      protected void layoutChildren(double x, double y, double w, double h)
      We only need to deal with the single "line" child region. The important thing here is that we want a horizontal separator to have a line which is as wide as the separator (less the left/right padding), but as thin as it can be (based on its own pref height). The same idea for a vertical separator. It should be as tall as the separator (less the top and bottom padding) but as thin as can be (the pref width of the line).

      Then position the line within the separator such that the alignment properties are honored.

      Overrides:
      layoutChildren in class SkinBase<Separator>
      Parameters:
      x - the x position
      y - the y position
      w - the width
      h - the height