Includes

scalafx.Includes
See theIncludes companion object

Attributes

Companion
object
Graph
Supertypes
Known subtypes
object Includes.type

Members list

Value members

Inherited methods

def add(v1: ObservableNumberValue, values: ObservableNumberValue*): ObservableNumberValue

Returns the sum of a collection of JavaFX `ObservableNumberValue`s.

Returns the sum of a collection of JavaFX `ObservableNumberValue`s.

Value parameters

v1

First Value

values

Collection of values

Attributes

Returns

The Value sum.

Inherited from:
Bindings
def at(time: Duration)(v: => Set[KeyValue[_, _ <: Object]]): KeyFrame

Value parameters

time

Duration time

v

Function which returns a scalafx.animation.KeyValue scala.collection.immutable.Set

Attributes

Returns

new KeyFrame

Inherited from:
AnimationIncludes
def createBooleanBinding(func: () => Boolean, dependencies: Observable*): BooleanBinding

Helper function to create a custom BooleanBinding.

Helper function to create a custom BooleanBinding.

Wraps a JavaFX Bindings.createBooleanBinding.

Value parameters

dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Attributes

Returns

The generated binding

Inherited from:
Bindings
def createDoubleBinding(func: () => Double, dependencies: Observable*): DoubleBinding

Helper function to create a custom DoubleBinding.

Helper function to create a custom DoubleBinding.

Wraps a JavaFX Bindings.createDoubleBinding.

Value parameters

dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Attributes

Returns

The generated binding

Inherited from:
Bindings
def createFloatBinding(func: () => Float, dependencies: Observable*): FloatBinding

Helper function to create a custom FloatBinding.

Helper function to create a custom FloatBinding.

Wraps a JavaFX Bindings.createFloatBinding.

Value parameters

dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Attributes

Returns

The generated binding

Inherited from:
Bindings
def createIntegerBinding(func: () => Int, dependencies: Observable*): IntegerBinding

Helper function to create a custom IntegerBinding.

Helper function to create a custom IntegerBinding.

Wraps a JavaFX Bindings.createIntegerBinding.

Value parameters

dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Attributes

Returns

The generated binding

Inherited from:
Bindings
def createLongBinding(func: () => Long, dependencies: Observable*): LongBinding

Helper function to create a custom LongBinding.

Helper function to create a custom LongBinding.

Wraps a JavaFX Bindings.createLongBinding.

Value parameters

dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Attributes

Returns

The generated binding

Inherited from:
Bindings
def createObjectBinding[T](func: () => T, dependencies: Observable*): ObjectBinding[T]

Helper function to create a custom ObjectBinding.

Helper function to create a custom ObjectBinding.

Wraps a JavaFX Bindings.createObjectBinding.

Value parameters

dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Attributes

Returns

The generated binding

Inherited from:
Bindings
def createStringBinding(func: () => String, dependencies: Observable*): StringBinding

Helper function to create a custom StringBinding.

Helper function to create a custom StringBinding.

Wraps a JavaFX Bindings.createStringBinding.

Value parameters

dependencies

The dependencies of this binding

func

The function that calculates the value of this binding

Attributes

Returns

The generated binding

Inherited from:
Bindings
def max(v1: ObservableNumberValue, values: ObservableNumberValue*): ObservableNumberValue

Returns the Lowest value among a collection of JavaFX `ObservableNumberValue`s.

Returns the Lowest value among a collection of JavaFX `ObservableNumberValue`s.

Value parameters

v1

First Value

values

Collection of values

Attributes

Returns

The Lowest Value

Inherited from:
Bindings
def min(v1: ObservableNumberValue, values: ObservableNumberValue*): ObservableNumberValue

Returns the highest value among a collection of JavaFX `ObservableNumberValue`s.

Returns the highest value among a collection of JavaFX `ObservableNumberValue`s.

Value parameters

v1

First Value

values

Collection of values

Attributes

Returns

The highest Value

Inherited from:
Bindings
def when(condition: => ObservableBooleanValue): ConditionBuilder

Value parameters

condition

Function that returns a JavaFX `ObservableBooleanValue`

Attributes

Returns

A ConditionBuilder wrapping condition.

Inherited from:
Bindings

Deprecated and Inherited methods

def handle[J <: Event, R](handler: => R): EventHandler[J]

NOTE: use of handle is deprecated in Scala 2.12 and newer, you can use standard Scala syntax:

NOTE: use of handle is deprecated in Scala 2.12 and newer, you can use standard Scala syntax:

button.onAction = _ => {
 println("Handling button action")
 doSomething()
}

For Scala 2.11 and older, you can use handle to create a simple event handler when information about event is not be used.

Enables following use:

button.onAction = handle {
 println("Handling button action")
 doSomething()
}

Type parameters

J

JavaFX Event subclass.

Value parameters

handler

code executed when event is handled.

Attributes

Returns

JavaFX EventHandler which will wrap the input code handler.

Deprecated
true
Inherited from:
EventIncludes

Implicits

Inherited implicits

implicit def closure2ChangedListener[P, R](cl: (ObservableValue[_ <: P], P, P) => R): ChangeListener[P]

Converts a closure to a JavaFX ChangeListener.

Converts a closure to a JavaFX ChangeListener.

Type parameters

P

Change listener type.

R

closure can have arbitrary return type to make usage easier (last statement in the closure does not have to return Unit). Return value is ignored in generated listener.

Value parameters

cl

Closure to be converted.

Attributes

Returns

a new JavaFX ChangeListener.

Inherited from:
BindingIncludes
implicit def closure2InvalidationListener[R](il: Observable => R): InvalidationListener

Converts a closure to a JavaFX InvalidationListener.

Converts a closure to a JavaFX InvalidationListener.

Type parameters

R

closure can have arbitrary return type to make usage easier (last statement in the closure does not have to return Unit). Return value is ignored in generated listener.

Value parameters

il

Closure to be converted.

Attributes

Returns

a new JavaFX InvalidationListener.

Inherited from:
BindingIncludes
implicit def closureSFX2InvalidationListener[R](il: Observable => R): InvalidationListener

Converts a closure to a JavaFX InvalidationListener.

Converts a closure to a JavaFX InvalidationListener.

Type parameters

R

closure can have arbitrary return type to make usage easier (last statement in the closure does not have to return Unit). Return value is ignored in generated listener.

Value parameters

il

Closure to be converted.

Attributes

Returns

a new JavaFX InvalidationListener.

Inherited from:
BindingIncludes
implicit def double2DoubleBinding(i: Double): DoubleBinding

Converts a Double to a JavaFX DoubleBinding

Converts a Double to a JavaFX DoubleBinding

Value parameters

i

Double to generate a new DoubleBinding

Attributes

Returns

a new DoubleBinding generated from the Double.

Inherited from:
BindingIncludes
implicit def double2DurationHelper(d: Double): DurationHelper

Converts a Double to a Duration.

Converts a Double to a Duration.

Value parameters

d

Double to convert

Attributes

Returns

A scalafx.util.Duration.DurationHelper from where it is possible create a new scalafx.util.Duration instance.

Inherited from:
UtilIncludes

Converts a Double to a VariablePrecisionNumber.

Converts a Double to a VariablePrecisionNumber.

Value parameters

d

A Double

Attributes

Returns

a VariablePrecisionNumber

Inherited from:
BindingIncludes
implicit def eventClosureWrapperWithParam[J <: Event, S <: SFXDelegate[J], R](handler: S => R)(implicit jfx2sfx: J => S): EventHandler[J]

Converts a closure to a JavaFX EventHandler. It is used when the event properties ''will be used''.

Converts a closure to a JavaFX EventHandler. It is used when the event properties ''will be used''.

Enables following use:

button.onAction = (e:ActionEvent) => {
 println("Handling button action: " + e)
 doSomething(e)
}

Type parameters

J

JavaFX Event subclass.

Value parameters

handler

Closure that that takes scalafx.event.Event as argument.

Attributes

Returns

JavaFX EventHandler which handle method will call handler

Inherited from:
EventIncludes
implicit def eventClosureWrapperWithZeroParam[T <: Event, R](handler: () => R): EventHandler[T]

Converts a closure to a JavaFX EventHandler. It is used when information about event is not be used.

Converts a closure to a JavaFX EventHandler. It is used when information about event is not be used.

Enables following use:

button.onAction = () => {
  println("Handling button action")
  doSomething()
}

Type parameters

T

JavaFX Event subclass.

Value parameters

handler

Closure that ''will not'' handle event.

Attributes

Returns

JavaFX EventHandler which handle method will call handler

Inherited from:
EventIncludes
implicit def float2FloatBinding(i: Float): FloatBinding

Converts a Float to a JavaFX FloatBinding

Converts a Float to a JavaFX FloatBinding

Value parameters

i

Float to generate a new FloatBinding

Attributes

Returns

a new FloatBinding generated from the Float.

Inherited from:
BindingIncludes
implicit def hex2jfxColor(h: Int): Color

Converts a Interger (preferentially in a Hexadecinal format) to a JavaFX Color. See JavaFX's Color.rgb() for more details.

Converts a Interger (preferentially in a Hexadecinal format) to a JavaFX Color. See JavaFX's Color.rgb() for more details.

Value parameters

h

Number to be converted

Attributes

Returns

JavaFX Color correspondent to Number.

Inherited from:
PaintIncludes
implicit def hex2sfxColor(h: Int): Color

Converts a Interger (preferentially in a Hexadecinal format) to a ScalaFX Color. See JavaFX's Color.rgb() for more details.

Converts a Interger (preferentially in a Hexadecinal format) to a ScalaFX Color. See JavaFX's Color.rgb() for more details.

Value parameters

h

Number to be converted

Attributes

Returns

ScalaFX Color correspondent to Number.

Inherited from:
PaintIncludes
implicit def integer2IntegerBinding(i: Int): IntegerBinding

Converts a Integer to a JavaFX IntegerBinding

Converts a Integer to a JavaFX IntegerBinding

Value parameters

i

Integer to generate a new IntegerBinding

Attributes

Returns

a new IntegerBinding generated from the Integer.

Inherited from:
BindingIncludes
implicit def jfxAccessibleAction2sfx(e: AccessibleAction): AccessibleAction

Attributes

Inherited from:
LowerPriorityIncludes
implicit def jfxAccessibleRole2sfx(e: AccessibleRole): AccessibleRole

Attributes

Inherited from:
LowerPriorityIncludes
implicit def jfxAccordion2sfx(a: Accordion): Accordion

Converts a JavaFX Accordion instance to its ScalaFX counterpart.

Converts a JavaFX Accordion instance to its ScalaFX counterpart.

Value parameters

a

JavaFX Accordion

Attributes

Returns

ScalaFX Accordion

Inherited from:
ControlIncludes
implicit def jfxActionEvent2sfx(ae: ActionEvent): ActionEvent

Converts a `javafx.event.ActionEvent` instance to its ScalaFX counterpart.

Converts a `javafx.event.ActionEvent` instance to its ScalaFX counterpart.

Value parameters

ae

JavaFX ActionEvent

Attributes

Returns

ScalaFX ActionEvent

Inherited from:
EventIncludes
implicit def jfxAffine2sfx(v: Affine): Affine

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Affine.html Affine]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Affine.html Affine]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Affine

Attributes

Returns

ScalaFX Affine

Inherited from:
TransformIncludes
implicit def jfxAlert2sfx(a: Alert): Alert

Attributes

Inherited from:
ControlIncludes
implicit def jfxAlertType2sfx(a: AlertType): AlertType

Attributes

Inherited from:
ControlIncludes
implicit def jfxAmbientLight2sfx(v: AmbientLight): AmbientLight

Attributes

Inherited from:
LowerPriorityIncludes
implicit def jfxAnchorPane2sfx(a: AnchorPane): AnchorPane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/AnchorPane.html AnchorPane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/AnchorPane.html AnchorPane]] instance to its ScalaFX counterpart.

Value parameters

a

JavaFX AnchorPane

Attributes

Returns

ScalaFX AnchorPane

Inherited from:
LayoutIncludes
implicit def jfxAnimation2sfx(v: Animation): Animation

Generates a ScalaFX Animation from its JavaFX counterparty.

Generates a ScalaFX Animation from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxAnimationStatus2sfx(v: Status): Status

Generates a ScalaFX Animation.Status from its JavaFX counterparty.

Generates a ScalaFX Animation.Status from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxAnimationTimer2sfx(at: AnimationTimer): AnimationTimer

Generates a ScalaFX AnimationTimer from its JavaFX counterparty.

Generates a ScalaFX AnimationTimer from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxArc2sfx(r: Arc): Arc

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Arc.html Arc]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Arc.html Arc]] instance to its ScalaFX counterpart.

Value parameters

r

JavaFX Arc

Attributes

Returns

ScalaFX Arc

Inherited from:
ShapeIncludes
implicit def jfxArcTo2sfx(a: ArcTo): ArcTo

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/ArcTo.html ArcTo]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/ArcTo.html ArcTo]] instance to its ScalaFX counterpart.

Value parameters

a

JavaFX ArcTo

Attributes

Returns

ScalaFX ArcTo

Inherited from:
ShapeIncludes
implicit def jfxArcType2sfx(e: ArcType): ArcType

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/ArcType.html ArcType]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/ArcType.html ArcType]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX ArcType

Attributes

Returns

ScalaFX ArcType

Inherited from:
ShapeIncludes
implicit def jfxAreaChart2sfx[X, Y](b: AreaChart[X, Y]): AreaChart[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/AreaChart.html AreaChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/AreaChart.html AreaChart]] instance to its ScalaFX counterpart.

Type parameters

X

X Axis Type

Y

Y Axis Type

Value parameters

b

JavaFX AreaChart

Attributes

Returns

ScalaFX AreaChart

Inherited from:
ChartIncludes
implicit def jfxAudioClip2sfx(ac: AudioClip): AudioClip

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/AudioClip.html AudioClip]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/AudioClip.html AudioClip]] instance to its ScalaFX counterpart.

Value parameters

ac

JavaFX AudioClip

Attributes

Returns

ScalaFX AudioClip

Inherited from:
MediaIncludes
implicit def jfxAudioEqualizer2sfx(ae: AudioEqualizer): AudioEqualizer

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/AudioEqualizer.html AudioEqualizer]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/AudioEqualizer.html AudioEqualizer]] instance to its ScalaFX counterpart.

Value parameters

ae

JavaFX AudioEqualizer

Attributes

Returns

ScalaFX AudioEqualizer

Inherited from:
MediaIncludes
implicit def jfxAudioTrack2sfx(at: AudioTrack): AudioTrack

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/AudioTrack.html AudioTrack]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/AudioTrack.html AudioTrack]] instance to its ScalaFX counterpart.

Value parameters

at

JavaFX AudioTrack

Attributes

Returns

ScalaFX AudioTrack

Inherited from:
MediaIncludes
implicit def jfxAxis2sfx[X](a: Axis[X]): Axis[X]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/Axis.html Axis]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/Axis.html Axis]] instance to its ScalaFX counterpart.

Type parameters

X

X Axis Type

Value parameters

a

JavaFX Axis

Attributes

Returns

ScalaFX Axis

Inherited from:
ChartIncludes
implicit def jfxAxisTickMark2sfx[T](b: TickMark[T]): TickMark[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/Axis.TickMark.html Axis.TickMark]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/Axis.TickMark.html Axis.TickMark]] instance to its ScalaFX counterpart.

Type parameters

T

Axis.TickMark Type.

Value parameters

b

JavaFX Axis.TickMark

Attributes

Returns

ScalaFX Axis.TickMark

Inherited from:
ChartIncludes
implicit def jfxBackground2sfx(v: Background): Background

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Background.html Background]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Background.html Background]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Background

Attributes

Returns

ScalaFX Background

Inherited from:
LayoutIncludes
implicit def jfxBackgroundFill2sfx(v: BackgroundFill): BackgroundFill

Attributes

Inherited from:
LayoutIncludes
implicit def jfxBackgroundImage2sfx(v: BackgroundImage): BackgroundImage

Attributes

Inherited from:
LayoutIncludes
implicit def jfxBackgroundPosition2sfx(v: BackgroundPosition): BackgroundPosition

Attributes

Inherited from:
LayoutIncludes
implicit def jfxBackgroundRepeat2sfx(v: BackgroundRepeat): BackgroundRepeat

Attributes

Inherited from:
LayoutIncludes
implicit def jfxBackgroundSize2sfx(v: BackgroundSize): BackgroundSize

Attributes

Inherited from:
LayoutIncludes
implicit def jfxBarChart2sfx[X, Y](b: BarChart[X, Y]): BarChart[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/BarChart.html BarChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/BarChart.html BarChart]] instance to its ScalaFX counterpart.

Type parameters

X

X Axis Type

Y

Y Axis Type

Value parameters

b

JavaFX BarChart

Attributes

Returns

ScalaFX BarChart

Inherited from:
ChartIncludes
implicit def jfxBigDecimalStringConverter2sfx(c: BigDecimalStringConverter): BigDecimalStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/BigDecimalStringConverter.html BigDecimalStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/BigDecimalStringConverter.html BigDecimalStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX BigDecimalStringConverter

Attributes

Returns

ScalaFX BigDecimalStringConverter

Inherited from:
ConverterIncludes
implicit def jfxBigIntegerStringConverter2sfx(c: BigIntegerStringConverter): BigIntStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/BigIntegerStringConverter.html BigIntegerStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/BigIntegerStringConverter.html BigIntegerStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX BigIntegerStringConverter

Attributes

Returns

ScalaFX BigIntegerStringConverter

Inherited from:
ConverterIncludes
implicit def jfxBlend2sfx(b: Blend): Blend

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Blend.html Blend]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Blend.html Blend]] instance to its ScalaFX counterpart.

Value parameters

b

JavaFX Blend

Attributes

Returns

ScalaFX Blend

Inherited from:
EffectIncludes
implicit def jfxBlendMode2sfx(e: BlendMode): BlendMode

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/BlendMode.html BlendMode]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/BlendMode.html BlendMode]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX BlendMode

Attributes

Returns

ScalaFX BlendMode

Inherited from:
EffectIncludes
implicit def jfxBloom2sfx(b: Bloom): Bloom

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Bloom.html Bloom]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Bloom.html Bloom]] instance to its ScalaFX counterpart.

Value parameters

b

JavaFX Bloom

Attributes

Returns

ScalaFX Bloom

Inherited from:
EffectIncludes
implicit def jfxBlurType2sfx(e: BlurType): BlurType

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/BlurType.html BlurType]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/BlurType.html BlurType]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX BlurType

Attributes

Returns

ScalaFX BlurType

Inherited from:
EffectIncludes
implicit def jfxBooleanBinding2sfx(bb: BooleanBinding): BooleanBinding

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/BooleanBinding.html BooleanBinding]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/BooleanBinding.html BooleanBinding]] instance to its ScalaFX counterpart.

Value parameters

bb

JavaFX BooleanBinding

Attributes

Returns

ScalaFX BooleanBinding

Inherited from:
BindingIncludes
implicit def jfxBooleanExpression2sfx(be: BooleanExpression): BooleanExpression

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/BooleanExpression.html BooleanExpression]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/BooleanExpression.html BooleanExpression]] instance to its ScalaFX counterpart.

Value parameters

be

JavaFX BooleanExpression

Attributes

Returns

ScalaFX BooleanExpression

Inherited from:
BindingIncludes
implicit def jfxBooleanProperty2sfx(p: BooleanProperty): BooleanProperty

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX BooleanProperty

Attributes

Returns

ScalaFX BooleanProperty

Inherited from:
PropertyIncludes
implicit def jfxBooleanStringConverter2sfx(c: BooleanStringConverter): BooleanStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/BooleanStringConverter.html BooleanStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/BooleanStringConverter.html BooleanStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX BooleanStringConverter

Attributes

Returns

ScalaFX BooleanStringConverter

Inherited from:
ConverterIncludes
implicit def jfxBorder2sfx(v: Border): Border

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Border.html Border]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Border.html Border]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Border

Attributes

Returns

ScalaFX Border

Inherited from:
LayoutIncludes
implicit def jfxBorderImage2sfx(v: BorderImage): BorderImage

Attributes

Inherited from:
LayoutIncludes
implicit def jfxBorderPane2sfx(v: BorderPane): BorderPane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/BorderPane.html BorderPane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/BorderPane.html BorderPane]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX BorderPane

Attributes

Returns

ScalaFX BorderPane

Inherited from:
LayoutIncludes
implicit def jfxBorderRepeat2sfx(v: BorderRepeat): BorderRepeat

Attributes

Inherited from:
LayoutIncludes
implicit def jfxBorderStroke2sfx(v: BorderStroke): BorderStroke

Attributes

Inherited from:
LayoutIncludes
implicit def jfxBorderStrokeStyle2sfx(v: BorderStrokeStyle): BorderStrokeStyle

Attributes

Inherited from:
LayoutIncludes
implicit def jfxBorderWidths2sfx(v: BorderWidths): BorderWidths

Attributes

Inherited from:
LayoutIncludes
implicit def jfxBoundingBox2sfx(b: BoundingBox): BoundingBox

Converts a `javafx.geometry.BoundingBox` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.BoundingBox` instance to its ScalaFX counterpart.

Value parameters

b

JavaFX BoundingBox

Attributes

Returns

ScalaFX BoundingBox

Inherited from:
GeometryIncludes
implicit def jfxBounds2sfx(b: Bounds): Bounds

Converts a `javafx.geometry.Bounds` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Bounds` instance to its ScalaFX counterpart.

Value parameters

b

JavaFX Bounds

Attributes

Returns

ScalaFX Bounds

Inherited from:
GeometryIncludes
implicit def jfxBox2sfx(b: Box): Box

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Box.html Box]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Box.html Box]] instance to its ScalaFX counterpart.

Value parameters

b

JavaFX Box

Attributes

Returns

ScalaFX Box

Inherited from:
ShapeIncludes
implicit def jfxBoxBlur2sfx(bb: BoxBlur): BoxBlur

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/BoxBlur.html BoxBlur]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/BoxBlur.html BoxBlur]] instance to its ScalaFX counterpart.

Value parameters

bb

JavaFX BoxBlur

Attributes

Returns

ScalaFX BoxBlur

