Klasse ListViewGraphics<R extends Row<?,?,?>>

Typparameter:
R - the type of the rows displayed inside the list view
Alle implementierten Schnittstellen:
Styleable, EventTarget, Skinnable

public class ListViewGraphics<R extends Row<?,?,?>> extends GraphicsBase<R>
A specialization of GraphicsBase that uses a ListView to display a list of rows. The user can use the arrow up and down keys for scrolling vertically and arrows left and right for scrolling horizontally.
Seit:
1.0
  • Eigenschaftsdetails

  • Konstruktordetails

    • ListViewGraphics

      public ListViewGraphics()
  • Methodendetails

    • createDefaultSkin

      protected Skin<?> createDefaultSkin()
      Setzt außer Kraft:
      createDefaultSkin in Klasse Control
    • getListView

      public final ListView<R> getListView()
      Returns the list view control used by this graphics view.
      Gibt zurück:
      the list view
      Seit:
      1.0
    • createListView

      protected ListView<R> createListView()
      Creates the list view instance to be used by this graphics view. This method can be overridden to return a specialization of ListView.
      Gibt zurück:
      a list view
      Seit:
      1.0
    • getRowPanes

      public List<RowPane<R>> getRowPanes()
      Angegeben von:
      getRowPanes in Klasse GraphicsBase<R extends Row<?,?,?>>
    • autoscrollProximityProperty

      public final DoubleProperty autoscrollProximityProperty()
      This property defines the distance from the viewport borders (in pixels) where the viewport will automatically start scrolling, either horizontally or vertically. This behaviour is needed when the user performs a drag operation and needs to reach an area inside the graphics that is currently not visible. Setting this value to 0 disables the automatic scrolling feature.
      Gibt zurück:
      the property used to control the autoscroll proximity
      Seit:
      1.3
      Siehe auch:
    • getAutoscrollProximity

      public final double getAutoscrollProximity()
      Returns the value of autoscrollProximityProperty().
      Gibt zurück:
      the distance in pixels to the viewport borders
      Seit:
      1.3
    • setAutoscrollProximity

      public final void setAutoscrollProximity(double value)
      Parameter:
      value - the distance in pixels to the viewport borders
      Seit:
      1.3
    • scrollValueProperty

      public final DoubleProperty scrollValueProperty()
      Stores the number of pixels that the list view will scroll when the user uses the arrow up and down keys.
      Gibt zurück:
      the scroll value
      Seit:
      1.3
      Siehe auch:
    • getScrollValue

      public final double getScrollValue()
      Returns the value of scrollValueProperty().
      Gibt zurück:
      the scroll value (in pixels)
      Seit:
      1.3
    • setScrollValue

      public final void setScrollValue(double pixels)
      Sets the value of scrollValueProperty().
      Parameter:
      pixels - the scroll value (in pixels)
      Seit:
      1.3
    • scrollUp

      public final void scrollUp()
      Makes the list view scroll up.
      Seit:
      1.3
      Siehe auch:
    • scrollDown

      public final void scrollDown()
      Makes the list view scroll down.
      Seit:
      1.3
      Siehe auch: