scalafx.scene.control

cell

package cell

Wraps javafx.scene.control.cell package.

Source
package.scala
Linear Supertypes
Content Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. cell
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. trait CellIncludes extends AnyRef

    Contains implcit methods to convert from javafx.scene.control.cell Classes/Traits to their ScalaFX counterparts.

  2. class CheckBoxListCell[T] extends ListCell[T] with ConvertableCell[javafx.scene.control.cell.CheckBoxListCell[T], T, T] with StateSelectableCell[javafx.scene.control.cell.CheckBoxListCell[T], T, T] with UpdatableCell[javafx.scene.control.cell.CheckBoxListCell[T], T] with SFXDelegate[javafx.scene.control.cell.CheckBoxListCell[T]]

    Wraps CheckBoxListCell

    T

    Type used in this cell

  3. class CheckBoxTableCell[S, T] extends TableCell[S, T] with ConvertableCell[javafx.scene.control.cell.CheckBoxTableCell[S, T], T, T] with StateSelectableCell[javafx.scene.control.cell.CheckBoxTableCell[S, T], T, Integer] with UpdatableCell[javafx.scene.control.cell.CheckBoxTableCell[S, T], T] with SFXDelegate[javafx.scene.control.cell.CheckBoxTableCell[S, T]]

    Wraps CheckBoxTableCell

    T

    Type used in this cell

  4. class CheckBoxTreeCell[T] extends TreeCell[T] with ConvertableCell[javafx.scene.control.cell.CheckBoxTreeCell[T], T, javafx.scene.control.TreeItem[T]] with StateSelectableCell[javafx.scene.control.cell.CheckBoxTreeCell[T], T, javafx.scene.control.TreeItem[T]] with UpdatableCell[javafx.scene.control.cell.CheckBoxTreeCell[T], T] with SFXDelegate[javafx.scene.control.cell.CheckBoxTreeCell[T]]

    Wraps CheckBoxTreeCell

    T

    Type used in this cell

  5. class ChoiceBoxListCell[T] extends ListCell[T] with ConvertableCell[javafx.scene.control.cell.ChoiceBoxListCell[T], T, T] with UpdatableCell[javafx.scene.control.cell.ChoiceBoxListCell[T], T] with ItemableCell[javafx.scene.control.cell.ChoiceBoxListCell[T], T] with SFXDelegate[javafx.scene.control.cell.ChoiceBoxListCell[T]]

    Wraps ChoiceBoxListCell

    T

    Type used in this cell

  6. class ChoiceBoxTableCell[S, T] extends TableCell[S, T] with ConvertableCell[javafx.scene.control.cell.ChoiceBoxTableCell[S, T], T, T] with UpdatableCell[javafx.scene.control.cell.ChoiceBoxTableCell[S, T], T] with ItemableCell[javafx.scene.control.cell.ChoiceBoxTableCell[S, T], T] with SFXDelegate[javafx.scene.control.cell.ChoiceBoxTableCell[S, T]]

    Wraps ChoiceBoxListCell

    T

    Type used in this cell

  7. class ChoiceBoxTreeCell[T] extends TreeCell[T] with ConvertableCell[javafx.scene.control.cell.ChoiceBoxTreeCell[T], T, T] with UpdatableCell[javafx.scene.control.cell.ChoiceBoxTreeCell[T], T] with ItemableCell[javafx.scene.control.cell.ChoiceBoxTreeCell[T], T] with SFXDelegate[javafx.scene.control.cell.ChoiceBoxTreeCell[T]]

    Wraps ChoiceBoxTreeCell

    T

    Type used in this cell

  8. type ComboBoxEditable = AnyRef { def comboBoxEditableProperty(): javafx.beans.property.BooleanProperty }

    Types that contains the method comboBoxEditableProperty(): jfxbp.BooleanProperty

  9. trait ComboBoxEditableCell[C <: javafx.scene.control.Cell[T] with ComboBoxEditable, T] extends SFXDelegate[C]

    Cells which delegate contains the method comboBoxEditableProperty(): jfxbp.BooleanProperty.

    Cells which delegate contains the method comboBoxEditableProperty(): jfxbp.BooleanProperty.

    C

    Derivated type from JavaFX Cell

    T

    The type of the elements contained within the inner element inside the Cell.

  10. class ComboBoxListCell[T] extends ListCell[T] with ConvertableCell[javafx.scene.control.cell.ComboBoxListCell[T], T, T] with ComboBoxEditableCell[javafx.scene.control.cell.ComboBoxListCell[T], T] with UpdatableCell[javafx.scene.control.cell.ComboBoxListCell[T], T] with ItemableCell[javafx.scene.control.cell.ComboBoxListCell[T], T] with SFXDelegate[javafx.scene.control.cell.ComboBoxListCell[T]]

    Wraps ChoiceBoxListCell

    T

    Type used in this cell

  11. class ComboBoxTableCell[S, T] extends TableCell[S, T] with ConvertableCell[javafx.scene.control.cell.ComboBoxTableCell[S, T], T, T] with ComboBoxEditableCell[javafx.scene.control.cell.ComboBoxTableCell[S, T], T] with UpdatableCell[javafx.scene.control.cell.ComboBoxTableCell[S, T], T] with ItemableCell[javafx.scene.control.cell.ComboBoxTableCell[S, T], T] with SFXDelegate[javafx.scene.control.cell.ComboBoxTableCell[S, T]]

    Wraps ComboBoxTableCell

    T

    Type used in this cell

  12. class ComboBoxTreeCell[T] extends TreeCell[T] with ConvertableCell[javafx.scene.control.cell.ComboBoxTreeCell[T], T, T] with ComboBoxEditableCell[javafx.scene.control.cell.ComboBoxTreeCell[T], T] with UpdatableCell[javafx.scene.control.cell.ComboBoxTreeCell[T], T] with ItemableCell[javafx.scene.control.cell.ComboBoxTreeCell[T], T] with SFXDelegate[javafx.scene.control.cell.ComboBoxTreeCell[T]]

    Wraps ComboBoxTreeCell

    T

    Type used in this cell

  13. type Convertable[J] = AnyRef { def converterProperty(): javafx.beans.property.ObjectProperty[javafx.util.StringConverter[J]] }

    Types that contains the method converterProperty(): jfxbp.ObjectProperty[jfxu.StringConverter[T]]

  14. trait ConvertableCell[C <: javafx.scene.control.Cell[T] with Convertable[J], T, J] extends SFXDelegate[C]

    Cells which delegate contains the method converterProperty(): jfxbp.ObjectProperty[jfxu.StringConverter[T]]

    Cells which delegate contains the method converterProperty(): jfxbp.ObjectProperty[jfxu.StringConverter[T]]

    C

    Derivated type from JavaFX Cell

    T

    The type of the elements contained within the inner element inside the Cell.

    J

    Original Java type used by converter.

  15. type Itemable[T] = AnyRef { def getItems(): javafx.collections.ObservableList[T] }

    Types that contains the method getItems(): ObservableList[T].

  16. trait ItemableCell[C <: javafx.scene.control.Cell[T] with Itemable[T], T] extends SFXDelegate[C]

    javafx.scene.control.Cells that contains the method getItems(): ObservableList[T].

    javafx.scene.control.Cells that contains the method getItems(): ObservableList[T].

    C

    Derived type from JavaFX Cell

    T

    The type of the elements contained within the inner element inside the Cell.

  17. class ProgressBarTableCell[S] extends TableCell[S, Double] with UpdatableCell[javafx.scene.control.cell.ProgressBarTableCell[S], Double] with SFXDelegate[javafx.scene.control.cell.ProgressBarTableCell[S]]

    Wraps ProgressBarTableCell

    S

    Type used in this cell

  18. type StateSelectable[J] = AnyRef { def selectedStateCallbackProperty(): javafx.beans.property.ObjectProperty[javafx.util.Callback[J,javafx.beans.value.ObservableValue[Boolean]]] }

    Types that contains the property selectedStateCallback.

  19. trait StateSelectableCell[C <: javafx.scene.control.Cell[T] with StateSelectable[J], T, J] extends SFXDelegate[C]

    Cells which delegate contains the property selectedStateCallback.

    Cells which delegate contains the property selectedStateCallback.

    TODO: Convert selectedStateCallback getter return type from jfxbp.ObjectProperty[jfxu.Callback[J, javafx.beans.property.ObservableValue[java.lang.Boolean]]] to ObjectProperty[J => ObservableValue[Boolean, java.lang.Boolean]].

    C

    Derivated type from JavaFX Cell

    T

    The type of the elements contained within the inner element inside the Cell.

    J

    Original Java type used by converter.

  20. class TextFieldListCell[T] extends ListCell[T] with ConvertableCell[javafx.scene.control.cell.TextFieldListCell[T], T, T] with UpdatableCell[javafx.scene.control.cell.TextFieldListCell[T], T] with SFXDelegate[javafx.scene.control.cell.TextFieldListCell[T]]

    Wraps TextFieldListCell

    T

    Type used in this cell

  21. class TextFieldTableCell[S, T] extends TableCell[S, T] with ConvertableCell[javafx.scene.control.cell.TextFieldTableCell[S, T], T, T] with UpdatableCell[javafx.scene.control.cell.TextFieldTableCell[S, T], T] with SFXDelegate[javafx.scene.control.cell.TextFieldTableCell[S, T]]

    Wraps TextFieldTableCell

    T

    Type used in this cell

  22. class TextFieldTreeCell[T] extends TreeCell[T] with ConvertableCell[javafx.scene.control.cell.TextFieldTreeCell[T], T, T] with UpdatableCell[javafx.scene.control.cell.TextFieldTreeCell[T], T] with SFXDelegate[javafx.scene.control.cell.TextFieldTreeCell[T]]

    Wraps TextFieldTreeCell

    T

    Type used in this cell

  23. trait UpdatableCell[C <: javafx.scene.control.Cell[T], T] extends SFXDelegate[C]

    Cells which delegate contains the method updateItem(item: Any, empty: Boolean): Unit.

    Cells which delegate contains the method updateItem(item: Any, empty: Boolean): Unit.

    C

    Derivated type from JavaFX Cell

    T

    The type of the elements contained within the inner element inside the Cell.

Inherited from AnyRef

Inherited from Any

Ungrouped