Inherited from:
EffectIncludes
implicit def jfxBubbleChart2sfx[X, Y](b: BubbleChart[X, Y]): BubbleChart[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/BubbleChart.html BubbleChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/BubbleChart.html BubbleChart]] instance to its ScalaFX counterpart.

Type parameters

X

X Axis Type

Y

Y Axis Type

Value parameters

b

JavaFX BubbleChart

Attributes

Returns

ScalaFX BubbleChart

Inherited from:
ChartIncludes
implicit def jfxButton2sfx(b: Button): Button

Converts a JavaFX Button instance to its ScalaFX counterpart.

Converts a JavaFX Button instance to its ScalaFX counterpart.

Value parameters

b

JavaFX Button

Attributes

Returns

ScalaFX Button

Inherited from:
ControlIncludes
implicit def jfxButtonBar2sfx(b: ButtonBar): ButtonBar

Attributes

Inherited from:
ControlIncludes
implicit def jfxButtonBase2sfx(b: ButtonBase): ButtonBase

Converts a JavaFX ButtonBase instance to its ScalaFX counterpart.

Converts a JavaFX ButtonBase instance to its ScalaFX counterpart.

Value parameters

b

JavaFX ButtonBase

Attributes

Returns

ScalaFX ButtonBase

Inherited from:
ControlIncludes
implicit def jfxButtonData2sfx(b: ButtonData): ButtonData

Attributes

Inherited from:
ControlIncludes
implicit def jfxButtonType2sfx(b: ButtonType): ButtonType

Attributes

Inherited from:
ControlIncludes
implicit def jfxByteStringConverter2sfx(c: ByteStringConverter): ByteStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/ByteStringConverter.html ByteStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/ByteStringConverter.html ByteStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX ByteStringConverter

Attributes

Returns

ScalaFX ByteStringConverter

Inherited from:
ConverterIncludes
implicit def jfxCacheHint2sfx(e: CacheHint): CacheHint

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/CacheHint.html CacheHint]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/CacheHint.html CacheHint]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX CacheHint

Attributes

Returns

ScalaFX CacheHint

Inherited from:
LowerPriorityIncludes
implicit def jfxCallbackToFunction1[P, R](c: Callback[P, R]): P => R

Converts a JavaFX `Callback` to a Function1.

Converts a JavaFX `Callback` to a Function1.

Type parameters

P

Callback parameter type

R

Callback return type.

Value parameters

c

JavaFX Callback

Attributes

Returns

A function would call Callback.

Inherited from:
UtilIncludes
implicit def jfxCamera2sfx(v: Camera): Camera

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/Camera.html Camera]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/Camera.html Camera]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Camera

Attributes

Returns

ScalaFX Camera

Inherited from:
LowerPriorityIncludes
implicit def jfxCanvas2sfx(c: Canvas): Canvas

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/canvas/Canvas.html Canvas]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/canvas/Canvas.html Canvas]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX Canvas

Attributes

Returns

ScalaFX Canvas

Inherited from:
CanvasIncludes
implicit def jfxCategoryAxis2sfx(b: CategoryAxis): CategoryAxis

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/CategoryAxis.html CategoryAxis]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/CategoryAxis.html CategoryAxis]] instance to its ScalaFX counterpart.

Value parameters

b

JavaFX CategoryAxis

Attributes

Returns

ScalaFX CategoryAxis

Inherited from:
ChartIncludes
implicit def jfxCell2sfx[T](c: Cell[T]): Cell[T]

Converts a JavaFX Cell instance to its ScalaFX counterpart.

Converts a JavaFX Cell instance to its ScalaFX counterpart.

Type parameters

T

The type of the Cell

Value parameters

c

JavaFX Cell

Attributes

Returns

ScalaFX Cell

Inherited from:
ControlIncludes
implicit def jfxCellDataFeatures2sfx[S, T](cdf: CellDataFeatures[S, T]): CellDataFeatures[S, T]

Converts a JavaFX TableColumn.CellDataFeatures instance to its ScalaFX counterpart.

Converts a JavaFX TableColumn.CellDataFeatures instance to its ScalaFX counterpart.

Type parameters

T

The type of the TableColumn.CellDataFeatures

Value parameters

cdf

JavaFX TableColumn.CellDataFeatures

Attributes

Returns

ScalaFX TableColumn.CellDataFeatures

Inherited from:
ControlIncludes
implicit def jfxCellEditEvent2sfx[S, T](cee: CellEditEvent[S, T]): CellEditEvent[S, T]

Converts a JavaFX TableColumn.CellEditEvent instance to its ScalaFX counterpart.

Converts a JavaFX TableColumn.CellEditEvent instance to its ScalaFX counterpart.

Type parameters

T

The type of the TableColumn.CellEditEvent

Value parameters

cee

JavaFX TableColumn.CellEditEvent

Attributes

Returns

ScalaFX TableColumn.CellEditEvent

Inherited from:
ControlIncludes
implicit def jfxCharacterStringConverter2sfx(c: CharacterStringConverter): CharStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/CharacterStringConverter.html CharacterStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/CharacterStringConverter.html CharacterStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX CharacterStringConverter

Attributes

Returns

ScalaFX CharacterStringConverter

Inherited from:
ConverterIncludes
implicit def jfxChart2sfx(c: Chart): Chart

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/Chart.html Chart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/Chart.html Chart]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX Chart

Attributes

Returns

ScalaFX Chart

Inherited from:
ChartIncludes
implicit def jfxCheckBox2sfx(c: CheckBox): CheckBox

Converts a JavaFX CheckBox instance to its ScalaFX counterpart.

Converts a JavaFX CheckBox instance to its ScalaFX counterpart.

Value parameters

c

JavaFX CheckBox

Attributes

Returns

ScalaFX CheckBox

Inherited from:
ControlIncludes
implicit def jfxCheckBoxListCell2sfx[T](cell: CheckBoxListCell[T]): CheckBoxListCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/CheckBoxListCell.html CheckBoxListCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/CheckBoxListCell.html CheckBoxListCell]] instance to its ScalaFX counterpart.

Type parameters

T

The type of the elements contained within the Element

Value parameters

cell

JavaFX CheckBoxListCell

Attributes

Returns

ScalaFX CheckBoxListCell

Inherited from:
CellIncludes
implicit def jfxCheckBoxTableCell2sfx[S, T](cell: CheckBoxTableCell[S, T]): CheckBoxTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/CheckBoxTableCell.html CheckBoxTableCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/CheckBoxTableCell.html CheckBoxTableCell]] instance to its ScalaFX counterpart.

Type parameters

S

The type of the elements contained ...

T

The type of the elements contained within the Element

Value parameters

cell

JavaFX CheckBoxTableCell

Attributes

Returns

ScalaFX CheckBoxTableCell

Inherited from:
CellIncludes
implicit def jfxCheckBoxTreeCell2sfx[T](cell: CheckBoxTreeCell[T]): CheckBoxTreeCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/CheckBoxTreeCell.html CheckBoxTreeCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/CheckBoxTreeCell.html CheckBoxTreeCell]] instance to its ScalaFX counterpart.

Type parameters

T

The type of the elements contained within the Element

Value parameters

cell

JavaFX CheckBoxTreeCell

Attributes

Returns

ScalaFX CheckBoxTreeCell

Inherited from:
CellIncludes
implicit def jfxCheckBoxTreeTableCell2sfx[S, T](cell: CheckBoxTreeTableCell[S, T]): CheckBoxTreeTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/CheckBoxTreeTableCell.html CheckBoxTreeTableCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/CheckBoxTreeTableCell.html CheckBoxTreeTableCell]] instance to its ScalaFX counterpart.

Type parameters

S

The type of the elements contained ...

T

The type of the elements contained within the Element

Value parameters

cell

JavaFX CheckBoxTreeTableCell

Attributes

Returns

ScalaFX CheckBoxTreeTableCell

Inherited from:
CellIncludes
implicit def jfxCheckMenuItem2sfx(c: CheckMenuItem): CheckMenuItem

Converts a JavaFX MenuItem instance to its ScalaFX counterpart.

Converts a JavaFX MenuItem instance to its ScalaFX counterpart.

Value parameters

c

JavaFX CheckMenuItem

Attributes

Returns

ScalaFX CheckMenuItem

Inherited from:
ControlIncludes
implicit def jfxChoiceBox2sfx[J <: AnyRef](cb: ChoiceBox[J]): ChoiceBox[J]

Converts a JavaFX ChoiceBox instance to its ScalaFX counterpart.

Converts a JavaFX ChoiceBox instance to its ScalaFX counterpart.

Type parameters

J

The type of the ChoiceBox

Value parameters

cb

JavaFX ChoiceBox

Attributes

Returns

ScalaFX ChoiceBox

Inherited from:
ControlIncludes
implicit def jfxChoiceBoxListCell2sfx[T](cell: ChoiceBoxListCell[T]): ChoiceBoxListCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ChoiceBoxListCell.html ChoiceBoxListCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ChoiceBoxListCell.html ChoiceBoxListCell]] instance to its ScalaFX counterpart.

Type parameters

T

The type of the elements contained within the Element

Value parameters

cell

JavaFX ChoiceBoxListCell

Attributes

Returns

ScalaFX ChoiceBoxListCell

Inherited from:
CellIncludes
implicit def jfxChoiceBoxTableCell2sfx[S, T](cell: ChoiceBoxTableCell[S, T]): ChoiceBoxTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ChoiceBoxTableCell.html ChoiceBoxTableCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ChoiceBoxTableCell.html ChoiceBoxTableCell]] instance to its ScalaFX counterpart.

Type parameters

S

The type of the elements contained ...

T

The type of the elements contained within the Element

Value parameters

cell

JavaFX ChoiceBoxTableCell

Attributes

Returns

ScalaFX ChoiceBoxTableCell

Inherited from:
CellIncludes
implicit def jfxChoiceBoxTreeCell2sfx[T](cell: ChoiceBoxTreeCell[T]): ChoiceBoxTreeCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ChoiceBoxTreeCell.html ChoiceBoxTreeCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ChoiceBoxTreeCell.html ChoiceBoxTreeCell]] instance to its ScalaFX counterpart.

Type parameters

T

The type of the elements contained within the Element

Value parameters

cell

JavaFX ChoiceBoxTreeCell

Attributes

Returns

ScalaFX ChoiceBoxTreeCell

Inherited from:
CellIncludes
implicit def jfxChoiceBoxTreeTableCell2sfx[S, T](cell: ChoiceBoxTreeTableCell[S, T]): ChoiceBoxTreeTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ChoiceBoxTreeTreeCell.html ChoiceBoxTreeTreeCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ChoiceBoxTreeTreeCell.html ChoiceBoxTreeTreeCell]] instance to its ScalaFX counterpart.

Type parameters

T

The type of the elements contained within the Element

Value parameters

cell

JavaFX ChoiceBoxTreeTreeCell

Attributes

Returns

ScalaFX ChoiceBoxTreeTreeCell

Inherited from:
CellIncludes
implicit def jfxChoiceDialog2sfx[T](c: ChoiceDialog[T]): ChoiceDialog[T]

Attributes

Inherited from:
ControlIncludes
implicit def jfxCircle2sfx(r: Circle): Circle

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Circle.html Circle]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Circle.html Circle]] instance to its ScalaFX counterpart.

Value parameters

r

JavaFX Circle

Attributes

Returns

ScalaFX Circle

Inherited from:
ShapeIncludes
implicit def jfxClipboard2sfx(c: Clipboard): Clipboard

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/Clipboard.html Clipboard]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/Clipboard.html Clipboard]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX Clipboard

Attributes

Returns

ScalaFX Clipboard

Inherited from:
InputIncludes
implicit def jfxClipboardContent2sfx(c: ClipboardContent): ClipboardContent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ClipboardContent.html ClipboardContent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ClipboardContent.html ClipboardContent]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX ClipboardContent

Attributes

Returns

ScalaFX ClipboardContent

Inherited from:
InputIncludes
implicit def jfxClosePath2sfx(c: ClosePath): ClosePath

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/ClosePath.html ClosePath]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/ClosePath.html ClosePath]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX ClosePath

Attributes

Returns

ScalaFX ClosePath

Inherited from:
ShapeIncludes
implicit def jfxCollation2sfx(c: Collation): Collation

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/Collation$.html Collation]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/Collation$.html Collation]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX Collation

Attributes

Returns

ScalaFX Collation

Inherited from:
PrintIncludes
implicit def jfxColor2sfx(c: Color): Color

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/Color.html Color]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/Color.html Color]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX Color

Attributes

Returns

ScalaFX Color

Inherited from:
PaintIncludes
implicit def jfxColorAdjust2sfx(ca: ColorAdjust): ColorAdjust

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/ColorAdjust.html ColorAdjust]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/ColorAdjust.html ColorAdjust]] instance to its ScalaFX counterpart.

Value parameters

ca

JavaFX ColorAdjust

Attributes

Returns

ScalaFX ColorAdjust

Inherited from:
EffectIncludes
implicit def jfxColorInput2sfx(ci: ColorInput): ColorInput

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/ColorInput.html ColorInput]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/ColorInput.html ColorInput]] instance to its ScalaFX counterpart.

Value parameters

ci

JavaFX ColorInput

Attributes

Returns

ScalaFX ColorInput

Inherited from:
EffectIncludes
implicit def jfxColorPicker2sfx(cp: ColorPicker): ColorPicker

Converts a JavaFX ColorPicker instance to its ScalaFX counterpart.

Converts a JavaFX ColorPicker instance to its ScalaFX counterpart.

Value parameters

cp

JavaFX ColorPicker

Attributes

Returns

ScalaFX ColorPicker

Inherited from:
ControlIncludes
implicit def jfxColumnConstraints2sfx(v: ColumnConstraints): ColumnConstraints

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/ColumnConstraints.html ColumnConstraints]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/ColumnConstraints.html ColumnConstraints]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX ColumnConstraints

Attributes

Returns

ScalaFX ColumnConstraints

Inherited from:
LayoutIncludes
implicit def jfxComboBox2sfx[T](v: ComboBox[T]): ComboBox[T]

Converts a JavaFX ComboBox instance to its ScalaFX counterpart.

Converts a JavaFX ComboBox instance to its ScalaFX counterpart.

Type parameters

T

The type of the ComboBox

Value parameters

v

JavaFX ComboBox

Attributes

Returns

ScalaFX ComboBox

Inherited from:
ControlIncludes
implicit def jfxComboBoxBase2sfx[T](v: ComboBoxBase[T]): ComboBoxBase[T]

Converts a JavaFX ComboBoxBase instance to its ScalaFX counterpart.

Converts a JavaFX ComboBoxBase instance to its ScalaFX counterpart.

Type parameters

T

The type of the ComboBoxBase

Value parameters

v

JavaFX ComboBoxBase

Attributes

Returns

ScalaFX ComboBoxBase

Inherited from:
ControlIncludes
implicit def jfxComboBoxListCell2sfx[T](cell: ComboBoxListCell[T]): ComboBoxListCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ComboBoxListCell.html ComboBoxListCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ComboBoxListCell.html ComboBoxListCell]] instance to its ScalaFX counterpart.

Type parameters

T

The type of the elements contained within the Element

Value parameters

cell

JavaFX ComboBoxListCell

Attributes

Returns

ScalaFX ComboBoxListCell

Inherited from:
CellIncludes
implicit def jfxComboBoxTableCell2sfx[S, T](cell: ComboBoxTableCell[S, T]): ComboBoxTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ComboBoxTableCell.html ComboBoxTableCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ComboBoxTableCell.html ComboBoxTableCell]] instance to its ScalaFX counterpart.

Type parameters

S

The type of the elements contained ...

T

The type of the elements contained within the Element

Value parameters

cell

JavaFX ComboBoxTableCell

Attributes

Returns

ScalaFX ComboBoxTableCell

Inherited from:
CellIncludes
implicit def jfxComboBoxTreeCell2sfx[T](cell: ComboBoxTreeCell[T]): ComboBoxTreeCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ComboBoxTreeCell.html ComboBoxTreeCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ComboBoxTreeCell.html ComboBoxTreeCell]] instance to its ScalaFX counterpart.

Type parameters

T

The type of the elements contained within the Element

Value parameters

cell

JavaFX ComboBoxTreeCell

Attributes

Returns

ScalaFX ComboBoxTreeCell

Inherited from:
CellIncludes
implicit def jfxComboBoxTreeTableCell2sfx[S, T](cell: ComboBoxTreeTableCell[S, T]): ComboBoxTreeTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ComboBoxTreeCell.html ComboBoxTreeCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ComboBoxTreeCell.html ComboBoxTreeCell]] instance to its ScalaFX counterpart.

Type parameters

T

The type of the elements contained within the Element

Value parameters

cell

JavaFX ComboBoxTreeCell

Attributes

Returns

ScalaFX ComboBoxTreeCell

Inherited from:
CellIncludes
implicit def jfxConditionalFeature2sfx(e: ConditionalFeature): ConditionalFeature

Converts a `javafx.application.ConditionalFeature` instance to its ScalaFX counterpart.

Converts a `javafx.application.ConditionalFeature` instance to its ScalaFX counterpart.

Value parameters

e

JavaFX ConditionalFeature

Attributes

Returns

ScalaFX ConditionalFeature

Inherited from:
ApplicationIncludes
implicit def jfxConstraintsBase2sfx(v: ConstraintsBase): ConstraintsBase

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/ConstraintsBase.html ConstraintsBase]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/ConstraintsBase.html ConstraintsBase]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX ConstraintsBase

Attributes

Returns

ScalaFX ConstraintsBase

Inherited from:
LayoutIncludes
implicit def jfxContentDisplay2sfx(e: ContentDisplay): ContentDisplay

Converts a JavaFX ContentDisplay instance to its ScalaFX counterpart.

Converts a JavaFX ContentDisplay instance to its ScalaFX counterpart.

Value parameters

e

JavaFX ContentDisplay

Attributes

Returns

ScalaFX ContentDisplay

Inherited from:
ControlIncludes
implicit def jfxContextMenu2sfx(c: ContextMenu): ContextMenu

Converts a JavaFX ContextMenu instance to its ScalaFX counterpart.

Converts a JavaFX ContextMenu instance to its ScalaFX counterpart.

Value parameters

c

JavaFX ContextMenu

Attributes

Returns

ScalaFX ContextMenu

Inherited from:
ControlIncludes
implicit def jfxContextMenuEvent2sfx(c: ContextMenuEvent): ContextMenuEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ContextMenuEvent.html ContextMenuEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ContextMenuEvent.html ContextMenuEvent]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX ContextMenuEvent

Attributes

Returns

ScalaFX ContextMenuEvent

Inherited from:
InputIncludes
implicit def jfxControl2sfx(c: Control): Control

Converts a JavaFX Control instance to its ScalaFX counterpart.

Converts a JavaFX Control instance to its ScalaFX counterpart.

Value parameters

c

JavaFX Control

Attributes

Returns

ScalaFX Control

Inherited from:
ControlIncludes
implicit def jfxCornerRadii2sfx(v: CornerRadii): CornerRadii

Attributes

Inherited from:
LayoutIncludes
implicit def jfxCubicCurve2sfx(c: CubicCurve): CubicCurve

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/CubicCurve.html CubicCurve]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/CubicCurve.html CubicCurve]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX CubicCurve

Attributes

Returns

ScalaFX CubicCurve

Inherited from:
ShapeIncludes
implicit def jfxCubicCurveTo2sfx(c: CubicCurveTo): CubicCurveTo

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/CubicCurveTo.html CubicCurveTo]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/CubicCurveTo.html CubicCurveTo]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX CubicCurveTo

Attributes

Returns

ScalaFX CubicCurveTo

Inherited from:
ShapeIncludes
implicit def jfxCullFace2sfx(cf: CullFace): CullFace

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/CullFace.html CullFace]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/CullFace.html CullFace]] instance to its ScalaFX counterpart.

Value parameters

cf

JavaFX CullFace

Attributes

Returns

ScalaFX CullFace

Inherited from:
ShapeIncludes
implicit def jfxCurrencyStringConverter2sfx(c: CurrencyStringConverter): CurrencyStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/CurrencyStringConverter.html CurrencyStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/CurrencyStringConverter.html CurrencyStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX CurrencyStringConverter

Attributes

Returns

ScalaFX CurrencyStringConverter

Inherited from:
ConverterIncludes
implicit def jfxCursor2sfx(v: Cursor): Cursor

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/Cursor.html Cursor]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/Cursor.html Cursor]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Cursor

Attributes

Returns

ScalaFX Cursor

Inherited from:
LowerPriorityIncludes
implicit def jfxCustomMenuItem2sfx(c: CustomMenuItem): CustomMenuItem

Converts a JavaFX CustomMenuItem instance to its ScalaFX counterpart.

Converts a JavaFX CustomMenuItem instance to its ScalaFX counterpart.

Value parameters

c

JavaFX CustomMenuItem

Attributes

Returns

ScalaFX CustomMenuItem

Inherited from:
ControlIncludes
implicit def jfxCycleMethod2sfx(e: CycleMethod): CycleMethod

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/CycleMethod.html CycleMethod]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/CycleMethod.html CycleMethod]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX CycleMethod

Attributes

Returns

ScalaFX CycleMethod

Inherited from:
PaintIncludes
implicit def jfxCylinder2sfx(c: Cylinder): Cylinder

Attributes

Inherited from:
ShapeIncludes
implicit def jfxDataFormat2sfx(df: DataFormat): DataFormat

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/DataFormat.html DataFormat]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/DataFormat.html DataFormat]] instance to its ScalaFX counterpart.

Value parameters

df

JavaFX DataFormat

Attributes

Returns

ScalaFX DataFormat

Inherited from:
InputIncludes
implicit def jfxDateCell2sfx(v: DateCell): DateCell

Converts a JavaFX DateCell instance to its ScalaFX counterpart.

Converts a JavaFX DateCell instance to its ScalaFX counterpart.

Value parameters

v

JavaFX DateCell

Attributes

Returns

ScalaFX DateCell

Inherited from:
ControlIncludes
implicit def jfxDatePicker2sfx(v: DatePicker): DatePicker

Converts a JavaFX DatePicker instance to its ScalaFX counterpart.

Converts a JavaFX DatePicker instance to its ScalaFX counterpart.

Value parameters

v

JavaFX DatePicker

Attributes

Returns

ScalaFX DatePicker

Inherited from:
ControlIncludes
implicit def jfxDateStringConverter2sfx(c: DateStringConverter): DateStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/DateStringConverter.html DateStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/DateStringConverter.html DateStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX DateStringConverter

Attributes

Returns

ScalaFX DateStringConverter

Inherited from:
ConverterIncludes
implicit def jfxDateTimeStringConverter2sfx(c: DateTimeStringConverter): DateTimeStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/DateTimeStringConverter.html DateTimeStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/DateTimeStringConverter.html DateTimeStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX DateTimeStringConverter

Attributes

Returns

ScalaFX DateTimeStringConverter

Inherited from:
ConverterIncludes
implicit def jfxDefaultStringConverter2sfx(c: DefaultStringConverter): DefaultStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/DefaultStringConverter.html DefaultStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/DefaultStringConverter.html DefaultStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX DefaultStringConverter

Attributes

Returns

ScalaFX DefaultStringConverter

Inherited from:
ConverterIncludes
implicit def jfxDepthTest2sfx(e: DepthTest): DepthTest

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/DepthTest.html DepthTest]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/DepthTest.html DepthTest]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX DepthTest

Attributes

Returns

ScalaFX DepthTest

Inherited from:
LowerPriorityIncludes
implicit def jfxDialog2sfx[R](a: Dialog[R]): Dialog[R]

Attributes

Inherited from:
ControlIncludes
implicit def jfxDialogEvent2sfx(a: DialogEvent): DialogEvent

Attributes

Inherited from:
ControlIncludes
implicit def jfxDialogPane2sfx(a: DialogPane): DialogPane

Attributes

Inherited from:
ControlIncludes
implicit def jfxDimension2D2sfx(d: Dimension2D): Dimension2D

Converts a `javafx.geometry.Dimension2D` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Dimension2D` instance to its ScalaFX counterpart.

Value parameters

d

JavaFX Dimension2D

Attributes

Returns

ScalaFX Dimension2D

Inherited from:
GeometryIncludes
implicit def jfxDirectoryChooser2sfx(dc: DirectoryChooser): DirectoryChooser

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/DirectoryChooser.html DirectoryChooser]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/DirectoryChooser.html DirectoryChooser]] instance to its ScalaFX counterpart.

Value parameters

dc

JavaFX DirectoryChooser

Attributes

Returns

ScalaFX DirectoryChooser

Inherited from:
StageIncludes
implicit def jfxDisplacementMap2sfx(dm: DisplacementMap): DisplacementMap

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/DisplacementMap.html DisplacementMap]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/DisplacementMap.html DisplacementMap]] instance to its ScalaFX counterpart.

Value parameters

dm

JavaFX DisplacementMap

Attributes

Returns

ScalaFX DisplacementMap

Inherited from:
EffectIncludes
implicit def jfxDoubleProperty2sfx(p: DoubleProperty): DoubleProperty

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX BooleanProperty

Attributes

Returns

ScalaFX BooleanProperty

Inherited from:
PropertyIncludes
implicit def jfxDoubleSpinnerValueFactory2sfx(ev: DoubleSpinnerValueFactory): DoubleSpinnerValueFactory

Attributes

Inherited from:
ControlIncludes
implicit def jfxDoubleStringConverter2sfx(c: DoubleStringConverter): DoubleStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/DoubleStringConverter.html DoubleStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/DoubleStringConverter.html DoubleStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX DoubleStringConverter

Attributes

Returns

ScalaFX DoubleStringConverter

Inherited from:
ConverterIncludes
implicit def jfxDragEvent2sfx(de: DragEvent): DragEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/DragEvent.html DragEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/DragEvent.html DragEvent]] instance to its ScalaFX counterpart.

Value parameters

de

JavaFX DragEvent

Attributes

Returns

ScalaFX DragEvent

Inherited from:
InputIncludes
implicit def jfxDragboard2sfx(d: Dragboard): Dragboard

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/Dragboard.html Dragboard]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/Dragboard.html Dragboard]] instance to its ScalaFX counterpart.

Value parameters

d

JavaFX Dragboard

Attributes

Returns

ScalaFX Dragboard

Inherited from:
InputIncludes
implicit def jfxDrawMode2sfx(e: DrawMode): DrawMode

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/DrawMode.html DrawMode]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/DrawMode.html DrawMode]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX DrawMode

Attributes

Returns

ScalaFX DrawMode

Inherited from:
ShapeIncludes
implicit def jfxDropShadow2sfx(ds: DropShadow): DropShadow

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/DropShadow.html DropShadow]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/DropShadow.html DropShadow]] instance to its ScalaFX counterpart.

Value parameters

ds

JavaFX DropShadow

Attributes

Returns

ScalaFX DropShadow

Inherited from:
EffectIncludes
implicit def jfxDuration2sfx(d: Duration): Duration

Converts a `javafx.util.Duration` instance to its ScalaFX counterpart.

Converts a `javafx.util.Duration` instance to its ScalaFX counterpart.

Value parameters

d

JavaFX Duration

Attributes

Returns

ScalaFX Duration

Inherited from:
UtilIncludes
implicit def jfxEffect2sfx(e: Effect): Effect

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Effect.html Effect]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Effect.html Effect]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX Effect

Attributes

Returns

ScalaFX Effect

Inherited from:
EffectIncludes
implicit def jfxEllipse2sfx(r: Ellipse): Ellipse

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Ellipse.html Ellipse]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Ellipse.html Ellipse]] instance to its ScalaFX counterpart.

Value parameters

r

JavaFX Ellipse

Attributes

Returns

ScalaFX Ellipse

Inherited from:
ShapeIncludes
implicit def jfxEqualizerBand2sfx(eb: EqualizerBand): EqualizerBand

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/EqualizerBand.html EqualizerBand]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/EqualizerBand.html EqualizerBand]] instance to its ScalaFX counterpart.

Value parameters

eb

JavaFX EqualizerBand

Attributes

Returns

ScalaFX EqualizerBand

Inherited from:
MediaIncludes
implicit def jfxEvent2sfx(e: Event): Event

Converts a `javafx.event.Event` instance to its ScalaFX counterpart.

Converts a `javafx.event.Event` instance to its ScalaFX counterpart.

Value parameters

e

JavaFX Event

Attributes

Returns

ScalaFX Event

Inherited from:
EventIncludes
implicit def jfxEventDispatchChain2sfx(e: EventDispatchChain): EventDispatchChain

Attributes

Inherited from:
EventIncludes
implicit def jfxEventDispatcher2sfx(e: EventDispatcher): EventDispatcher

Attributes

Inherited from:
EventIncludes
implicit def jfxEventTarget2sfx(e: EventTarget): EventTarget

Attributes

Inherited from:
EventIncludes
implicit def jfxEventType2sfx[T <: Event](e: EventType[T]): EventType[T]

Converts a `javafx.event.EventType` instance to its ScalaFX counterpart.

Converts a `javafx.event.EventType` instance to its ScalaFX counterpart.

Type parameters

T

Event Type

Value parameters

e

JavaFX EventType

Attributes

Returns

ScalaFX EventType

Inherited from:
EventIncludes
implicit def jfxFadeTransition2sfx(v: FadeTransition): FadeTransition

Generates a ScalaFX FadeTransition from its JavaFX counterparty.

Generates a ScalaFX FadeTransition from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxFileChooser2sfx(fc: FileChooser): FileChooser

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/FileChooser.html FileChooser]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/FileChooser.html FileChooser]] instance to its ScalaFX counterpart.

Value parameters

fc

JavaFX FileChooser

Attributes

Returns

ScalaFX FileChooser

Inherited from:
StageIncludes
implicit def jfxFileChooserExtensionFilter2sfx(ef: ExtensionFilter): ExtensionFilter

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/FileChooser.ExtensionFilter.html FileChooser.ExtensionFilter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/FileChooser.ExtensionFilter.html FileChooser.ExtensionFilter]] instance to its ScalaFX counterpart.

Value parameters

ef

JavaFX FileChooser.ExtensionFilter

Attributes

Returns

ScalaFX FileChooser.ExtensionFilter

Inherited from:
StageIncludes
implicit def jfxFillRule2sfx(e: FillRule): FillRule

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/FillRule.html FillRule]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/FillRule.html FillRule]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX FillRule

Attributes

Returns

ScalaFX FillRule

Inherited from:
ShapeIncludes
implicit def jfxFillTransition2sfx(v: FillTransition): FillTransition

Generates a ScalaFX FillTransition from its JavaFX counterparty.

Generates a ScalaFX FillTransition from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxFloatMap2sfx(fm: FloatMap): FloatMap

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/FloatMap.html FloatMap]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/FloatMap.html FloatMap]] instance to its ScalaFX counterpart.

Value parameters

fm

JavaFX FloatMap

Attributes

Returns

ScalaFX FloatMap

Inherited from:
EffectIncludes
implicit def jfxFloatProperty2sfx(p: FloatProperty): FloatProperty

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX BooleanProperty

Attributes

Returns

ScalaFX BooleanProperty

Inherited from:
PropertyIncludes
implicit def jfxFloatStringConverter2sfx(c: FloatStringConverter): FloatStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/FloatStringConverter.html FloatStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/FloatStringConverter.html FloatStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX FloatStringConverter

Attributes

Returns

ScalaFX FloatStringConverter

Inherited from:
ConverterIncludes
implicit def jfxFlowPane2sfx(v: FlowPane): FlowPane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/FlowPane.html FlowPane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/FlowPane.html FlowPane]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX FlowPane

Attributes

Returns

ScalaFX FlowPane

Inherited from:
LayoutIncludes
implicit def jfxFocusModel2sfx[T](v: FocusModel[T]): FocusModel[T]

Converts a JavaFX FocusModel instance to its ScalaFX counterpart.

Converts a JavaFX FocusModel instance to its ScalaFX counterpart.

Type parameters

T

The type of the FocusModel

Value parameters

v

JavaFX FocusModel

Attributes

Returns

ScalaFX FocusModel

Inherited from:
ControlIncludes
implicit def jfxFont2sfxFont(f: Font): Font

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/Font.html Font]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/Font.html Font]] instance to its ScalaFX counterpart.

Value parameters

f

JavaFX Font

Attributes

Returns

ScalaFX Font

Inherited from:
TextIncludes
implicit def jfxFontPosture2sfx(e: FontPosture): FontPosture

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/FontPosture.html FontPosture]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/FontPosture.html FontPosture]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX FontPosture

Attributes

Returns

ScalaFX FontPosture

Inherited from:
TextIncludes
implicit def jfxFontSmoothingType2sfx(e: FontSmoothingType): FontSmoothingType

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/FontSmoothingType.html FontSmoothingType]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/FontSmoothingType.html FontSmoothingType]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX FontSmoothingType

Attributes

Returns

ScalaFX FontSmoothingType

Inherited from:
TextIncludes
implicit def jfxFontWeight2sfx(e: FontWeight): FontWeight

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/FontWeight.html FontWeight]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/FontWeight.html FontWeight]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX FontWeight

Attributes

Returns

ScalaFX FontWeight

Inherited from:
TextIncludes
implicit def jfxFormatStringConverter2sfx[T <: AnyRef](c: FormatStringConverter[T]): FormatStringConverter[T]

Attributes

Inherited from:
ConverterIncludes
implicit def jfxGaussianBlur2sfx(gb: GaussianBlur): GaussianBlur

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/GaussianBlur.html GaussianBlur]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/GaussianBlur.html GaussianBlur]] instance to its ScalaFX counterpart.

Value parameters

gb

JavaFX GaussianBlur

Attributes

Returns

ScalaFX GaussianBlur

Inherited from:
EffectIncludes
implicit def jfxGestureEvent2sfx(ge: GestureEvent): GestureEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/GestureEvent.html GestureEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/GestureEvent.html GestureEvent]] instance to its ScalaFX counterpart.

Value parameters

ge

JavaFX GestureEvent

Attributes

Returns

ScalaFX GestureEvent

Inherited from:
InputIncludes
implicit def jfxGlow2sfx(g: Glow): Glow

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Glow.html Glow]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Glow.html Glow]] instance to its ScalaFX counterpart.

Value parameters

g

JavaFX Glow

Attributes

Returns

ScalaFX Glow

Inherited from:
EffectIncludes
implicit def jfxGraphicsContext2sfx(gc: GraphicsContext): GraphicsContext

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/canvas/GraphicsContext.html GraphicsContext]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/canvas/GraphicsContext.html GraphicsContext]] instance to its ScalaFX counterpart.

Value parameters

gc

JavaFX GraphicsContext

Attributes

Returns

ScalaFX GraphicsContext

Inherited from:
CanvasIncludes
implicit def jfxGridPane2sfx(v: GridPane): GridPane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/GridPane.html GridPane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/GridPane.html GridPane]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX GridPane

Attributes

Returns

ScalaFX GridPane

Inherited from:
LayoutIncludes
implicit def jfxGroup2sfx(v: Group): Group

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/Group.html Group]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/Group.html Group]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Group

Attributes

Returns

ScalaFX Group

Inherited from:
LowerPriorityIncludes
implicit def jfxHBox2sfx(v: HBox): HBox

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/HBox.html HBox]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/HBox.html HBox]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX HBox

Attributes

Returns

ScalaFX HBox

Inherited from:
LayoutIncludes
implicit def jfxHLineTo2sfx(h: HLineTo): HLineTo

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/HLineTo.html HLineTo]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/HLineTo.html HLineTo]] instance to its ScalaFX counterpart.

Value parameters

h

JavaFX HLineTo

Attributes

Returns

ScalaFX HLineTo

Inherited from:
ShapeIncludes
implicit def jfxHPos2sfx(h: HPos): HPos

Converts a `javafx.geometry.HPos` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.HPos` instance to its ScalaFX counterpart.

Value parameters

h

JavaFX HPos

Attributes

Returns

ScalaFX HPos

Inherited from:
GeometryIncludes
implicit def jfxHTMLEditor2sfx(he: HTMLEditor): HTMLEditor

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/HTMLEditor.html HTMLEditor]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/HTMLEditor.html HTMLEditor]] instance to its ScalaFX counterpart.

Value parameters

he

JavaFX HTMLEditor

Attributes

Returns

ScalaFX HTMLEditor

Inherited from:
WebIncludes
implicit def jfxHorizontalDirection2sfx(h: HorizontalDirection): HorizontalDirection

Converts a `javafx.geometry.HorizontalDirection` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.HorizontalDirection` instance to its ScalaFX counterpart.

Value parameters

h

JavaFX HorizontalDirection

Attributes

Returns

ScalaFX HorizontalDirection

Inherited from:
GeometryIncludes
implicit def jfxHostServices2sfx(e: HostServices): HostServices

Attributes

Inherited from:
ApplicationIncludes
implicit def jfxHyperlink2sfx(h: Hyperlink): Hyperlink

Converts a JavaFX Hyperlink instance to its ScalaFX counterpart.

Converts a JavaFX Hyperlink instance to its ScalaFX counterpart.

Value parameters

h

JavaFX Hyperlink

Attributes

Returns

ScalaFX Hyperlink

Inherited from:
ControlIncludes
implicit def jfxImage2sfx(i: Image): Image

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/Image.html Image]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/Image.html Image]] instance to its ScalaFX counterpart.

Value parameters

i

JavaFX Image

Attributes

Returns

ScalaFX Image

Inherited from:
ImageIncludes
implicit def jfxImageCursor2sfx(ic: ImageCursor): ImageCursor

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/ImageCursor.html ImageCursor]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/ImageCursor.html ImageCursor]] instance to its ScalaFX counterpart.

Value parameters

ic

JavaFX ImageCursor

Attributes

Returns

ScalaFX ImageCursor

Inherited from:
LowerPriorityIncludes
implicit def jfxImageInput2sfx(ii: ImageInput): ImageInput

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/ImageInput.html ImageInput]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/ImageInput.html ImageInput]] instance to its ScalaFX counterpart.

Value parameters

ii

JavaFX ImageInput

Attributes

Returns

ScalaFX ImageInput

Inherited from:
EffectIncludes
implicit def jfxImageView2sfx(iv: ImageView): ImageView

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/ImageView.html ImageView]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/ImageView.html ImageView]] instance to its ScalaFX counterpart.

Value parameters

iv

JavaFX ImageView

Attributes

Returns

ScalaFX ImageView

Inherited from:
ImageIncludes
implicit def jfxIndexRange2sfx(r: IndexRange): IndexRange

Converts a JavaFX IndexRange instance to its ScalaFX counterpart.

Converts a JavaFX IndexRange instance to its ScalaFX counterpart.

Value parameters

r

JavaFX IndexRange

Attributes

Returns

ScalaFX IndexRange

Inherited from:
ControlIncludes
implicit def jfxIndexedCell2sfx[T](c: IndexedCell[T]): IndexedCell[T]

Converts a JavaFX IndexedCell instance to its ScalaFX counterpart.

Converts a JavaFX IndexedCell instance to its ScalaFX counterpart.

Type parameters

T

The type of the IndexedCell

Value parameters

c

JavaFX IndexedCell

Attributes

Returns

ScalaFX IndexedCell

Inherited from:
ControlIncludes
implicit def jfxInnerShadow2sfx(ii: InnerShadow): InnerShadow

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/InnerShadow.html InnerShadow]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/InnerShadow.html InnerShadow]] instance to its ScalaFX counterpart.

Value parameters

ii

JavaFX InnerShadow

Attributes

Returns

ScalaFX InnerShadow

Inherited from:
EffectIncludes
implicit def jfxInputEvent2sfx(ie: InputEvent): InputEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/InputEvent.html InputEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/InputEvent.html InputEvent]] instance to its ScalaFX counterpart.

Value parameters

ie

JavaFX InputEvent

Attributes

Returns

ScalaFX InputEvent

Inherited from:
InputIncludes
implicit def jfxInputMethodEvent2sfx(ime: InputMethodEvent): InputMethodEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/InputMethodEvent.html InputMethodEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/InputMethodEvent.html InputMethodEvent]] instance to its ScalaFX counterpart.

Value parameters

ime

JavaFX InputMethodEvent

Attributes

Returns

ScalaFX InputMethodEvent

Inherited from:
InputIncludes
implicit def jfxInputMethodHighlight2sfx(e: InputMethodHighlight): InputMethodHighlight

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/InputMethodHighlight.html InputMethodHighlight]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/InputMethodHighlight.html InputMethodHighlight]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX InputMethodHighlight

Attributes

Returns

ScalaFX InputMethodHighlight

Inherited from:
InputIncludes
implicit def jfxInputMethodTextRun2sfx(imtr: InputMethodTextRun): InputMethodTextRun

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/InputMethodTextRun.html InputMethodTextRun]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/InputMethodTextRun.html InputMethodTextRun]] instance to its ScalaFX counterpart.

Value parameters

imtr

JavaFX InputMethodTextRun

Attributes

Returns

ScalaFX InputMethodTextRun

Inherited from:
InputIncludes
implicit def jfxInsets2sfx(i: Insets): Insets

Converts a `javafx.geometry.Insets` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Insets` instance to its ScalaFX counterpart.

Value parameters

i

JavaFX Insets

Attributes

Returns

ScalaFX Insets

Inherited from:
GeometryIncludes
implicit def jfxIntegerProperty2sfx(p: IntegerProperty): IntegerProperty

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.BooleanProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX BooleanProperty

Attributes

Returns

ScalaFX BooleanProperty

Inherited from:
PropertyIncludes
implicit def jfxIntegerSpinnerValueFactory2sfx(ev: IntegerSpinnerValueFactory): IntegerSpinnerValueFactory

Attributes

Inherited from:
ControlIncludes
implicit def jfxIntegerStringConverter2sfx(c: IntegerStringConverter): IntStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/IntegerStringConverter.html IntegerStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/IntegerStringConverter.html IntegerStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX IntegerStringConverter

Attributes

Returns

ScalaFX IntegerStringConverter

Inherited from:
ConverterIncludes
implicit def jfxInterpolatable2sfxFunction2[T](i: Interpolatable[T]): (T, Double) => T

Type parameters

T

type of function

Value parameters

i

`Interpolatable` instance

Attributes

Returns

A scala.Function2 that receives a instance of T and a Double (between 0.0 and 1.0) and returns a T Instance according interpolate method

Inherited from:
AnimationIncludes
implicit def jfxJobSettings2sfx(js: JobSettings): JobSettings

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrinterJob.JobStatus$.html PrinterJob.JobStatus]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrinterJob.JobStatus$.html PrinterJob.JobStatus]] instance to its ScalaFX counterpart.

Value parameters

js

JavaFX PrinterJob.JobStatus

Attributes

Returns

ScalaFX PrinterJob.JobStatus

Inherited from:
PrintIncludes
implicit def jfxKeyCharacterCombination2sfx(kcc: KeyCharacterCombination): KeyCharacterCombination

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCharacterCombination.html KeyCharacterCombination]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCharacterCombination.html KeyCharacterCombination]] instance to its ScalaFX counterpart.

Value parameters

kcc

JavaFX KeyCharacterCombination

Attributes

Returns

ScalaFX KeyCharacterCombination

Inherited from:
InputIncludes
implicit def jfxKeyCode2sfx(e: KeyCode): KeyCode

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCode.html KeyCode]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCode.html KeyCode]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX KeyCode

Attributes

Returns

ScalaFX KeyCode

Inherited from:
InputIncludes
implicit def jfxKeyCodeCombination2sfx(kcc: KeyCodeCombination): KeyCodeCombination

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCodeCombination.html KeyCodeCombination]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCodeCombination.html KeyCodeCombination]] instance to its ScalaFX counterpart.

Value parameters

kcc

JavaFX KeyCodeCombination

Attributes

Returns

ScalaFX KeyCodeCombination

Inherited from:
InputIncludes
implicit def jfxKeyCombination2sfx(kc: KeyCombination): KeyCombination

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCombination.html KeyCombination]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCombination.html KeyCombination]] instance to its ScalaFX counterpart.

Value parameters

kc

JavaFX KeyCombination

Attributes

Returns

ScalaFX KeyCombination

Inherited from:
InputIncludes
implicit def jfxKeyCombinationModifier2sfx(m: Modifier): Modifier

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCombination.Modifier.html KeyCombination.Modifier]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCombination.Modifier.html KeyCombination.Modifier]] instance to its ScalaFX counterpart.

Value parameters

m

JavaFX KeyCombination.Modifier

Attributes

Returns

ScalaFX KeyCombination.Modifier

Inherited from:
InputIncludes
implicit def jfxKeyEvent2sfx(ke: KeyEvent): KeyEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyEvent.html KeyEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyEvent.html KeyEvent]] instance to its ScalaFX counterpart.

Value parameters

ke

JavaFX KeyEvent

Attributes

Returns

ScalaFX KeyEvent

Inherited from:
InputIncludes
implicit def jfxKeyFrame2sfx(v: KeyFrame): KeyFrame

Generates a ScalaFX KeyFrame from its JavaFX counterparty.

Generates a ScalaFX KeyFrame from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxKeyValue2sfx(v: KeyValue): KeyValue[Nothing, Nothing]

Generates a ScalaFX KeyValue from its JavaFX counterparty.

Generates a ScalaFX KeyValue from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxLabel2sfx(l: Label): Label

Converts a JavaFX Label instance to its ScalaFX counterpart.

Converts a JavaFX Label instance to its ScalaFX counterpart.

Value parameters

l

JavaFX Label

Attributes

Returns

ScalaFX Label

Inherited from:
ControlIncludes
implicit def jfxLabeled2sfx(l: Labeled): Labeled

Converts a JavaFX Labeled instance to its ScalaFX counterpart.

Converts a JavaFX Labeled instance to its ScalaFX counterpart.

Value parameters

l

JavaFX Labeled

Attributes

Returns

ScalaFX Labeled

Inherited from:
ControlIncludes
implicit def jfxLight2sfx(l: Light): Light

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.html Light]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.html Light]] instance to its ScalaFX counterpart.

Value parameters

l

JavaFX Light

Attributes

Returns

ScalaFX Light

Inherited from:
EffectIncludes
implicit def jfxLightBase2sfx(v: LightBase): LightBase

Attributes

Inherited from:
LowerPriorityIncludes
implicit def jfxLightDistant2sfx(d: Distant): Distant

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.Distant.html Light.Distant]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.Distant.html Light.Distant]] instance to its ScalaFX counterpart.

Value parameters

d

JavaFX Light.Distant

Attributes

Returns

ScalaFX Light.Distant

Inherited from:
EffectIncludes
implicit def jfxLightPoint2sfx(p: Point): Point

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.Point.html Light.Point]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.Point.html Light.Point]] instance to its ScalaFX counterpart.

Value parameters

p

JavaFX Light.Point

Attributes

Returns

ScalaFX Light.Point

Inherited from:
EffectIncludes
implicit def jfxLightSpot2sfx(s: Spot): Spot

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.Spot.html Light.Spot]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Light.Spot.html Light.Spot]] instance to its ScalaFX counterpart.

Value parameters

s

JavaFX Light.Spot

Attributes

Returns

ScalaFX Light.Spot

Inherited from:
EffectIncludes
implicit def jfxLighting2sfx(l: Lighting): Lighting

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Lighting.html Lighting]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Lighting.html Lighting]] instance to its ScalaFX counterpart.

Value parameters

l

JavaFX Lighting

Attributes

Returns

ScalaFX Lighting

Inherited from:
EffectIncludes
implicit def jfxLine2sfx(r: Line): Line

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Line.html Line]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Line.html Line]] instance to its ScalaFX counterpart.

Value parameters

r

JavaFX Line

Attributes

Returns

ScalaFX Line

Inherited from:
ShapeIncludes
implicit def jfxLineChart2sfx[X, Y](b: LineChart[X, Y]): LineChart[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/LineChart.html LineChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/LineChart.html LineChart]] instance to its ScalaFX counterpart.

Type parameters

X

X Axis Type

Y

Y Axis Type

Value parameters

b

JavaFX LineChart

Attributes

Returns

ScalaFX LineChart

Inherited from:
ChartIncludes
implicit def jfxLineChartSortingPolicy2sfx(v: SortingPolicy): SortingPolicy

Attributes

Inherited from:
ChartIncludes
implicit def jfxLineTo2sfx(l: LineTo): LineTo

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/LineTo.html LineTo]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/LineTo.html LineTo]] instance to its ScalaFX counterpart.

Value parameters

l

JavaFX LineTo

Attributes

Returns

ScalaFX LineTo

Inherited from:
ShapeIncludes
implicit def jfxLinearGradient2sfx(lg: LinearGradient): LinearGradient

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/LinearGradient.html LinearGradient]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/LinearGradient.html LinearGradient]] instance to its ScalaFX counterpart.

Value parameters

lg

JavaFX LinearGradient

Attributes

Returns

ScalaFX LinearGradient

Inherited from:
PaintIncludes
implicit def jfxListBinding2sfx[E](v: ListBinding[E]): BufferBinding[E]

Attributes

Inherited from:
BindingIncludes
implicit def jfxListCell[T](l: ListCell[T]): ListCell[T]

Converts a JavaFX ListCell instance to its ScalaFX counterpart.

Converts a JavaFX ListCell instance to its ScalaFX counterpart.

Type parameters

T

The type of the ListCell

Value parameters

l

JavaFX ListCell

Attributes

Returns

ScalaFX ListCell

Inherited from:
ControlIncludes
implicit def jfxListExpression2sfx[E](v: ListExpression[E]): BufferExpression[E]

Attributes

Inherited from:
BindingIncludes
implicit def jfxListProperty2sfx[E](p: ListProperty[E]): BufferProperty[E]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxListSpinnerValueFactory2sfx[T](ev: ListSpinnerValueFactory[T]): ListSpinnerValueFactory[T]

Attributes

Inherited from:
ControlIncludes
implicit def jfxListView2sfx[T](l: ListView[T]): ListView[T]

Converts a JavaFX ListView instance to its ScalaFX counterpart.

Converts a JavaFX ListView instance to its ScalaFX counterpart.

Type parameters

T

The type of the ListView

Value parameters

l

JavaFX ListView

Attributes

Returns

ScalaFX ListView

Inherited from:
ControlIncludes
implicit def jfxListViewEditEvent2sfx[T](l: EditEvent[T]): EditEvent[T]

Converts a JavaFX ListView.EditEvent instance to its ScalaFX counterpart.

Converts a JavaFX ListView.EditEvent instance to its ScalaFX counterpart.

Type parameters

T

The type of the ListView.EditEvent

Value parameters

l

JavaFX ListView.EditEvent

Attributes

Returns

ScalaFX ListView.EditEvent

Inherited from:
ControlIncludes
implicit def jfxLongProperty2sfx(p: LongProperty): LongProperty

Converts a `javafx.beans.property.LongProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.LongProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX LongProperty

Attributes

Returns

ScalaFX LongProperty

Inherited from:
PropertyIncludes
implicit def jfxLongStringConverter2sfx(c: LongStringConverter): LongStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/LongStringConverter.html LongStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/LongStringConverter.html LongStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX LongStringConverter

Attributes

Returns

ScalaFX LongStringConverter

Inherited from:
ConverterIncludes
implicit def jfxMapBinding2sfx[K, V](v: MapBinding[K, V]): MapBinding[K, V]

Attributes

Inherited from:
BindingIncludes
implicit def jfxMapExpression2sfx[K, V](v: MapExpression[K, V]): MapExpression[K, V]

Attributes

Inherited from:
BindingIncludes
implicit def jfxMapProperty2sfx[K, V](p: MapProperty[K, V]): MapProperty[K, V]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxMatrixType2sfx(v: MatrixType): MatrixType

Attributes

Inherited from:
TransformIncludes
implicit def jfxMedia2sfx(m: Media): Media

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/Media.html Media]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/Media.html Media]] instance to its ScalaFX counterpart.

Value parameters

m

JavaFX Media

Attributes

Returns

ScalaFX Media

Inherited from:
MediaIncludes
implicit def jfxMediaErrorEvent2sfx(mee: MediaErrorEvent): MediaErrorEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaErrorEvent.html MediaErrorEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaErrorEvent.html MediaErrorEvent]] instance to its ScalaFX counterpart.

Value parameters

mee

JavaFX MediaErrorEvent

Attributes

Returns

ScalaFX MediaErrorEvent

Inherited from:
MediaIncludes
implicit def jfxMediaException2sfx(me: MediaException): MediaException

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaException.html MediaException]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaException.html MediaException]] instance to its ScalaFX counterpart.

Value parameters

me

JavaFX MediaException

Attributes

Returns

ScalaFX MediaException

Inherited from:
MediaIncludes
implicit def jfxMediaExceptionType2sfx(t: Type): Type

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaException.Type.html MediaException.Type]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaException.Type.html MediaException.Type]] instance to its ScalaFX counterpart.

Value parameters

t

JavaFX MediaException.Type

Attributes

Returns

ScalaFX MediaException.Type

Inherited from:
MediaIncludes
implicit def jfxMediaMarkerEvent2sfx(mme: MediaMarkerEvent): MediaMarkerEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaMarkerEvent.html MediaMarkerEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaMarkerEvent.html MediaMarkerEvent]] instance to its ScalaFX counterpart.

Value parameters

mme

JavaFX MediaMarkerEvent

Attributes

Returns

ScalaFX MediaMarkerEvent

Inherited from:
MediaIncludes
implicit def jfxMediaPlayer2sfx(mp: MediaPlayer): MediaPlayer

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaPlayer.html MediaPlayer]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaPlayer.html MediaPlayer]] instance to its ScalaFX counterpart.

Value parameters

mp

JavaFX MediaPlayer

Attributes

Returns

ScalaFX MediaPlayer

Inherited from:
MediaIncludes
implicit def jfxMediaPlayerStatus2sfx(s: Status): Status

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaPlayer.Status.html MediaPlayer.Status]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaPlayer.Status.html MediaPlayer.Status]] instance to its ScalaFX counterpart.

Value parameters

s

JavaFX MediaPlayer.Status

Attributes

Returns

ScalaFX MediaPlayer.Status

Inherited from:
MediaIncludes
implicit def jfxMediaView2sfx(mv: MediaView): MediaView

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaView.html MediaView]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/MediaView.html MediaView]] instance to its ScalaFX counterpart.

Value parameters

mv

JavaFX MediaView

Attributes

Returns

ScalaFX MediaView

Inherited from:
MediaIncludes
implicit def jfxMenu2sfx(h: Menu): Menu

Converts a JavaFX Menu instance to its ScalaFX counterpart.

Converts a JavaFX Menu instance to its ScalaFX counterpart.

Value parameters

h

JavaFX Menu

Attributes

Returns

ScalaFX Menu

Inherited from:
ControlIncludes
implicit def jfxMenuBar2sfx(h: MenuBar): MenuBar

Converts a JavaFX MenuBar instance to its ScalaFX counterpart.

Converts a JavaFX MenuBar instance to its ScalaFX counterpart.

Value parameters

h

JavaFX MenuBar

Attributes

Returns

ScalaFX MenuBar

Inherited from:
ControlIncludes
implicit def jfxMenuButton2sfx(h: MenuButton): MenuButton

Converts a JavaFX MenuButton instance to its ScalaFX counterpart.

Converts a JavaFX MenuButton instance to its ScalaFX counterpart.

Value parameters

h

JavaFX MenuButton

Attributes

Returns

ScalaFX MenuButton

Inherited from:
ControlIncludes
implicit def jfxMenuItem2sfx(m: MenuItem): MenuItem

Converts a JavaFX MenuItem instance to its ScalaFX counterpart.

Converts a JavaFX MenuItem instance to its ScalaFX counterpart.

Value parameters

m

JavaFX MenuItem

Attributes

Returns

ScalaFX MenuItem

Inherited from:
ControlIncludes
implicit def jfxMeshView2sfx(mv: MeshView): MeshView

Attributes

Inherited from:
ShapeIncludes
implicit def jfxMnemonic2sfx(m: Mnemonic): Mnemonic

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/Mnemonic.html Mnemonic]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/Mnemonic.html Mnemonic]] instance to its ScalaFX counterpart.

Value parameters

m

JavaFX Mnemonic

Attributes

Returns

ScalaFX Mnemonic

Inherited from:
InputIncludes
implicit def jfxModality2sfx(e: Modality): Modality

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Modality.html Modality]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Modality.html Modality]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX Modality

Attributes

Returns

ScalaFX Modality

Inherited from:
StageIncludes
implicit def jfxModifierValue2sfx(mv: ModifierValue): ModifierValue

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCombination.ModifierValue.html KeyCombination.ModifierValue]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCombination.ModifierValue.html KeyCombination.ModifierValue]] instance to its ScalaFX counterpart.

Value parameters

mv

JavaFX KeyCombination.ModifierValue

Attributes

Returns

ScalaFX KeyCombination.ModifierValue

Inherited from:
InputIncludes
implicit def jfxMotionBlur2sfx(mb: MotionBlur): MotionBlur

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/MotionBlur.html MotionBlur]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/MotionBlur.html MotionBlur]] instance to its ScalaFX counterpart.

Value parameters

mb

JavaFX MotionBlur

Attributes

Returns

ScalaFX MotionBlur

Inherited from:
EffectIncludes
implicit def jfxMouseButton2sfx(e: MouseButton): MouseButton

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/MouseButton.html MouseButton]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/MouseButton.html MouseButton]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX MouseButton

Attributes

Returns

ScalaFX MouseButton

Inherited from:
InputIncludes
implicit def jfxMouseDragEvent2sfx(mde: MouseDragEvent): MouseDragEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/MouseDragEvent.html MouseDragEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/MouseDragEvent.html MouseDragEvent]] instance to its ScalaFX counterpart.

Value parameters

mde

JavaFX MouseDragEvent

Attributes

Returns

ScalaFX MouseDragEvent

Inherited from:
InputIncludes
implicit def jfxMouseEvent2sfx(me: MouseEvent): MouseEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/MouseEvent.html MouseEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/MouseEvent.html MouseEvent]] instance to its ScalaFX counterpart.

Value parameters

me

JavaFX MouseEvent

Attributes

Returns

ScalaFX MouseEvent

Inherited from:
InputIncludes
implicit def jfxMoveTo2sfx(l: MoveTo): MoveTo

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/MoveTo.html MoveTo]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/MoveTo.html MoveTo]] instance to its ScalaFX counterpart.

Value parameters

l

JavaFX MoveTo

Attributes

Returns

ScalaFX MoveTo

Inherited from:
ShapeIncludes
implicit def jfxMultipleSelectionModel2sfx[T](v: MultipleSelectionModel[T]): MultipleSelectionModel[T]

Converts a JavaFX MultipleSelectionModel instance to its ScalaFX counterpart.

Converts a JavaFX MultipleSelectionModel instance to its ScalaFX counterpart.

Value parameters

v

JavaFX MultipleSelectionModel

Attributes

Returns

ScalaFX MultipleSelectionModel

Inherited from:
ControlIncludes
implicit def jfxNode2sfx(v: Node): Node

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/Node.html Node]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/Node.html Node]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Node

Attributes

Returns

ScalaFX Node

Inherited from:
LowerPriorityIncludes
implicit def jfxNodeOrientation2sfx(e: NodeOrientation): NodeOrientation

Converts a `javafx.geometry.NodeOrientation` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.NodeOrientation` instance to its ScalaFX counterpart.

Value parameters

e

JavaFX NodeOrientation

Attributes

Returns

ScalaFX NodeOrientation

Inherited from:
GeometryIncludes
implicit def jfxNonInvertibleTransformException2sfx(v: NonInvertibleTransformException): NonInvertibleTransformException

Attributes

Inherited from:
TransformIncludes
implicit def jfxNumberAxis2sfx(b: NumberAxis): NumberAxis

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/NumberAxis.html NumberAxis]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/NumberAxis.html NumberAxis]] instance to its ScalaFX counterpart.

Value parameters

b

JavaFX NumberAxis

Attributes

Returns

ScalaFX NumberAxis

Inherited from:
ChartIncludes
implicit def jfxNumberAxisDefaultFormatter2sfx(b: DefaultFormatter): DefaultFormatter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/NumberAxis.DefaultFormatter.html NumberAxis.DefaultFormatter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/NumberAxis.DefaultFormatter.html NumberAxis.DefaultFormatter]] instance to its ScalaFX counterpart.

Value parameters

b

JavaFX NumberAxis.DefaultFormatter

Attributes

Returns

ScalaFX NumberAxis.DefaultFormatter

Inherited from:
ChartIncludes
implicit def jfxNumberBinding2sfx(nb: NumberBinding): NumberBinding

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/NumberBinding.html NumberBinding]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/NumberBinding.html NumberBinding]] instance to its ScalaFX counterpart.

Value parameters

nb

JavaFX NumberBinding

Attributes

Returns

ScalaFX NumberBinding

Inherited from:
BindingIncludes
implicit def jfxNumberExpression2sfx(ne: NumberExpression): NumberExpression

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/NumberExpression.html NumberExpression]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/NumberExpression.html NumberExpression]] instance to its ScalaFX counterpart.

Value parameters

ne

JavaFX NumberExpression

Attributes

Returns

ScalaFX NumberExpression

Inherited from:
BindingIncludes
implicit def jfxNumberStringConverter2sfx(c: NumberStringConverter): NumberStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/NumberStringConverter.html NumberStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/NumberStringConverter.html NumberStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX NumberStringConverter

Attributes

Returns

ScalaFX NumberStringConverter

Inherited from:
ConverterIncludes
implicit def jfxObjectBinding2sfx[T](ob: ObjectBinding[T]): ObjectBinding[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/ObjectBinding.html ObjectBinding]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/ObjectBinding.html ObjectBinding]] instance to its ScalaFX counterpart.

Type parameters

T

ObjectBinding Type

Value parameters

ob

JavaFX ObjectBinding

Attributes

Returns

ScalaFX ObjectBinding

Inherited from:
BindingIncludes
implicit def jfxObjectExpression2sfx[T](oe: ObjectExpression[T]): ObjectExpression[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/ObjectExpression.html ObjectExpression]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/ObjectExpression.html ObjectExpression]] instance to its ScalaFX counterpart.

Type parameters

T

ObjectExpression Type

Value parameters

oe

JavaFX ObjectExpression

Attributes

Returns

ScalaFX ObjectExpression

Inherited from:
BindingIncludes
implicit def jfxObjectProperty2sfx[T](p: ObjectProperty[T]): ObjectProperty[T]

Converts a `javafx.beans.property.ObjectProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ObjectProperty` instance to its ScalaFX counterpart.

Type parameters

T

ObjectProperty Type

Value parameters

p

JavaFX ObjectProperty

Attributes

Returns

ScalaFX ObjectProperty

Inherited from:
PropertyIncludes
implicit def jfxObservable2sfx(o: Observable): Observable

Converts a `javafx.beans.Observable` instance to its ScalaFX counterpart.

Converts a `javafx.beans.Observable` instance to its ScalaFX counterpart.

Value parameters

o

JavaFX Observable

Attributes

Returns

ScalaFX Observable

Inherited from:
LowerPriorityIncludes

Value parameters

ofa

JavaFX ObservableFloatArray

Attributes

Returns

ScalaFX ObservableFloatArray

Inherited from:
CollectionIncludes

Value parameters

oia

JavaFX ObservableIntegerArray

Attributes

Returns

ScalaFX ObservableIntegerArray

Inherited from:
CollectionIncludes
implicit def jfxObservableMap2sfxObservableMap[K, V](om: ObservableMap[K, V]): ObservableMap[K, V]

Converts a JavaFX `ObservableMap` to a ScalaFX scalafx.collections.ObservableMap.

Converts a JavaFX `ObservableMap` to a ScalaFX scalafx.collections.ObservableMap.

Type parameters

K

Key Type

V

Value Type

Value parameters

om

JavaFX ObservableMap

Attributes

Returns

ScalaFX ObservableMap

Inherited from:
CollectionIncludes
implicit def jfxObservableSet2sfxObservableSet[T](os: ObservableSet[T]): ObservableHashSet[T]

Converts a JavaFX `ObservableSet` to a ScalaFX scalafx.collections.ObservableSet.

Converts a JavaFX `ObservableSet` to a ScalaFX scalafx.collections.ObservableSet.

Type parameters

T

Set Type

Value parameters

os

JavaFX ObservableSet

Attributes

Returns

ScalaFX ObservableSet

Inherited from:
CollectionIncludes
implicit def jfxObservableValue2sfx[T](o: ObservableValue[T]): ObservableValue[T, T]

Converts a `javafx.beans.value.ObservableValue` instance to its ScalaFX counterpart ''which Java Type and Scala Type are the same''.

Converts a `javafx.beans.value.ObservableValue` instance to its ScalaFX counterpart ''which Java Type and Scala Type are the same''.

Value parameters

o

JavaFX ObservableValue

Attributes

Returns

ScalaFX ObservableValue ''which Java Type and Scala Type are the same''.

Inherited from:
LowerPriorityIncludes
implicit def jfxOrientation2sfx(e: Orientation): Orientation

Converts a `javafx.geometry.Orientation` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Orientation` instance to its ScalaFX counterpart.

Value parameters

e

JavaFX Orientation

Attributes

Returns

ScalaFX Orientation

Inherited from:
GeometryIncludes
implicit def jfxOverrunStyle2sfx(e: OverrunStyle): OverrunStyle

Converts a JavaFX OverrunStyle instance to its ScalaFX counterpart.

Converts a JavaFX OverrunStyle instance to its ScalaFX counterpart.

Value parameters

e

JavaFX OverrunStyle

Attributes

Returns

ScalaFX OverrunStyle

Inherited from:
ControlIncludes
implicit def jfxPageLayout2sfx(pl: PageLayout): PageLayout

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PageLayout$.html PageLayout]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PageLayout$.html PageLayout]] instance to its ScalaFX counterpart.

Value parameters

pl

JavaFX PageLayout

Attributes

Returns

ScalaFX PageLayout

Inherited from:
PrintIncludes
implicit def jfxPageOrientation2sfx(po: PageOrientation): PageOrientation

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PageOrientation.html PageOrientation]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PageOrientation.html PageOrientation]] instance to its ScalaFX counterpart.

Value parameters

po

JavaFX PageOrientation

Attributes

Returns

ScalaFX PageOrientation

Inherited from:
PrintIncludes
implicit def jfxPageRange2sfx(pr: PageRange): PageRange

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrintResolution.html PrintResolution]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrintResolution.html PrintResolution]] instance to its ScalaFX counterpart.

Value parameters

pr

JavaFX PrintResolution

Attributes

Returns

ScalaFX PrintResolution

Inherited from:
PrintIncludes
implicit def jfxPagination2sfx(p: Pagination): Pagination

Converts a JavaFX Pagination instance to its ScalaFX counterpart.

Converts a JavaFX Pagination instance to its ScalaFX counterpart.

Value parameters

p

JavaFX Pagination

Attributes

Returns

ScalaFX Pagination

Inherited from:
ControlIncludes
implicit def jfxPaint2sfx(p: Paint): Paint

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/Paint.html Paint]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/Paint.html Paint]] instance to its ScalaFX counterpart.

Value parameters

p

JavaFX Paint

Attributes

Returns

ScalaFX Paint

Inherited from:
PaintIncludes
implicit def jfxPair2Tuple2[K, V](p: Pair[K, V]): (K, V)

Convert a JavaFX Pair in a Scala Tuple2.

Convert a JavaFX Pair in a Scala Tuple2.

Type parameters

K

Key Type

V

Value Type

Value parameters

p

JavaFX Pair

Attributes

Returns

A Scala Tuple2 generated from Pair.

Inherited from:
UtilIncludes
implicit def jfxPane2sfx(v: Pane): Pane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Pane.html Pane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Pane.html Pane]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Pane

Attributes

Returns

ScalaFX Pane

Inherited from:
LayoutIncludes
implicit def jfxPanel2sfx(p: JFXPanel): SFXPanel

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/embed/swing/JFXPanel$.html JFXPanel]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/embed/swing/JFXPanel$.html JFXPanel]] instance to its ScalaFX counterpart.

Value parameters

p

JFXPanel

Attributes

Returns

SFXPanel

Inherited from:
SwingIncludes
implicit def jfxPaper2sfx(pp: Paper): Paper

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/Paper.html Paper]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/Paper.html Paper]] instance to its ScalaFX counterpart.

Value parameters

pp

JavaFX Paper

Attributes

Returns

ScalaFX Paper

Inherited from:
PrintIncludes
implicit def jfxPaperSource2sfx(ps: PaperSource): PaperSource

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrintSides.html PrintSides]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrintSides.html PrintSides]] instance to its ScalaFX counterpart.

Value parameters

ps

JavaFX PrintSides

Attributes

Returns

ScalaFX Paper

Inherited from:
PrintIncludes
implicit def jfxParallelCamera2sfx(v: ParallelCamera): ParallelCamera

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/ParallelCamera.html ParallelCamera]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/ParallelCamera.html ParallelCamera]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX ParallelCamera

Attributes

Returns

ScalaFX ParallelCamera

Inherited from:
LowerPriorityIncludes
implicit def jfxParallelTransition2sfx(v: ParallelTransition): ParallelTransition

Generates a ScalaFX ParallelTransition from its JavaFX counterparty.

Generates a ScalaFX ParallelTransition from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxParameters2sfx(p: Parameters): Parameters

Converts a `javafx.application.Application.Parameters` instance to its ScalaFX counterpart.

Converts a `javafx.application.Application.Parameters` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX Parameters

Attributes

Returns

ScalaFX Parameters

Inherited from:
ApplicationIncludes
implicit def jfxParent2sfx(v: Parent): Parent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/Parent.html Parent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/Parent.html Parent]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Parent

Attributes

Returns

ScalaFX Parent

Inherited from:
LowerPriorityIncludes
implicit def jfxPasswordField2sfx(v: PasswordField): PasswordField

Converts a JavaFX PasswordField instance to its ScalaFX counterpart.

Converts a JavaFX PasswordField instance to its ScalaFX counterpart.

Value parameters

v

JavaFX PasswordField

Attributes

Returns

ScalaFX PasswordField

Inherited from:
ControlIncludes
implicit def jfxPath2sfx(r: Path): Path

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Path.html Path]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Path.html Path]] instance to its ScalaFX counterpart.

Value parameters

r

JavaFX Path

Attributes

Returns

ScalaFX Path

Inherited from:
ShapeIncludes
implicit def jfxPathElement2sfx(e: PathElement): PathElement

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/PathElement.html PathElement]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/PathElement.html PathElement]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX PathElement

Attributes

Returns

ScalaFX PathElement

Inherited from:
ShapeIncludes
implicit def jfxPathTransition2sfx(v: PathTransition): PathTransition

Generates a ScalaFX PathTransition from its JavaFX counterparty.

Generates a ScalaFX PathTransition from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxPathTransitionOrientationType2sfx(v: OrientationType): OrientationType

Generates a ScalaFX PathTransition.OrientationType from its JavaFX counterparty.

Generates a ScalaFX PathTransition.OrientationType from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxPauseTransition2sfx(v: PauseTransition): PauseTransition

Generates a ScalaFX PauseTransition from its JavaFX counterparty.

Generates a ScalaFX PauseTransition from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxPercentageStringConverter2sfx(c: PercentageStringConverter): PercentageStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/PercentageStringConverter.html PercentageStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/PercentageStringConverter.html PercentageStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX PercentageStringConverter

Attributes

Returns

ScalaFX PercentageStringConverter

Inherited from:
ConverterIncludes
implicit def jfxPerspectiveCamera2sfx(v: PerspectiveCamera): PerspectiveCamera

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/PerspectiveCamera.html PerspectiveCamera]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/PerspectiveCamera.html PerspectiveCamera]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX PerspectiveCamera

Attributes

Returns

ScalaFX PerspectiveCamera

Inherited from:
LowerPriorityIncludes
implicit def jfxPerspectiveTransform2sfx(pt: PerspectiveTransform): PerspectiveTransform

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/PerspectiveTransform.html PerspectiveTransform]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/PerspectiveTransform.html PerspectiveTransform]] instance to its ScalaFX counterpart.

Value parameters

pt

JavaFX PerspectiveTransform

Attributes

Returns

ScalaFX PerspectiveTransform

Inherited from:
EffectIncludes
implicit def jfxPhongMaterial2sfx(pm: PhongMaterial): PhongMaterial

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/PhongMaterial.html PhongMaterial]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/PhongMaterial.html PhongMaterial]] instance to its ScalaFX counterpart.

Value parameters

pm

JavaFX PhongMaterial

Attributes

Returns

ScalaFX PhongMaterial

Inherited from:
PaintIncludes
implicit def jfxPickResult2sfx(m: PickResult): PickResult

Attributes

Inherited from:
InputIncludes
implicit def jfxPieChart2sfx(b: PieChart): PieChart

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/PieChart.html PieChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/PieChart.html PieChart]] instance to its ScalaFX counterpart.

Value parameters

b

JavaFX PieChart

Attributes

Returns

ScalaFX PieChart

Inherited from:
ChartIncludes
implicit def jfxPieChartData2sfx(b: Data): Data

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/PieChart.Data.html PieChart.Data]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/PieChart.Data.html PieChart.Data]] instance to its ScalaFX counterpart.

Value parameters

b

JavaFX PieChart.Data

Attributes

Returns

ScalaFX PieChart.Data

Inherited from:
ChartIncludes
implicit def jfxPixelFormat2sfx[B <: Buffer](pf: PixelFormat[B]): PixelFormat[B]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelFormat.html PixelFormat]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelFormat.html PixelFormat]] instance to its ScalaFX counterpart.

Value parameters

pf

JavaFX PixelFormat

Attributes

Returns

ScalaFX PixelFormat

Inherited from:
ImageIncludes
implicit def jfxPixelReader2sfx(pr: PixelReader): PixelReader

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelReader.html PixelReader]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelReader.html PixelReader]] instance to its ScalaFX counterpart.

Value parameters

pr

JavaFX PixelReader

Attributes

Returns

ScalaFX PixelReader

Inherited from:
ImageIncludes
implicit def jfxPixelWriter2sfx(pw: PixelWriter): PixelWriter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelWriter.html PixelWriter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelWriter.html PixelWriter]] instance to its ScalaFX counterpart.

Value parameters

pw

JavaFX PixelWriter

Attributes

Returns

ScalaFX PixelWriter

Inherited from:
ImageIncludes
implicit def jfxPoint2D2sfx(p: Point2D): Point2D

Converts a `javafx.geometry.Point2D` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Point2D` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX Point2D

Attributes

Returns

ScalaFX Point2D

Inherited from:
GeometryIncludes
implicit def jfxPoint3D2sfx(p: Point3D): Point3D

Converts a `javafx.geometry.Point3D` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Point3D` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX Point3D

Attributes

Returns

ScalaFX Point3D

Inherited from:
GeometryIncludes
implicit def jfxPointLight2sfx(v: PointLight): PointLight

Attributes

Inherited from:
LowerPriorityIncludes
implicit def jfxPolygon2sfx(p: Polygon): Polygon

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Polygon.html Polygon]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Polygon.html Polygon]] instance to its ScalaFX counterpart.

Value parameters

p

JavaFX Polygon

Attributes

Returns

ScalaFX Polygon

Inherited from:
ShapeIncludes
implicit def jfxPolyline2sfx(p: Polyline): Polyline

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Polyline.html Polyline]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Polyline.html Polyline]] instance to its ScalaFX counterpart.

Value parameters

p

JavaFX Polyline

Attributes

Returns

ScalaFX Polyline

Inherited from:
ShapeIncludes
implicit def jfxPopup2sfx(p: Popup): Popup

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Popup.html Popup]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Popup.html Popup]] instance to its ScalaFX counterpart.

Value parameters

p

JavaFX Popup

Attributes

Returns

ScalaFX Popup

Inherited from:
StageIncludes
implicit def jfxPopupControl2sfx(v: PopupControl): PopupControl

Converts a JavaFX PopupControl instance to its ScalaFX counterpart.

Converts a JavaFX PopupControl instance to its ScalaFX counterpart.

Value parameters

v

JavaFX PopupControl

Attributes

Returns

ScalaFX PopupControl

Inherited from:
ControlIncludes
implicit def jfxPopupFeatures2sfx(pf: PopupFeatures): PopupFeatures

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/PopupFeatures.html PopupFeatures]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/PopupFeatures.html PopupFeatures]] instance to its ScalaFX counterpart.

Value parameters

pf

JavaFX PopupFeatures

Attributes

Returns

ScalaFX PopupFeatures

Inherited from:
WebIncludes
implicit def jfxPopupWindow2sfx(pw: PopupWindow): PopupWindow

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/PopupWindow.html PopupWindow]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/PopupWindow.html PopupWindow]] instance to its ScalaFX counterpart.

Value parameters

pw

JavaFX PopupWindow

Attributes

Returns

ScalaFX PopupWindow

Inherited from:
StageIncludes
implicit def jfxPopupWindowAnchorLocation2sfx(v: AnchorLocation): AnchorLocation

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/PopupWindow.AnchorLocation.html PopupWindow.AnchorLocation]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/PopupWindow.AnchorLocation.html PopupWindow.AnchorLocation]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX PopupWindow.AnchorLocation

Attributes

Returns

ScalaFX PopupWindow.AnchorLocation

Inherited from:
StageIncludes
implicit def jfxPos2sfx(p: Pos): Pos

Converts a `javafx.geometry.Pos` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Pos` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX Pos

Attributes

Returns

ScalaFX Pos

Inherited from:
GeometryIncludes
implicit def jfxPrintColor2sfx(pc: PrintColor): PrintColor

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrintColor.html PrintColor]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrintColor.html PrintColor]] instance to its ScalaFX counterpart.

Value parameters

pc

JavaFX PrintColor

Attributes

Returns

ScalaFX PrintColor

Inherited from:
PrintIncludes
implicit def jfxPrintJob2sfx(pj: PrinterJob): PrinterJob

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrinterJob.html PrinterJob]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrinterJob.html PrinterJob]] instance to its ScalaFX counterpart.

Value parameters

pj

JavaFX PrinterJob

Attributes

Returns

ScalaFX PrinterJob

Inherited from:
PrintIncludes
implicit def jfxPrintJobJobStatus2sfx(js: JobStatus): JobStatus

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrinterJob.JobStatus.html PrinterJob.JobStatus]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrinterJob.JobStatus.html PrinterJob.JobStatus]] instance to its ScalaFX counterpart.

Value parameters

js

JavaFX PrinterJob.JobStatus

Attributes

Returns

ScalaFX PrinterJob.JobStatus

Inherited from:
PrintIncludes
implicit def jfxPrintQuality2sfx(pq: PrintQuality): PrintQuality

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrintQuality.html PrintQuality]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrintQuality.html PrintQuality]] instance to its ScalaFX counterpart.

Value parameters

pq

JavaFX PrintQuality

Attributes

Returns

ScalaFX PrintQuality

Inherited from:
PrintIncludes
implicit def jfxPrintResolution2sfx(pr: PrintResolution): PrintResolution

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrintResolution.html PrintResolution]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrintResolution.html PrintResolution]] instance to its ScalaFX counterpart.

Value parameters

pr

JavaFX PrintResolution

Attributes

Returns

ScalaFX PrintResolution

Inherited from:
PrintIncludes
implicit def jfxPrintSides2sfx(ps: PrintSides): PrintSides

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrintSides.html PrintSides]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrintSides.html PrintSides]] instance to its ScalaFX counterpart.

Value parameters

ps

JavaFX PrintSides

Attributes

Returns

ScalaFX PrintSides

Inherited from:
PrintIncludes
implicit def jfxPrinter2sfx(p: Printer): Printer

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/Printer.html Printer]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/Printer.html Printer]] instance to its ScalaFX counterpart.

Value parameters

p

JavaFX Printer

Attributes

Returns

ScalaFX Printer

Inherited from:
PrintIncludes
implicit def jfxPrinterAttributes2sfx(pa: PrinterAttributes): PrinterAttributes

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrinterAttributes.html PrinterAttributes]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/PrinterAttributes.html PrinterAttributes]] instance to its ScalaFX counterpart.

Value parameters

pa

JavaFX PrinterAttributes

Attributes

Returns

ScalaFX PrinterAttributes

Inherited from:
PrintIncludes
implicit def jfxPrinterMarginType2sfx(mt: MarginType): MarginType

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/Printer.MarginType.html Printer.MarginType]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/print/Printer.MarginType.html Printer.MarginType]] instance to its ScalaFX counterpart.

Value parameters

mt

JavaFX Printer.MarginType

Attributes

Returns

ScalaFX Printer.MarginType

Inherited from:
PrintIncludes
implicit def jfxPriority2sfx(e: Priority): Priority

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Priority.html Priority]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Priority.html Priority]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX Priority

Attributes

Returns

ScalaFX Priority

Inherited from:
LayoutIncludes
implicit def jfxProgressBar2sfx(p: ProgressBar): ProgressBar

Converts a JavaFX ProgressBar instance to its ScalaFX counterpart.

Converts a JavaFX ProgressBar instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ProgressBar

Attributes

Returns

ScalaFX ProgressBar

Inherited from:
ControlIncludes
implicit def jfxProgressBarTableCell2sfx[S](cell: ProgressBarTableCell[S]): ProgressBarTableCell[S]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ProgressBarTableCell.html ProgressBarTableCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/ProgressBarTableCell.html ProgressBarTableCell]] instance to its ScalaFX counterpart.

Type parameters

S

The type of the elements contained ...

Value parameters

cell

JavaFX ProgressBarTableCell

Attributes

Returns

ScalaFX ProgressBarTableCell

Inherited from:
CellIncludes
implicit def jfxProgressIndicator2sfx(p: ProgressIndicator): ProgressIndicator

Converts a JavaFX ProgressIndicator instance to its ScalaFX counterpart.

Converts a JavaFX ProgressIndicator instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ProgressIndicator

Attributes

Returns

ScalaFX ProgressIndicator

Inherited from:
ControlIncludes
implicit def jfxPromptData2sfx(pd: PromptData): PromptData

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/PromptData.html PromptData]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/PromptData.html PromptData]] instance to its ScalaFX counterpart.

Value parameters

pd

JavaFX PromptData

Attributes

Returns

ScalaFX PromptData

Inherited from:
WebIncludes
implicit def jfxProperty2sfx[T <: AnyRef](p: Property[T]): Property[T, T]

Attributes

Inherited from:
LowerPriorityIncludes
implicit def jfxPseudoClass2sfx(d: PseudoClass): PseudoClass

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/css/PseudoClass.html PseudoClass]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/css/PseudoClass.html PseudoClass]] instance to its ScalaFX counterpart.

Value parameters

d

JavaFX PseudoClass

Attributes

Returns

ScalaFX PseudoClass

Inherited from:
CssIncludes
implicit def jfxQuadCurve2sfx(q: QuadCurve): QuadCurve

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/QuadCurve.html QuadCurve]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/QuadCurve.html QuadCurve]] instance to its ScalaFX counterpart.

Value parameters

q

JavaFX QuadCurve

Attributes

Returns

ScalaFX QuadCurve

Inherited from:
ShapeIncludes
implicit def jfxQuadCurveTo2sfx(q: QuadCurveTo): QuadCurveTo

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/QuadCurveTo.html QuadCurveTo]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/QuadCurveTo.html QuadCurveTo]] instance to its ScalaFX counterpart.

Value parameters

q

JavaFX QuadCurveTo

Attributes

Returns

ScalaFX QuadCurveTo

Inherited from:
ShapeIncludes
implicit def jfxRadialGradient2sfx(rg: RadialGradient): RadialGradient

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/RadialGradient.html RadialGradient]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/RadialGradient.html RadialGradient]] instance to its ScalaFX counterpart.

Value parameters

rg

JavaFX RadialGradient

Attributes

Returns

ScalaFX RadialGradient

Inherited from:
PaintIncludes
implicit def jfxRadioButton2sfx(rb: RadioButton): RadioButton

Converts a JavaFX RadioButton instance to its ScalaFX counterpart.

Converts a JavaFX RadioButton instance to its ScalaFX counterpart.

Value parameters

rb

JavaFX RadioButton

Attributes

Returns

ScalaFX RadioButton

Inherited from:
ControlIncludes
implicit def jfxRadioMenuItem2sfx(m: RadioMenuItem): RadioMenuItem

Converts a JavaFX RadioMenuItem instance to its ScalaFX counterpart.

Converts a JavaFX RadioMenuItem instance to its ScalaFX counterpart.

Value parameters

m

JavaFX RadioMenuItem

Attributes

Returns

ScalaFX RadioMenuItem

Inherited from:
ControlIncludes
implicit def jfxReadOnlyBooleanProperty2sfx(p: ReadOnlyBooleanProperty): ReadOnlyBooleanProperty

Converts a `javafx.beans.property.ReadOnlyBooleanProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyBooleanProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyBooleanProperty

Attributes

Returns

ScalaFX ReadOnlyBooleanProperty

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyBooleanWrapper2sfx(p: ReadOnlyBooleanWrapper): ReadOnlyBooleanWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyStringWrapper

Attributes

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyDoubleProperty2sfx(p: ReadOnlyDoubleProperty): ReadOnlyDoubleProperty

Converts a `javafx.beans.property.ReadOnlyDoubleProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyDoubleProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyDoubleProperty

Attributes

Returns

ScalaFX ReadOnlyDoubleProperty

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyDoubleWrapper2sfx(p: ReadOnlyDoubleWrapper): ReadOnlyDoubleWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyStringWrapper

Attributes

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyFloatProperty2sfx(p: ReadOnlyFloatProperty): ReadOnlyFloatProperty

Converts a `javafx.beans.property.ReadOnlyFloatProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyFloatProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyFloatProperty

Attributes

Returns

ScalaFX ReadOnlyFloatProperty

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyFloatWrapper2sfx(p: ReadOnlyFloatWrapper): ReadOnlyFloatWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyStringWrapper

Attributes

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyIntegerProperty2sfx(p: ReadOnlyIntegerProperty): ReadOnlyIntegerProperty

Converts a `javafx.beans.property.ReadOnlyIntegerProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyIntegerProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyIntegerProperty

Attributes

Returns

ScalaFX ReadOnlyIntegerProperty

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyIntegerWrapper2sfx(p: ReadOnlyIntegerWrapper): ReadOnlyIntegerWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyStringWrapper

Attributes

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyListProperty2sfx[E](p: ReadOnlyListProperty[E]): ReadOnlyBufferProperty[E]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyListWrapper2sfx[E](p: ReadOnlyListWrapper[E]): ReadOnlyBufferWrapper[E]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyLongProperty2sfx(p: ReadOnlyLongProperty): ReadOnlyLongProperty

Converts a `javafx.beans.property.ReadOnlyLongProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyLongProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyLongProperty

Attributes

Returns

ScalaFX ReadOnlyLongProperty

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyLongWrapper2sfx(p: ReadOnlyLongWrapper): ReadOnlyLongWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyStringWrapper

Attributes

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyMapProperty2sfx[K, V](p: ReadOnlyMapProperty[K, V]): ReadOnlyMapProperty[K, V]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyMapWrapper2sfx[K, V](p: ReadOnlyMapWrapper[K, V]): ReadOnlyMapWrapper[K, V]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyObjectProperty2sfx[T](p: ReadOnlyObjectProperty[T]): ReadOnlyObjectProperty[T]

Converts a `javafx.beans.property.ReadOnlyObjectProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyObjectProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyObjectProperty

Attributes

Returns

ScalaFX ReadOnlyObjectProperty

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyObjectWrapper2sfx[T](p: ReadOnlyObjectWrapper[T]): ReadOnlyObjectWrapper[T]

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyStringWrapper

Attributes

Returns

ScalaFX ReadOnlyObjectWrapper

Inherited from:
PropertyIncludes
implicit def jfxReadOnlySetProperty2sfx[E](p: ReadOnlySetProperty[E]): ReadOnlySetProperty[E]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxReadOnlySetWrapper2sfx[E](p: ReadOnlySetWrapper[E]): ReadOnlySetWrapper[E]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyStringProperty2sfx(p: ReadOnlyStringProperty): ReadOnlyStringProperty

Converts a `javafx.beans.property.ReadOnlyStringProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyStringProperty

Attributes

Returns

ScalaFX ReadOnlyStringProperty

Inherited from:
PropertyIncludes
implicit def jfxReadOnlyStringWrapper2sfx(p: ReadOnlyStringWrapper): ReadOnlyStringWrapper

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.ReadOnlyStringWrapper` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX ReadOnlyStringWrapper

Attributes

Returns

ScalaFX ReadOnlyStringWrapper

Inherited from:
PropertyIncludes
implicit def jfxRectangle2D2sfx(r: Rectangle2D): Rectangle2D

Converts a `javafx.geometry.Rectangle2D` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Rectangle2D` instance to its ScalaFX counterpart.

Value parameters

r

JavaFX Rectangle2D

Attributes

Returns

ScalaFX Rectangle2D

Inherited from:
GeometryIncludes
implicit def jfxRectangle2sfx(r: Rectangle): Rectangle

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Rectangle.html Rectangle]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Rectangle.html Rectangle]] instance to its ScalaFX counterpart.

Value parameters

r

JavaFX Rectangle

Attributes

Returns

ScalaFX Rectangle

Inherited from:
ShapeIncludes
implicit def jfxReflection2sfx(r: Reflection): Reflection

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Reflection.html Reflection]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Reflection.html Reflection]] instance to its ScalaFX counterpart.

Value parameters

r

JavaFX Reflection

Attributes

Returns

ScalaFX Reflection

Inherited from:
EffectIncludes
implicit def jfxRegion2sfx(v: Region): Region

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Region.html Region]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/Region.html Region]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Region

Attributes

Returns

ScalaFX Region

Inherited from:
LayoutIncludes
implicit def jfxResizeFeatures2sfx[S](rf: ResizeFeatures[S]): ResizeFeatures[S]

Converts a JavaFX TableView.ResizeFeatures instance to its ScalaFX counterpart.

Converts a JavaFX TableView.ResizeFeatures instance to its ScalaFX counterpart.

Type parameters

S

The type of the TableView.ResizeFeatures

Value parameters

rf

JavaFX TableView.ResizeFeatures

Attributes

Returns

ScalaFX TableView.ResizeFeatures

Inherited from:
ControlIncludes
implicit def jfxRotate2sfx(v: Rotate): Rotate

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Rotate.html Rotate]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Rotate.html Rotate]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Rotate

Attributes

Returns

ScalaFX Rotate

Inherited from:
TransformIncludes
implicit def jfxRotateEvent2sfx(re: RotateEvent): RotateEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/RotateEvent.html RotateEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/RotateEvent.html RotateEvent]] instance to its ScalaFX counterpart.

Value parameters

re

JavaFX RotateEvent

Attributes

Returns

ScalaFX RotateEvent

Inherited from:
InputIncludes
implicit def jfxRotateTransition2sfx(v: RotateTransition): RotateTransition

Generates a ScalaFX RotateTransition from its JavaFX counterparty.

Generates a ScalaFX RotateTransition from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxRowConstraints2sfx(v: RowConstraints): RowConstraints

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/RowConstraints.html RowConstraints]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/RowConstraints.html RowConstraints]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX RowConstraints

Attributes

Returns

ScalaFX RowConstraints

Inherited from:
LayoutIncludes
implicit def jfxSVGPath2sfx(s: SVGPath): SVGPath

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/SVGPath.html SVGPath]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/SVGPath.html SVGPath]] instance to its ScalaFX counterpart.

Value parameters

s

JavaFX SVGPath

Attributes

Returns

ScalaFX SVGPath

Inherited from:
ShapeIncludes
implicit def jfxScale2sfx(v: Scale): Scale

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Scale.html Scale]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Scale.html Scale]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Scale

Attributes

Returns

ScalaFX Scale

Inherited from:
TransformIncludes
implicit def jfxScaleTransition2sfx(v: ScaleTransition): ScaleTransition

Generates a ScalaFX ScaleTransition from its JavaFX counterparty.

Generates a ScalaFX ScaleTransition from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxScatterChart2sfx[X, Y](b: ScatterChart[X, Y]): ScatterChart[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/ScatterChart.html ScatterChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/ScatterChart.html ScatterChart]] instance to its ScalaFX counterpart.

Type parameters

X

X Axis Type

Y

Y Axis Type

Value parameters

b

JavaFX ScatterChart

Attributes

Returns

ScalaFX ScatterChart

Inherited from:
ChartIncludes
implicit def jfxScene2sfx(v: Scene): Scene

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/Scene.html Scene]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/Scene.html Scene]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Scene

Attributes

Returns

ScalaFX Scene

Inherited from:
LowerPriorityIncludes
implicit def jfxSceneAntialiasing2sfx(v: SceneAntialiasing): SceneAntialiasing

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/SceneAntialiasing.html SceneAntialiasing]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/SceneAntialiasing.html SceneAntialiasing]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX SceneAntialiasing

Attributes

Returns

ScalaFX SceneAntialiasing

Throws
java.lang.IllegalArgumentException

if v has no known correspondence in ScalaFX.

Inherited from:
LowerPriorityIncludes

Generates a SceneProperty from a JavaFX Scene.

Generates a SceneProperty from a JavaFX Scene.

Value parameters

p

A ScalaFX scalafx.beans.property.ReadOnlyObjectProperty containing a JavaFX Scene.

Attributes

Returns

ScalaFX SceneProperty

Inherited from:
LowerPriorityIncludes
implicit def jfxScheduledService2sfxScheduledService[T](s: ScheduledService[T]): ScheduledService[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/concurrent/ScheduledService.html ScheduledService]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/concurrent/ScheduledService.html ScheduledService]] instance to its ScalaFX counterpart.

Value parameters

s

JavaFX ScheduledService

Attributes

Returns

ScalaFX ScheduledService

Inherited from:
ConcurrentIncludes
implicit def jfxScreen2sfx(s: Screen): Screen

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Screen.html Screen]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Screen.html Screen]] instance to its ScalaFX counterpart.

Value parameters

s

JavaFX Screen

Attributes

Returns

ScalaFX Screen

Inherited from:
StageIncludes
implicit def jfxScrollBar2sfx(s: ScrollBar): ScrollBar

Converts a JavaFX ScrollBar instance to its ScalaFX counterpart.

Converts a JavaFX ScrollBar instance to its ScalaFX counterpart.

Value parameters

s

JavaFX ScrollBar

Attributes

Returns

ScalaFX ScrollBar

Inherited from:
ControlIncludes
implicit def jfxScrollEvent2sfx(se: ScrollEvent): ScrollEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ScrollEvent.html ScrollEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ScrollEvent.html ScrollEvent]] instance to its ScalaFX counterpart.

Value parameters

se

JavaFX ScrollEvent

Attributes

Returns

ScalaFX ScrollEvent

Inherited from:
InputIncludes
implicit def jfxScrollEventHorizontalTextScrollUnits2sfx(h: HorizontalTextScrollUnits): HorizontalTextScrollUnits

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ScrollEvent.HorizontalTextScrollUnits.html ScrollEvent.HorizontalTextScrollUnits]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ScrollEvent.HorizontalTextScrollUnits.html ScrollEvent.HorizontalTextScrollUnits]] instance to its ScalaFX counterpart.

Value parameters

h

JavaFX ScrollEvent.HorizontalTextScrollUnits

Attributes

Returns

ScalaFX ScrollEvent.HorizontalTextScrollUnits

Inherited from:
InputIncludes
implicit def jfxScrollEventVerticalTextScrollUnits2sfx(v: VerticalTextScrollUnits): VerticalTextScrollUnits

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ScrollEvent.VerticalTextScrollUnits.html ScrollEvent.VerticalTextScrollUnits]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ScrollEvent.VerticalTextScrollUnits.html ScrollEvent.VerticalTextScrollUnits]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX ScrollEvent.VerticalTextScrollUnits

Attributes

Returns

ScalaFX ScrollEvent.VerticalTextScrollUnits

Inherited from:
InputIncludes
implicit def jfxScrollPane2sfx(s: ScrollPane): ScrollPane

Converts a JavaFX ScrollPane instance to its ScalaFX counterpart.

Converts a JavaFX ScrollPane instance to its ScalaFX counterpart.

Value parameters

s

JavaFX ScrollPane

Attributes

Returns

ScalaFX ScrollPane

Inherited from:
ControlIncludes
implicit def jfxScrollPaneScrollBarPolicy2sfx(s: ScrollBarPolicy): ScrollBarPolicy

Converts a JavaFX ScrollPane.ScrollBarPolicy instance to its ScalaFX counterpart.

Converts a JavaFX ScrollPane.ScrollBarPolicy instance to its ScalaFX counterpart.

Value parameters

s

JavaFX ScrollPane.ScrollBarPolicy

Attributes

Returns

ScalaFX ScrollPane.ScrollBarPolicy

Inherited from:
ControlIncludes
implicit def jfxScrollToEvent2sfx[T](ev: ScrollToEvent[T]): ScrollToEvent[T]

Converts a JavaFX ScrollToEvent instance to its ScalaFX counterpart.

Converts a JavaFX ScrollToEvent instance to its ScalaFX counterpart.

Value parameters

ev

JavaFX ScrollToEvent

Attributes

Returns

ScalaFX ScrollToEvent

Inherited from:
ControlIncludes
implicit def jfxSelectionMode2sfx(e: SelectionMode): SelectionMode

Converts a JavaFX SelectionMode instance to its ScalaFX counterpart.

Converts a JavaFX SelectionMode instance to its ScalaFX counterpart.

Value parameters

e

JavaFX SelectionMode

Attributes

Returns

ScalaFX SelectionMode

Inherited from:
ControlIncludes
implicit def jfxSelectionModel2sfx[T](v: SelectionModel[T]): SelectionModel[T]

Converts a JavaFX SelectionModel instance to its ScalaFX counterpart.

Converts a JavaFX SelectionModel instance to its ScalaFX counterpart.

Type parameters

T

The type of the SelectionModel

Value parameters

v

JavaFX SelectionModel

Attributes

Returns

ScalaFX SelectionModel

Inherited from:
ControlIncludes
implicit def jfxSeparator2sfx(s: Separator): Separator

Converts a JavaFX Separator instance to its ScalaFX counterpart.

Converts a JavaFX Separator instance to its ScalaFX counterpart.

Value parameters

s

JavaFX Separator

Attributes

Returns

ScalaFX Separator

Inherited from:
ControlIncludes
implicit def jfxSeparatorMenuItem2sfx(s: SeparatorMenuItem): SeparatorMenuItem

Converts a JavaFX SeparatorMenuItem instance to its ScalaFX counterpart.

Converts a JavaFX SeparatorMenuItem instance to its ScalaFX counterpart.

Value parameters

s

JavaFX SeparatorMenuItem

Attributes

Returns

ScalaFX SeparatorMenuItem

Inherited from:
ControlIncludes
implicit def jfxSepiaTone2sfx(st: SepiaTone): SepiaTone

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/SepiaTone.html SepiaTone]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/SepiaTone.html SepiaTone]] instance to its ScalaFX counterpart.

Value parameters

st

JavaFX SepiaTone

Attributes

Returns

ScalaFX SepiaTone

Inherited from:
EffectIncludes
implicit def jfxSequentialTransition2sfx(v: SequentialTransition): SequentialTransition

Generates a ScalaFX SequentialTransition from its JavaFX counterparty.

Generates a ScalaFX SequentialTransition from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxService2sfxService[T](s: Service[T]): Service[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/concurrent/Service.html Service]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/concurrent/Service.html Service]] instance to its ScalaFX counterpart.

Value parameters

s

JavaFX Service

Attributes

Returns

ScalaFX Service

Inherited from:
ConcurrentIncludes
implicit def jfxSetBinding2sfx[E](v: SetBinding[E]): SetBinding[E]

Attributes

Inherited from:
BindingIncludes
implicit def jfxSetExpression2sfx[E](v: SetExpression[E]): SetExpression[E]

Attributes

Inherited from:
BindingIncludes
implicit def jfxSetProperty2sfx[E](p: SetProperty[E]): SetProperty[E]

Attributes

Inherited from:
PropertyIncludes
implicit def jfxShadow2sfx(s: Shadow): Shadow

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Shadow.html Shadow]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/effect/Shadow.html Shadow]] instance to its ScalaFX counterpart.

Value parameters

s

JavaFX Shadow

Attributes

Returns

ScalaFX Shadow

Inherited from:
EffectIncludes
implicit def jfxShape2sfx(s: Shape): Shape

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Shape.html Shape]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Shape.html Shape]] instance to its ScalaFX counterpart.

Value parameters

s

JavaFX Shape

Attributes

Returns

ScalaFX Shape

Inherited from:
ShapeIncludes
implicit def jfxShape3D2sfx(s: Shape3D): Shape3D

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Shape3D.html Shape3D]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/Shape3D.html Shape3D]] instance to its ScalaFX counterpart.

Value parameters

s

JavaFX Shape3D

Attributes

Returns

ScalaFX Shape3D

Inherited from:
ShapeIncludes
implicit def jfxShear2sfx(v: Shear): Shear

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Shear.html Shear]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Shear.html Shear]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Shear

Attributes

Returns

ScalaFX Shear

Inherited from:
TransformIncludes
implicit def jfxShortStringConverter2sfx(c: ShortStringConverter): ShortStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/ShortStringConverter.html ShortStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/ShortStringConverter.html ShortStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX ShortStringConverter

Attributes

Returns

ScalaFX ShortStringConverter

Inherited from:
ConverterIncludes
implicit def jfxSide2sfx(e: Side): Side

Converts a `javafx.geometry.Side` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.Side` instance to its ScalaFX counterpart.

Value parameters

e

JavaFX Side

Attributes

Returns

ScalaFX Side

Inherited from:
GeometryIncludes
implicit def jfxSingleSelectionModel2sfx[T](v: SingleSelectionModel[T]): SingleSelectionModel[T]

Converts a JavaFX SingleSelectionModel instance to its ScalaFX counterpart.

Converts a JavaFX SingleSelectionModel instance to its ScalaFX counterpart.

Type parameters

T

The type of the SingleSelectionModel

Value parameters

v

JavaFX SingleSelectionModel

Attributes

Returns

ScalaFX SingleSelectionModel

Inherited from:
ControlIncludes
implicit def jfxSkin2sfxSkin[C <: Skinnable](s: Skin[C]): Skin[C]

Converts a JavaFX Skin instance to its ScalaFX counterpart.

Converts a JavaFX Skin instance to its ScalaFX counterpart.

Type parameters

C

The type of the Skin

Value parameters

s

JavaFX Skin

Attributes

Returns

ScalaFX Skin

Inherited from:
ControlIncludes
implicit def jfxSkinBase2sfx[C <: Control](sb: SkinBase[C]): SkinBase[C]

Converts a JavaFX SkinBase instance to its ScalaFX counterpart.

Converts a JavaFX SkinBase instance to its ScalaFX counterpart.

Value parameters

sb

JavaFX SkinBase

Attributes

Returns

ScalaFX SkinBase

Inherited from:
ControlIncludes
implicit def jfxSkinnable2sfxSkinnable(s: Skinnable): Skinnable

Converts a JavaFX Skinnable instance to its ScalaFX counterpart.

Converts a JavaFX Skinnable instance to its ScalaFX counterpart.

Value parameters

s

JavaFX Skinnable

Attributes

Returns

ScalaFX Skinnable

Inherited from:
ControlIncludes
implicit def jfxSlider2sfx(s: Slider): Slider

Converts a JavaFX Slider instance to its ScalaFX counterpart.

Converts a JavaFX Slider instance to its ScalaFX counterpart.

Value parameters

s

JavaFX Slider

Attributes

Returns

ScalaFX Slider

Inherited from:
ControlIncludes
implicit def jfxSnapshotParameters2sfx(sp: SnapshotParameters): SnapshotParameters

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/SnapshotParameters.html SnapshotParameters]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/SnapshotParameters.html SnapshotParameters]] instance to its ScalaFX counterpart.

Value parameters

sp

JavaFX SnapshotParameters

Attributes

Returns

ScalaFX SnapshotParameters

Inherited from:
LowerPriorityIncludes
implicit def jfxSortEvent2sfx[C](se: SortEvent[C]): SortEvent[C]

Converts a JavaFX SortEvent instance to its ScalaFX counterpart.

Converts a JavaFX SortEvent instance to its ScalaFX counterpart.

Type parameters

C

The type of the SortEvent

Value parameters

se

JavaFX SortEvent

Attributes

Returns

ScalaFX SortEvent

Inherited from:
ControlIncludes
implicit def jfxSortType2sfx(st: SortType): SortType

Converts a JavaFX TableColumn.SortType instance to its ScalaFX counterpart.

Converts a JavaFX TableColumn.SortType instance to its ScalaFX counterpart.

Value parameters

st

JavaFX TableColumn.SortType

Attributes

Returns

ScalaFX TableColumn.SortType

Inherited from:
ControlIncludes
implicit def jfxSphere2sfx(s: Sphere): Sphere

Attributes

Inherited from:
ShapeIncludes
implicit def jfxSpinner2sfx[T](ev: Spinner[T]): Spinner[T]

Attributes

Inherited from:
ControlIncludes
implicit def jfxSpinnerValueFactory2sfx[T](ev: SpinnerValueFactory[T]): SpinnerValueFactory[T]

Attributes

Inherited from:
ControlIncludes
implicit def jfxSplitMenuButton2sfx(h: SplitMenuButton): SplitMenuButton

Converts a JavaFX SplitMenuButton instance to its ScalaFX counterpart.

Converts a JavaFX SplitMenuButton instance to its ScalaFX counterpart.

Value parameters

h

JavaFX SplitMenuButton

Attributes

Returns

ScalaFX SplitMenuButton

Inherited from:
ControlIncludes
implicit def jfxSplitPane2sfx(s: SplitPane): SplitPane

Converts a JavaFX SplitPane instance to its ScalaFX counterpart.

Converts a JavaFX SplitPane instance to its ScalaFX counterpart.

Value parameters

s

JavaFX SplitPane

Attributes

Returns

ScalaFX SplitPane

Inherited from:
ControlIncludes
implicit def jfxSplitPaneDivider2sfx(d: Divider): Divider

Converts a JavaFX SplitPane.Divider instance to its ScalaFX counterpart.

Converts a JavaFX SplitPane.Divider instance to its ScalaFX counterpart.

Value parameters

d

JavaFX SplitPane.Divider

Attributes

Returns

ScalaFX SplitPane.Divider

Inherited from:
ControlIncludes
implicit def jfxStackPane2sfx(v: StackPane): StackPane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/StackPane.html StackPane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/StackPane.html StackPane]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX StackPane

Attributes

Returns

ScalaFX StackPane

Inherited from:
LayoutIncludes
implicit def jfxStackedAreaChart2sfx[X, Y](b: StackedAreaChart[X, Y]): StackedAreaChart[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/StackedAreaChart.html StackedAreaChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/StackedAreaChart.html StackedAreaChart]] instance to its ScalaFX counterpart.

Type parameters

X

X Axis Type

Y

Y Axis Type

Value parameters

b

JavaFX StackedAreaChart

Attributes

Returns

ScalaFX StackedAreaChart

Inherited from:
ChartIncludes
implicit def jfxStackedBarChart2sfx[X, Y](b: StackedBarChart[X, Y]): StackedBarChart[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/StackedBarChart.html StackedBarChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/StackedBarChart.html StackedBarChart]] instance to its ScalaFX counterpart.

Type parameters

X

X Axis Type

Y

Y Axis Type

Value parameters

b

JavaFX StackedBarChart

Attributes

Returns

ScalaFX StackedBarChart

Inherited from:
ChartIncludes
implicit def jfxStage2sfx(s: Stage): Stage

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Stage.html Stage]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Stage.html Stage]] instance to its ScalaFX counterpart.

Value parameters

s

JavaFX Stage

Attributes

Returns

ScalaFX Stage

Inherited from:
StageIncludes
implicit def jfxStageStyle2sfx(e: StageStyle): StageStyle

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/StageStyle.html StageStyle]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/StageStyle.html StageStyle]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX StageStyle

Attributes

Returns

ScalaFX StageStyle

Inherited from:
StageIncludes
implicit def jfxStop2sfx(c: Stop): Stop

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/Stop.html Stop]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/paint/Stop.html Stop]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX Stop

Attributes

Returns

ScalaFX Stop

Inherited from:
PaintIncludes
implicit def jfxStringBinding2sfx(sb: StringBinding): StringBinding

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/StringBinding.html StringBinding]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/StringBinding.html StringBinding]] instance to its ScalaFX counterpart.

Value parameters

sb

JavaFX StringBinding

Attributes

Returns

ScalaFX StringBinding

Inherited from:
BindingIncludes
implicit def jfxStringConverter2sfx[T](c: StringConverter[T]): StringConverter[T]

Converts a `javafx.util.StringConverter` instance to its ScalaFX counterpart.

Converts a `javafx.util.StringConverter` instance to its ScalaFX counterpart.

Type parameters

T

StringConverter Type

Value parameters

c

JavaFX StringConverter

Attributes

Returns

ScalaFX StringConverter

Inherited from:
UtilIncludes
implicit def jfxStringExpression2sfx(se: StringExpression): StringExpression

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/StringExpression.html StringExpression]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/beans/binding/StringExpression.html StringExpression]] instance to its ScalaFX counterpart.

Value parameters

se

JavaFX StringExpression

Attributes

Returns

ScalaFX StringExpression

Inherited from:
BindingIncludes
implicit def jfxStringProperty2sfx(p: StringProperty): StringProperty

Converts a `javafx.beans.property.StringProperty` instance to its ScalaFX counterpart.

Converts a `javafx.beans.property.StringProperty` instance to its ScalaFX counterpart.

Value parameters

p

JavaFX StringProperty

Attributes

Returns

ScalaFX StringProperty

Inherited from:
PropertyIncludes
implicit def jfxStrokeLineCap2sfx(e: StrokeLineCap): StrokeLineCap

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/StrokeLineCap.html StrokeLineCap]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/StrokeLineCap.html StrokeLineCap]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX StrokeLineCap

Attributes

Returns

ScalaFX StrokeLineCap

Inherited from:
ShapeIncludes
implicit def jfxStrokeLineJoin2sfx(e: StrokeLineJoin): StrokeLineJoin

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/StrokeLineJoin.html StrokeLineJoin]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/StrokeLineJoin.html StrokeLineJoin]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX StrokeLineJoin

Attributes

Returns

ScalaFX StrokeLineJoin

Inherited from:
ShapeIncludes
implicit def jfxStrokeTransition2sfx(v: StrokeTransition): StrokeTransition

Generates a ScalaFX StrokeTransition from its JavaFX counterparty.

Generates a ScalaFX StrokeTransition from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxStrokeType2sfx(e: StrokeType): StrokeType

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/StrokeType.html StrokeType]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/StrokeType.html StrokeType]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX StrokeType

Attributes

Returns

ScalaFX StrokeType

Inherited from:
ShapeIncludes
implicit def jfxStyleConverter2sfx[F, T](sc: StyleConverter[F, T]): StyleConverter[F, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/css/StyleConverter.html StyleConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/css/StyleConverter.html StyleConverter]] instance to its ScalaFX counterpart.

Value parameters

sc

JavaFX StyleConverter

Attributes

Returns

ScalaFX StyleConverter

Inherited from:
CssIncludes
implicit def jfxStyleOrigin2sfx(o: StyleOrigin): StyleOrigin

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/css/StyleOrigin.html StyleOrigin]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/css/StyleOrigin.html StyleOrigin]] instance to its ScalaFX counterpart.

Value parameters

o

JavaFX StyleOrigin

Attributes

Returns

ScalaFX StyleOrigin

Inherited from:
CssIncludes
implicit def jfxStyleable2sfx(s: Styleable): Styleable

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/css/Styleable.html Styleable]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/css/Styleable.html Styleable]] instance to its ScalaFX counterpart.

Value parameters

s

JavaFX Styleable

Attributes

Returns

ScalaFX Styleable

Inherited from:
CssIncludes
implicit def jfxSubScene2sfx(v: SubScene): SubScene

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/SubScene.html SubScene]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/SubScene.html SubScene]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX SubScene

Attributes

Returns

ScalaFX SubScene

Inherited from:
LowerPriorityIncludes
implicit def jfxSubscription2sfx(s: Subscription): Subscription

Attributes

Inherited from:
UtilIncludes
implicit def jfxSubtitleTrack2sfx(st: SubtitleTrack): SubtitleTrack

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/SubtitleTrack.html SubtitleTrack]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/SubtitleTrack.html SubtitleTrack]] instance to its ScalaFX counterpart.

Value parameters

st

JavaFX SubtitleTrack

Attributes

Returns

ScalaFX SubtitleTrack

Inherited from:
MediaIncludes
implicit def jfxSwingNode2sfx(n: SwingNode): SwingNode

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/embed/swing/SwingNode$.html SwingNode]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/embed/swing/SwingNode$.html SwingNode]] instance to its ScalaFX counterpart.

Value parameters

n

JavaFX SwingNode

Attributes

Returns

ScalaFX SwingNode

Inherited from:
SwingIncludes
implicit def jfxSwipeEvent2sfx(se: SwipeEvent): SwipeEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/SwipeEvent.html SwipeEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/SwipeEvent.html SwipeEvent]] instance to its ScalaFX counterpart.

Value parameters

se

JavaFX SwipeEvent

Attributes

Returns

ScalaFX SwipeEvent

Inherited from:
InputIncludes
implicit def jfxTab2sfx(v: Tab): Tab

Converts a JavaFX Tab instance to its ScalaFX counterpart.

Converts a JavaFX Tab instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Tab

Attributes

Returns

ScalaFX Tab

Inherited from:
ControlIncludes
implicit def jfxTabClosingPolicy2sfx(v: TabClosingPolicy): TabClosingPolicy

Converts a JavaFX TabPane.TabClosingPolicy instance to its ScalaFX counterpart.

Converts a JavaFX TabPane.TabClosingPolicy instance to its ScalaFX counterpart.

Value parameters

v

JavaFX TabPane.TabClosingPolicy

Attributes

Returns

ScalaFX TabPane.TabClosingPolicy

Inherited from:
ControlIncludes
implicit def jfxTabPane2sfx(v: TabPane): TabPane

Converts a JavaFX TabPane instance to its ScalaFX counterpart.

Converts a JavaFX TabPane instance to its ScalaFX counterpart.

Value parameters

v

JavaFX TabPane

Attributes

Returns

ScalaFX TabPane

Inherited from:
ControlIncludes
implicit def jfxTableCell2sfx[S, T](tc: TableCell[S, T]): TableCell[S, T]

Converts a JavaFX TableCell instance to its ScalaFX counterpart.

Converts a JavaFX TableCell instance to its ScalaFX counterpart.

Type parameters

T

The type of the TableCell

Value parameters

tc

JavaFX TableCell

Attributes

Returns

ScalaFX TableCell

Inherited from:
ControlIncludes
implicit def jfxTableColumn2sfx[S, T](tc: TableColumn[S, T]): TableColumn[S, T]

Converts a JavaFX TableColumn instance to its ScalaFX counterpart.

Converts a JavaFX TableColumn instance to its ScalaFX counterpart.

Type parameters

T

The type of the TableColumn

Value parameters

tc

JavaFX TableColumn

Attributes

Returns

ScalaFX TableColumn

Inherited from:
ControlIncludes
implicit def jfxTableColumnBase2sfx[S, T](tbcb: TableColumnBase[S, T]): TableColumnBase[S, T]

Converts a JavaFX TableColumnBase instance to its ScalaFX counterpart.

Converts a JavaFX TableColumnBase instance to its ScalaFX counterpart.

Type parameters

S

The type of the content in all cells in this table column.

T

The type of the UI control (e.g. the type of the 'row').

Value parameters

tbcb

JavaFX TableColumnBase

Attributes

Returns

ScalaFX TableColumnBase

Inherited from:
ControlIncludes
implicit def jfxTableFocusModel2sfx[T, TC <: TableColumnBase[T, _]](tfm: TableFocusModel[T, TC]): TableFocusModel[T, TC]

Converts a JavaFX TableFocusModel instance to its ScalaFX counterpart.

Converts a JavaFX TableFocusModel instance to its ScalaFX counterpart.

Type parameters

T

The type of the underlying data model for the UI control.

TC

The concrete subclass of scalafx.scene.control.TableColumnBase that is used by the underlying UI control (e.g. scalafx.scene.control.TableColumn or TreeTableColumn).

Value parameters

tfm

JavaFX TableFocusModel

Attributes

Returns

ScalaFX TableFocusModel

Since

8.0

Inherited from:
ControlIncludes
implicit def jfxTablePosition2sfx[S, T](tp: TablePosition[S, T]): TablePosition[S, T]

Converts a JavaFX TablePosition instance to its ScalaFX counterpart.

Converts a JavaFX TablePosition instance to its ScalaFX counterpart.

Type parameters

T

The type of the TablePosition

Value parameters

tp

JavaFX TablePosition

Attributes

Returns

ScalaFX TablePosition

Inherited from:
ControlIncludes
implicit def jfxTablePositionBase2sfx[TC <: TableColumnBase[_, _]](tpb: TablePositionBase[TC]): TablePositionBase[TC]

Converts a JavaFX TablePositionBase instance to its ScalaFX counterpart.

Converts a JavaFX TablePositionBase instance to its ScalaFX counterpart.

Type parameters

TC

The type of the TablePositionBase

Value parameters

tpb

JavaFX TablePositionBase

Attributes

Returns

ScalaFX TablePositionBase

Since

8.0

Inherited from:
ControlIncludes
implicit def jfxTableRow2sfx[T](tr: TableRow[T]): TableRow[T]

Converts a JavaFX TableRow instance to its ScalaFX counterpart.

Converts a JavaFX TableRow instance to its ScalaFX counterpart.

Type parameters

T

The type of the TableRow

Value parameters

tr

JavaFX TableRow

Attributes

Returns

ScalaFX TableRow

Inherited from:
ControlIncludes
implicit def jfxTableSelectionModel2sfx[T](tsm: TableSelectionModel[T]): TableSelectionModel[T]

Converts a JavaFX TableSelectionModel instance to its ScalaFX counterpart.

Converts a JavaFX TableSelectionModel instance to its ScalaFX counterpart.

Type parameters

T

The type of the TableSelectionModel

Value parameters

tsm

JavaFX TableSelectionModel

Attributes

Returns

ScalaFX TableSelectionModel

Inherited from:
ControlIncludes
implicit def jfxTableView2sfx[S](tv: TableView[S]): TableView[S]

Converts a JavaFX TableView instance to its ScalaFX counterpart.

Converts a JavaFX TableView instance to its ScalaFX counterpart.

Type parameters

S

The type of the TableView

Value parameters

tv

JavaFX TableView

Attributes

Returns

ScalaFX TableView

Inherited from:
ControlIncludes
implicit def jfxTableViewFocusModel2sfx[S](tvfm: TableViewFocusModel[S]): TableViewFocusModel[S]

Converts a JavaFX TableView.TableViewFocusModel instance to its ScalaFX counterpart.

Converts a JavaFX TableView.TableViewFocusModel instance to its ScalaFX counterpart.

Type parameters

S

The type of the TableView.TableViewFocusModel

Value parameters

tvfm

JavaFX TableView.TableViewFocusModel

Attributes

Returns

ScalaFX TableView.TableViewFocusModel

Inherited from:
ControlIncludes
implicit def jfxTableViewSelectionModel2sfx[S](tvsm: TableViewSelectionModel[S]): TableViewSelectionModel[S]

Converts a JavaFX TableView.TableViewSelectionModel instance to its ScalaFX counterpart.

Converts a JavaFX TableView.TableViewSelectionModel instance to its ScalaFX counterpart.

Type parameters

S

The type of the TableView.TableViewSelectionModel

Value parameters

tvsm

JavaFX TableView.TableViewSelectionModel

Attributes

Returns

ScalaFX TableView.TableViewSelectionModel

Inherited from:
ControlIncludes
implicit def jfxTask2sfxTask[T](t: Task[T]): Task[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/concurrent/Task.html Task]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/concurrent/Task.html Task]] instance to its ScalaFX counterpart.

Value parameters

t

JavaFX Task

Attributes

Returns

ScalaFX Task

Inherited from:
ConcurrentIncludes
implicit def jfxText2sfxText(t: Text): Text

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/Text.html Text]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/Text.html Text]] instance to its ScalaFX counterpart.

Value parameters

t

JavaFX Text

Attributes

Returns

ScalaFX Text

Inherited from:
TextIncludes
implicit def jfxTextAlignment2sfx(e: TextAlignment): TextAlignment

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/TextAlignment.html TextAlignment]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/TextAlignment.html TextAlignment]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX TextAlignment

Attributes

Returns

ScalaFX TextAlignment

Inherited from:
TextIncludes
implicit def jfxTextArea2sfx(t: TextArea): TextArea

Converts a JavaFX TextArea instance to its ScalaFX counterpart.

Converts a JavaFX TextArea instance to its ScalaFX counterpart.

Value parameters

t

JavaFX TextArea

Attributes

Returns

ScalaFX TextArea

Inherited from:
ControlIncludes
implicit def jfxTextBoundsType2sfx(e: TextBoundsType): TextBoundsType

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/TextBoundsType.html TextBoundsType]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/text/TextBoundsType.html TextBoundsType]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX TextBoundsType

Attributes

Returns

ScalaFX TextBoundsType

Inherited from:
TextIncludes
implicit def jfxTextField2sfx(v: TextField): TextField

Converts a JavaFX TextField instance to its ScalaFX counterpart.

Converts a JavaFX TextField instance to its ScalaFX counterpart.

Value parameters

v

JavaFX TextField

Attributes

Returns

ScalaFX TextField

Inherited from:
ControlIncludes
implicit def jfxTextFieldListCell2sfx[T](cell: TextFieldListCell[T]): TextFieldListCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/TextFieldListCell.html TextFieldListCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/TextFieldListCell.html TextFieldListCell]] instance to its ScalaFX counterpart.

Type parameters

T

The type of the elements contained within the Element

Value parameters

cell

JavaFX TextFieldListCell

Attributes

Returns

ScalaFX TextFieldListCell

Inherited from:
CellIncludes

Converts a JavaFX TextField to a TextFieldProperty.

Converts a JavaFX TextField to a TextFieldProperty.

Value parameters

p

A ReadOnlyObjectProperty containing a TextField

Attributes

Returns

a new TextFieldProperty

Inherited from:
ControlIncludes
implicit def jfxTextFieldTableCell2sfx[S, T](cell: TextFieldTableCell[S, T]): TextFieldTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/TextFieldTableCell.html TextFieldTableCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/TextFieldTableCell.html TextFieldTableCell]] instance to its ScalaFX counterpart.

Type parameters

S

The type of the elements contained ...

T

The type of the elements contained within the Element

Value parameters

cell

JavaFX TextFieldTableCell

Attributes

Returns

ScalaFX TextFieldTableCell

Inherited from:
CellIncludes
implicit def jfxTextFieldTreeCell2sfx[T](cell: TextFieldTreeCell[T]): TextFieldTreeCell[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/TextFieldTreeCell.html TextFieldTreeCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/TextFieldTreeCell.html TextFieldTreeCell]] instance to its ScalaFX counterpart.

Type parameters

T

The type of the elements contained within the Element

Value parameters

cell

JavaFX TextFieldTreeCell

Attributes

Returns

ScalaFX TextFieldTreeCell

Inherited from:
CellIncludes
implicit def jfxTextFieldTreeTableCell2sfx[S, T](cell: TextFieldTreeTableCell[S, T]): TextFieldTreeTableCell[S, T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/TextFieldTreeTableCell.html TextFieldTreeTableCell]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/cell/TextFieldTreeTableCell.html TextFieldTreeTableCell]] instance to its ScalaFX counterpart.

Type parameters

T

The type of the elements contained within the Element

Value parameters

cell

JavaFX TextFieldTreeTableCell

Attributes

Returns

ScalaFX TextFieldTreeTableCell

Inherited from:
CellIncludes
implicit def jfxTextFlow2sfx(tf: TextFlow): TextFlow

Attributes

Inherited from:
TextIncludes
implicit def jfxTextFormatter2sfx[V](t: TextFormatter[V]): TextFormatter[V]

Attributes

Inherited from:
ControlIncludes
implicit def jfxTextFormatterChange2sfx(t: Change): Change

Attributes

Inherited from:
ControlIncludes
implicit def jfxTextInputControl2sfx(t: TextInputControl): TextInputControl

Converts a JavaFX TextInputControl instance to its ScalaFX counterpart.

Converts a JavaFX TextInputControl instance to its ScalaFX counterpart.

Value parameters

t

JavaFX TextInputControl

Attributes

Returns

ScalaFX TextInputControl

Inherited from:
ControlIncludes
implicit def jfxTextInputDialog2sfx(v: TextInputDialog): TextInputDialog

Attributes

Inherited from:
ControlIncludes
implicit def jfxTilePane2sfx(v: TilePane): TilePane

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/TilePane.html TilePane]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/TilePane.html TilePane]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX TilePane

Attributes

Returns

ScalaFX TilePane

Inherited from:
LayoutIncludes
implicit def jfxTimeStringConverter2sfx(c: TimeStringConverter): TimeStringConverter

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/TimeStringConverter.html TimeStringConverter]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/util/converter/TimeStringConverter.html TimeStringConverter]] instance to its ScalaFX counterpart.

Value parameters

c

JavaFX TimeStringConverter

Attributes

Returns

ScalaFX TimeStringConverter

Inherited from:
ConverterIncludes
implicit def jfxTimeline2sfx(v: Timeline): Timeline

Generates a ScalaFX Timeline from its JavaFX counterparty.

Generates a ScalaFX Timeline from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxTitledPane2sfx(t: TitledPane): TitledPane

Converts a JavaFX TitledPane instance to its ScalaFX counterpart.

Converts a JavaFX TitledPane instance to its ScalaFX counterpart.

Value parameters

t

JavaFX TitledPane

Attributes

Returns

ScalaFX TitledPane

Inherited from:
ControlIncludes
implicit def jfxToggle2sfx(t: Toggle): Toggle

Converts a JavaFX Toggle instance to its ScalaFX counterpart.

Converts a JavaFX Toggle instance to its ScalaFX counterpart.

Value parameters

t

JavaFX Toggle

Attributes

Returns

ScalaFX Toggle

Inherited from:
ControlIncludes
implicit def jfxToggleButton2sfx(tb: ToggleButton): ToggleButton

Converts a JavaFX ToggleButton instance to its ScalaFX counterpart.

Converts a JavaFX ToggleButton instance to its ScalaFX counterpart.

Value parameters

tb

JavaFX ToggleButton

Attributes

Returns

ScalaFX ToggleButton

Inherited from:
ControlIncludes
implicit def jfxToggleGroup2sfx(tg: ToggleGroup): ToggleGroup

Converts a JavaFX ToggleGroup instance to its ScalaFX counterpart.

Converts a JavaFX ToggleGroup instance to its ScalaFX counterpart.

Value parameters

tg

JavaFX ToggleGroup

Attributes

Returns

ScalaFX ToggleGroup

Inherited from:
ControlIncludes
implicit def jfxToolBar2sfx(t: ToolBar): ToolBar

Converts a JavaFX ToolBar instance to its ScalaFX counterpart.

Converts a JavaFX ToolBar instance to its ScalaFX counterpart.

Value parameters

t

JavaFX ToolBar

Attributes

Returns

ScalaFX ToolBar

Inherited from:
ControlIncludes
implicit def jfxTooltip2sfx(t: Tooltip): Tooltip

Converts a JavaFX Tooltip instance to its ScalaFX counterpart.

Converts a JavaFX Tooltip instance to its ScalaFX counterpart.

Value parameters

t

JavaFX Tooltip

Attributes

Returns

ScalaFX Tooltip

Inherited from:
ControlIncludes
implicit def jfxTouchEvent2sfx(te: TouchEvent): TouchEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/TouchEvent.html TouchEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/TouchEvent.html TouchEvent]] instance to its ScalaFX counterpart.

Value parameters

te

JavaFX TouchEvent

Attributes

Returns

ScalaFX TouchEvent

Inherited from:
InputIncludes
implicit def jfxTouchPoint2sfx(tp: TouchPoint): TouchPoint

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/TouchPoint.html TouchPoint]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/TouchPoint.html TouchPoint]] instance to its ScalaFX counterpart.

Value parameters

tp

JavaFX TouchPoint

Attributes

Returns

ScalaFX TouchPoint

Inherited from:
InputIncludes
implicit def jfxTouchPointState2sfx(s: State): State

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/TouchPoint.State.html TouchPoint.State]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/TouchPoint.State.html TouchPoint.State]] instance to its ScalaFX counterpart.

Value parameters

s

JavaFX TouchPoint.State

Attributes

Returns

ScalaFX TouchPoint.State

Inherited from:
InputIncludes
implicit def jfxTrack2sfx(t: Track): Track

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/Track.html Track]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/Track.html Track]] instance to its ScalaFX counterpart.

Value parameters

t

JavaFX Track

Attributes

Returns

ScalaFX Track

Inherited from:
MediaIncludes
implicit def jfxTransferMode2sfx(e: TransferMode): TransferMode

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/TransferMode.html TransferMode]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/TransferMode.html TransferMode]] instance to its ScalaFX counterpart.

Value parameters

e

JavaFX TransferMode

Attributes

Returns

ScalaFX TransferMode

Inherited from:
InputIncludes
implicit def jfxTransform2sfx(v: Transform): Transform

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Transform.html Transform]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Transform.html Transform]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Transform

Attributes

Returns

ScalaFX Transform

Inherited from:
TransformIncludes
implicit def jfxTransformChangedEvent2sfx(v: TransformChangedEvent): TransformChangedEvent

Attributes

Inherited from:
TransformIncludes
implicit def jfxTransition2sfx(v: Transition): Transition

Generates a ScalaFX Transition from its JavaFX counterparty.

Generates a ScalaFX Transition from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxTranslate2sfx(v: Translate): Translate

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Translate.html Translate]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/transform/Translate.html Translate]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX Translate

Attributes

Returns

ScalaFX Translate

Inherited from:
TransformIncludes
implicit def jfxTranslateTransition2sfx(v: TranslateTransition): TranslateTransition

Generates a ScalaFX TranslateTransition from its JavaFX counterparty.

Generates a ScalaFX TranslateTransition from its JavaFX counterparty.

Attributes

Inherited from:
AnimationIncludes
implicit def jfxTreeCell2sfx[T](t: TreeCell[T]): TreeCell[T]

Converts a JavaFX TreeCell instance to its ScalaFX counterpart.

Converts a JavaFX TreeCell instance to its ScalaFX counterpart.

Type parameters

T

The type of the TreeCell

Value parameters

t

JavaFX TreeCell

Attributes

Returns

ScalaFX TreeCell

Inherited from:
ControlIncludes
implicit def jfxTreeCellDataFeatures2sfx[S, T](a: CellDataFeatures[S, T]): CellDataFeatures[S, T]

Attributes

Inherited from:
ControlIncludes
implicit def jfxTreeItem2sfx[T](t: TreeItem[T]): TreeItem[T]

Converts a JavaFX TreeItem instance to its ScalaFX counterpart.

Converts a JavaFX TreeItem instance to its ScalaFX counterpart.

Type parameters

T

The type of the TreeItem

Value parameters

t

JavaFX TreeItem

Attributes

Returns

ScalaFX TreeItem

Inherited from:
ControlIncludes
implicit def jfxTreeModificationEvent2sfx[T](tmi: TreeModificationEvent[T]): TreeModificationEvent[T]

Converts a JavaFX TreeItem.TreeModificationEvent instance to its ScalaFX counterpart.

Converts a JavaFX TreeItem.TreeModificationEvent instance to its ScalaFX counterpart.

Type parameters

T

The type of the TreeItem.TreeModificationEvent

Value parameters

tmi

JavaFX TreeItem.TreeModificationEvent

Attributes

Returns

ScalaFX TreeItem.TreeModificationEvent

Inherited from:
ControlIncludes
implicit def jfxTreeSortMode2sfx(tsm: TreeSortMode): TreeSortMode

Converts a JavaFX TreeSortMode instance to its ScalaFX counterpart.

Converts a JavaFX TreeSortMode instance to its ScalaFX counterpart.

Value parameters

tsm

JavaFX TreeSortMode

Attributes

Returns

ScalaFX TreeSortMode

Since

8.0

Inherited from:
ControlIncludes
implicit def jfxTreeTableCell2sfx[S, T](ttc: TreeTableCell[S, T]): TreeTableCell[S, T]

Converts a JavaFX TreeTableCell instance to its ScalaFX counterpart.

Converts a JavaFX TreeTableCell instance to its ScalaFX counterpart.

Type parameters

S

1st The type of the TreeTableCell

T

2st The type of the TreeTableCell

Value parameters

ttc

JavaFX TreeTableCell

Attributes

Returns

ScalaFX TreeTableCell

Since

8.0

Inherited from:
ControlIncludes
implicit def jfxTreeTableColumn2sfx[S, T](a: TreeTableColumn[S, T]): TreeTableColumn[S, T]

Attributes

Inherited from:
ControlIncludes
implicit def jfxTreeTablePosition2sfx[S, T](ttp: TreeTablePosition[S, T]): TreeTablePosition[S, T]

Converts a JavaFX TreeTablePosition instance to its ScalaFX counterpart.

Converts a JavaFX TreeTablePosition instance to its ScalaFX counterpart.

Type parameters

S

The type of the TreeItem instances contained within the TreeTableView.

T

The type of the items contained within the TreeTableColumn.

Value parameters

ttp

JavaFX TreeTablePosition

Attributes

Returns

ScalaFX TreeTablePosition

Inherited from:
ControlIncludes
implicit def jfxTreeTableRow2sfx[T](ttr: TreeTableRow[T]): TreeTableRow[T]

Converts a JavaFX TreeTableRow instance to its ScalaFX counterpart.

Converts a JavaFX TreeTableRow instance to its ScalaFX counterpart.

Type parameters

T

The type of the TreeTableRow

Value parameters

ttr

JavaFX TreeTableRow

Attributes

Returns

ScalaFX TreeTableRow

Since

8.0

Inherited from:
ControlIncludes
implicit def jfxTreeTableView2sfx[S](a: TreeTableView[S]): TreeTableView[S]

Converts a JavaFX TreeTableView instance to its ScalaFX counterpart.

Converts a JavaFX TreeTableView instance to its ScalaFX counterpart.

Type parameters

S

The type of the TreeItem instances contained within the TreeTableView.

Value parameters

a

JavaFX TreeTableView

Attributes

Returns

ScalaFX TreeTableView

Since

8.0

Inherited from:
ControlIncludes
implicit def jfxTreeTableViewEditEvent2sfx[T](t: EditEvent[T]): EditEvent[T]

Converts a JavaFX TreeTableView instance to its ScalaFX counterpart.

Converts a JavaFX TreeTableView instance to its ScalaFX counterpart.

Type parameters

T

The type of the TreeItem instances contained within the TreeTableView.

Value parameters

t

JavaFX TreeTableView

Attributes

Returns

ScalaFX TreeTableView

Since

8.0

Inherited from:
ControlIncludes
implicit def jfxTreeTableViewFocusModel2sfx[S](ttvfm: TreeTableViewFocusModel[S]): TreeTableViewFocusModel[S]

Converts a JavaFX TreeTableView.TreeTableViewFocusModel instance to its ScalaFX counterpart.

Converts a JavaFX TreeTableView.TreeTableViewFocusModel instance to its ScalaFX counterpart.

Type parameters

S

The type of the TreeItem instances contained within the TreeTableView.

Value parameters

ttvfm

JavaFX TreeTableView.TreeTableViewFocusModel

Attributes

Returns

ScalaFX TreeTableView.TreeTableViewFocusModel

Inherited from:
ControlIncludes
implicit def jfxTreeTableViewResizeFeatures2sfx[S](rf: ResizeFeatures[S]): ResizeFeatures[S]

Converts a JavaFX TreeTableView.EditEvent instance to its ScalaFX counterpart.

Converts a JavaFX TreeTableView.EditEvent instance to its ScalaFX counterpart.

Type parameters

S

The type of the TreeItem instances contained within the TreeTableView.

Value parameters

rf

JavaFX TreeTableView.EditEvent

Attributes

Returns

ScalaFX $TVVE

Inherited from:
ControlIncludes
implicit def jfxTreeTableViewSelectionModel2sfx[S](ttvsm: TreeTableViewSelectionModel[S]): TreeTableViewSelectionModel[S]

Converts a JavaFX TreeTableView.TreeTableViewSelectionModel instance to its ScalaFX counterpart.

Converts a JavaFX TreeTableView.TreeTableViewSelectionModel instance to its ScalaFX counterpart.

Type parameters

S

The type of the TreeItem instances contained within the TreeTableView.

Value parameters

ttvsm

JavaFX TreeTableView.TreeTableViewSelectionModel

Attributes

Returns

ScalaFX TreeTableView.TreeTableViewSelectionModel

Inherited from:
ControlIncludes
implicit def jfxTreeView2sfx[T](t: TreeView[T]): TreeView[T]

Converts a JavaFX TreeView instance to its ScalaFX counterpart.

Converts a JavaFX TreeView instance to its ScalaFX counterpart.

Type parameters

T

The type of the TreeView

Value parameters

t

JavaFX TreeView

Attributes

Returns

ScalaFX TreeView

Inherited from:
ControlIncludes
implicit def jfxTreeViewEditEvent2sfx[T](t: EditEvent[T]): EditEvent[T]

Converts a JavaFX TreeView.EditEvent instance to its ScalaFX counterpart.

Converts a JavaFX TreeView.EditEvent instance to its ScalaFX counterpart.

Type parameters

T

The type of the TreeView.EditEvent

Value parameters

t

JavaFX TreeView.EditEvent

Attributes

Returns

ScalaFX TreeView.EditEvent

Inherited from:
ControlIncludes
implicit def jfxTriangleMesh2sfx(tm: TriangleMesh): TriangleMesh

Attributes

Inherited from:
ShapeIncludes
implicit def jfxType2sfx(t: Type): Type

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelFormat.Type.html PixelFormat.Type]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/PixelFormat.Type.html PixelFormat.Type]] instance to its ScalaFX counterpart.

Value parameters

t

JavaFX PixelFormat.Type

Attributes

Returns

ScalaFX PixelFormat.Type

Inherited from:
ImageIncludes
implicit def jfxVBox2sfx(v: VBox): VBox

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/VBox.html VBox]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/layout/VBox.html VBox]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX VBox

Attributes

Returns

ScalaFX VBox

Inherited from:
LayoutIncludes
implicit def jfxVLineTo2sfx(v: VLineTo): VLineTo

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/VLineTo.html VLineTo]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/shape/VLineTo.html VLineTo]] instance to its ScalaFX counterpart.

Value parameters

v

JavaFX VLineTo

Attributes

Returns

ScalaFX VLineTo

Inherited from:
ShapeIncludes
implicit def jfxVPos2sfx(v: VPos): VPos

Converts a `javafx.geometry.VPos` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.VPos` instance to its ScalaFX counterpart.

Value parameters

v

JavaFX VPos

Attributes

Returns

ScalaFX VPos

Inherited from:
GeometryIncludes
implicit def jfxValueAxis2sfx[X <: Number](a: ValueAxis[X]): ValueAxis[X]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/ValueAxis.html ValueAxis]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/ValueAxis.html ValueAxis]] instance to its ScalaFX counterpart.

Type parameters

X

X Axis Type, derivated from Number.

Value parameters

a

JavaFX ValueAxis

Attributes

Returns

ScalaFX ValueAxis

Inherited from:
ChartIncludes
implicit def jfxVertexFormat2sfx(v: VertexFormat): VertexFormat

Attributes

Inherited from:
ShapeIncludes
implicit def jfxVerticalDirection2sfx(h: VerticalDirection): VerticalDirection

Converts a `javafx.geometry.VerticalDirection` instance to its ScalaFX counterpart.

Converts a `javafx.geometry.VerticalDirection` instance to its ScalaFX counterpart.

Value parameters

h

JavaFX VerticalDirection

Attributes

Returns

ScalaFX VerticalDirection

Inherited from:
GeometryIncludes
implicit def jfxVideoTrack2sfx(vt: VideoTrack): VideoTrack

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/VideoTrack.html VideoTrack]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/media/VideoTrack.html VideoTrack]] instance to its ScalaFX counterpart.

Value parameters

vt

JavaFX VideoTrack

Attributes

Returns

ScalaFX VideoTrack

Inherited from:
MediaIncludes
implicit def jfxWeakEventHandler2sfx[T <: Event](weh: WeakEventHandler[T]): WeakEventHandler[T]

Converts a `javafx.event.WeakEventHandler` instance to its ScalaFX counterpart.

Converts a `javafx.event.WeakEventHandler` instance to its ScalaFX counterpart.

Type parameters

T

Event Type

Value parameters

weh

JavaFX WeakEventHandler

Attributes

Returns

ScalaFX WeakEventHandler

Since

8.0

Inherited from:
EventIncludes
implicit def jfxWebEngine2sfx(we: WebEngine): WebEngine

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/WebEngine.html WebEngine]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/WebEngine.html WebEngine]] instance to its ScalaFX counterpart.

Value parameters

we

JavaFX WebEngine

Attributes

Returns

ScalaFX WebEngine

Inherited from:
WebIncludes
implicit def jfxWebErrorEvent2sfx(wr: WebErrorEvent): WebErrorEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/WebErrorEvent.html WebErrorEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/WebErrorEvent.html WebErrorEvent]] instance to its ScalaFX counterpart.

Value parameters

wr

JavaFX WebErrorEvent

Attributes

Returns

ScalaFX WebErrorEvent

Inherited from:
WebIncludes
implicit def jfxWebEvent2sfx[T](we: WebEvent[T]): WebEvent[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/WebEvent.html WebEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/WebEvent.html WebEvent]] instance to its ScalaFX counterpart.

Value parameters

we

JavaFX WebEvent

Attributes

Returns

ScalaFX WebEvent

Inherited from:
WebIncludes
implicit def jfxWebView2sfx(wv: WebView): WebView

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/WebView.html WebView]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/web/WebView.html WebView]] instance to its ScalaFX counterpart.

Value parameters

wv

JavaFX WebView

Attributes

Returns

ScalaFX WebView

Inherited from:
WebIncludes
implicit def jfxWindow2sfx(w: Window): Window

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Window.html Window]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/Window.html Window]] instance to its ScalaFX counterpart.

Value parameters

w

JavaFX Window

Attributes

Returns

ScalaFX Window

Inherited from:
StageIncludes
implicit def jfxWindowEvent2sfx(we: WindowEvent): WindowEvent

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/WindowEvent.html WindowEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://download.java.net/jdk8/jfxdocs/javafx/stage/WindowEvent.html WindowEvent]] instance to its ScalaFX counterpart.

Value parameters

we

JavaFX WindowEvent

Attributes

Returns

ScalaFX WindowEvent

Inherited from:
StageIncludes
implicit def jfxWorker2sfxWorker[T](w: Worker[T]): Worker[T]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/concurrent/Worker.html Worker]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/concurrent/Worker.html Worker]] instance to its ScalaFX counterpart.

Value parameters

w

JavaFX Worker

Attributes

Returns

ScalaFX Worker

Inherited from:
ConcurrentIncludes
implicit def jfxWorkerState2sfxWorkerState(s: State): State

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/concurrent/Worker.State.html Worker.State]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/concurrent/Worker.State.html Worker.State]] instance to its ScalaFX counterpart.

Value parameters

s

JavaFX Worker.State

Attributes

Returns

ScalaFX Worker.State

Inherited from:
ConcurrentIncludes
implicit def jfxWorkerStateEvent2sfxWorkerStateEvent(w: WorkerStateEvent): WorkerStateEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/concurrent/WorkerStateEvent.html WorkerStateEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/concurrent/WorkerStateEvent.html WorkerStateEvent]] instance to its ScalaFX counterpart.

Value parameters

w

JavaFX WorkerStateEvent

Attributes

Returns

ScalaFX WorkerStateEvent

Inherited from:
ConcurrentIncludes
implicit def jfxWritableImage2sfx(wi: WritableImage): WritableImage

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/WritableImage.html WritableImage]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/WritableImage.html WritableImage]] instance to its ScalaFX counterpart.

Value parameters

wi

JavaFX WritableImage

Attributes

Returns

ScalaFX WritableImage

Inherited from:
ImageIncludes
implicit def jfxWritablePixelFormat2sfx[B <: Buffer](pf: WritablePixelFormat[B]): WritablePixelFormat[B]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/WritablePixelFormat.html WritablePixelFormat]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/image/WritablePixelFormat.html WritablePixelFormat]] instance to its ScalaFX counterpart.

Value parameters

pf

JavaFX WritablePixelFormat

Attributes

Returns

ScalaFX WritablePixelFormat

Inherited from:
ImageIncludes
implicit def jfxXYChart2sfx[X, Y](c: XYChart[X, Y]): XYChart[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/XYChart.html XYChart]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/XYChart.html XYChart]] instance to its ScalaFX counterpart.

Type parameters

X

X Axis Type

Y

Y Axis Type

Value parameters

c

JavaFX XYChart

Attributes

Returns

ScalaFX XYChart

Inherited from:
ChartIncludes
implicit def jfxXYChartData2sfx[X, Y](b: Data[X, Y]): Data[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/XYChart.Data.html XYChart.Data]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/XYChart.Data.html XYChart.Data]] instance to its ScalaFX counterpart.

Type parameters

X

X Axis Type

Y

Y Axis Type

Value parameters

b

JavaFX XYChart.Data

Attributes

Returns

ScalaFX XYChart.Data

Inherited from:
ChartIncludes
implicit def jfxXYChartSeries2sfx[X, Y](b: Series[X, Y]): Series[X, Y]

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/XYChart.Series.html XYChart.Series]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/chart/XYChart.Series.html XYChart.Series]] instance to its ScalaFX counterpart.

Type parameters

X

X Axis Type

Y

Y Axis Type

Value parameters

b

JavaFX XYChart.Series

Attributes

Returns

ScalaFX XYChart.Series

Inherited from:
ChartIncludes
implicit def jfxZoomEvent2sfx(ze: ZoomEvent): ZoomEvent

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ZoomEvent.html ZoomEvent]] instance to its ScalaFX counterpart.

Converts a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/ZoomEvent.html ZoomEvent]] instance to its ScalaFX counterpart.

Value parameters

ze

JavaFX ZoomEvent

Attributes

Returns

ScalaFX ZoomEvent

Inherited from:
InputIncludes
implicit def lilteredList2FilteredBuffer[T](ol: FilteredList[T]): FilteredBuffer[T]

Attributes

Inherited from:
TransformationIncludes
implicit def long2LongBinding(i: Long): LongBinding

Converts a Long to a JavaFX LongBinding

Converts a Long to a JavaFX LongBinding

Value parameters

i

Long to generate a new LongBinding

Attributes

Returns

a new LongBinding generated from the Long.

Inherited from:
BindingIncludes
implicit def observableList2ObservableBuffer[T](ol: ObservableList[T]): ObservableBuffer[T]

Type parameters

T

List Type

Value parameters

ol

JavaFX ObservableList

Attributes

Returns

ScalaFX ObservableBuffer

Inherited from:
CollectionIncludes
implicit def sfxFunction2jfxInterpolatable[T](f: (T, Double) => T): Interpolatable[T]

Converts a scala.Function2 to a `Interpolatable` Implementation.

Converts a scala.Function2 to a `Interpolatable` Implementation.

Type parameters

T

Type of Function

Value parameters

f

Function that receives a instance of T and a Double (between 0.0 and 1.0) and returns a T Instance.

Attributes

Returns

A new instance of `Interpolatable` which interpolate method calls f function.

Inherited from:
AnimationIncludes
implicit def sfxObjectPropertyWithSFXDelegate2jfxObjectProperty[D <: Object, S <: SFXDelegate[D]](obj: ObjectProperty[S]): ObjectProperty[D]

Type parameters

D

Type wrapped by SFXDelegate

S

A SFXDelegate subtype that wraps D.

Value parameters

obj

ObjectProperty that a wraps Scala's SFXDelegate

Attributes

Returns

A new Java's ObjectProperty

Inherited from:
DelegateIncludes
implicit def sfxReadOnlyObjectWrapperWithSFXDelegate2jfxReadOnlyObjectWrapper[D <: Object, S <: SFXDelegate[D]](obj: ReadOnlyObjectWrapper[S]): ReadOnlyObjectWrapper[D]

Type parameters

D

Type wrapped by SFXDelegate

S

A SFXDelegate subtype that wraps D.

Value parameters

obj

ObjectProperty that a wraps Scala's SFXDelegate

Attributes

Returns

A new Java's ObjectProperty

Inherited from:
DelegateIncludes
implicit def sortedList2SortedBuffer[T](ol: SortedList[T]): SortedBuffer[T]

Attributes

Inherited from:
TransformationIncludes
implicit def string2jfxColor(s: String): Color

Converts an HTML or CSS attribute string to a JavaFX Color. See JavaFX's Color.web() for more details.

Converts an HTML or CSS attribute string to a JavaFX Color. See JavaFX's Color.web() for more details.

Value parameters

s

The name or numeric representation of the color in one of the supported formats

Attributes

Returns

JavaFX Color correspondent to argument

Inherited from:
PaintIncludes
implicit def string2sfxColor(s: String): Color

Converts an HTML or CSS attribute string to a ScalaFX Color. See JavaFX's Color.web() for more details.

Converts an HTML or CSS attribute string to a ScalaFX Color. See JavaFX's Color.web() for more details.

Value parameters

s

The name or numeric representation of the color in one of the supported formats

Attributes

Returns

ScalaFX Color correspondent to argument

Inherited from:
PaintIncludes
implicit def tuple22jfxPair[K, V](t: (K, V)): Pair[K, V]

Convert a Scala Tuple2 to a JavaFX Pair.

Convert a Scala Tuple2 to a JavaFX Pair.

Type parameters

K

Key Type

V

Value Type

Value parameters

t

A Scala Tuple2

Attributes

Returns

A JavaFX Pair generated from Scala Tuple2.

Inherited from:
UtilIncludes
implicit def tuple32JfxColor(tuple: (Int, Int, Int)): Color

Converts a tuple of 3 Integers to a JavaFX Color.

Converts a tuple of 3 Integers to a JavaFX Color.

Value parameters

tuple

A tuple of 3 Integers (all of them must be lesser than 256) correspondent respectively to red, green and blue components of desired Color

Attributes

Returns

Color correspondent to Tuple.

Inherited from:
PaintIncludes
implicit def tuple32SfxColor(tuple: (Int, Int, Int)): Color

Converts a tuple of 3 Integers to a ScalaFX Color.

Converts a tuple of 3 Integers to a ScalaFX Color.

Value parameters

tuple

A tuple of 3 Integers (all of them must be lesser than 256) correspondent respectively to red, green and blue components of desired Color

Attributes

Returns

Color correspondent to Tuple.

Inherited from:
PaintIncludes
implicit def tuple42JfxColor(tuple: (Int, Int, Int, Double)): Color

Converts a tuple of 3 Integers and a double to a JavaFX Color.

Converts a tuple of 3 Integers and a double to a JavaFX Color.

Value parameters

tuple

A tuple of 3 Integers (all of them must be lesser than 256) and a Double (lesser than 1.0) correspondent respectively to red, green, blue and opacity components of desired Color

Attributes

Returns

Color correspondent to Tuple.

Inherited from:
PaintIncludes
implicit def tuple42SfxColor(tuple: (Int, Int, Int, Double)): Color

Converts a tuple of 3 Integers and a double to a ScalaFX Color.

Converts a tuple of 3 Integers and a double to a ScalaFX Color.

Value parameters

tuple

A tuple of 3 Integers (all of them must be lesser than 256) and a Double (lesser than 1.0) correspondent respectively to red, green, blue and opacity components of desired Color

Attributes

Returns

Color correspondent to Tuple.

Inherited from:
PaintIncludes
implicit def tweenableSet2KeyValueSet(ts: Set[Tweenable[_, _ <: Object]]): Set[KeyValue[_, _ <: Object]]

Converts a Set of scalafx.animation.Tweenables in a Set of scalafx.animation.KeyValues.

Converts a Set of scalafx.animation.Tweenables in a Set of scalafx.animation.KeyValues.

Value parameters

ts

Set of scalafx.animation.Tweenables

Attributes

Returns

Set of scalafx.animation.KeyValues.

Inherited from:
AnimationIncludes
implicit def webEventClosureWrapper[T](handler: WebEvent[T] => Any): EventHandler[WebEvent[T]]

Converts a Function that manipulates a ScalaFX scalafx.scene.web.WebEngine and returns a scala.Any into a JavaFX's EventHandler that manipulates it's JavaFX counterpart.

Converts a Function that manipulates a ScalaFX scalafx.scene.web.WebEngine and returns a scala.Any into a JavaFX's EventHandler that manipulates it's JavaFX counterpart.

Value parameters

handler

function that manipulates a ScalaFX's WebEngine

Attributes

Returns

A JavaFX's EventHandler that manipulates a JavaFX's WebEngine

Inherited from:
WebIncludes
implicit def wrapKeyFrameInSeq[T <: KeyFrame](kf: T): Seq[T]

Wraps a scalafx.animation.KeyFrame in a Seq.

Wraps a scalafx.animation.KeyFrame in a Seq.

Value parameters

kf

KeyFrame to be wrapped.

Attributes

Returns

Seq wrapping the KeyFrame.

Inherited from:
AnimationIncludes
implicit def wrapKeyValueInSet[T, J <: Object](kv: KeyValue[T, J]): Set[KeyValue[_, _ <: Object]]

Wraps a scalafx.animation.KeyValue in a Set.

Wraps a scalafx.animation.KeyValue in a Set.

Value parameters

kv

KeyValue to be injected.

Attributes

Returns

Set wrapping the KeyValue

Inherited from:
AnimationIncludes
implicit def wrapTweenableInSet[T, J <: Object](t: Tweenable[T, J]): Set[KeyValue[_, _ <: Object]]

Wraps a scalafx.animation.Tweenable in a Set.

Wraps a scalafx.animation.Tweenable in a Set.

Value parameters

t

Tweenable to be injected.

Attributes

Returns

Set wrapping the Tweenable

Inherited from:
AnimationIncludes