scalafx.animation.SequentialTransition.scala Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2011-2020, ScalaFX Project
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the ScalaFX Project nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE SCALAFX PROJECT OR ITS CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package scalafx.animation
import javafx.{animation => jfxa, scene => jfxs}
import scalafx.Includes._
import scalafx.beans.property.ObjectProperty
import scalafx.collections._
import scalafx.delegate.SFXDelegate
import scalafx.scene.Node
import scala.language.implicitConversions
/**
* Companion Object for [[scalafx.animation.SequentialTransition]].
*
* @define ST `SequentialTransition`
*/
object SequentialTransition extends AnimationStatics {
/**
* Converts a ScalaFX $ST to a JavaFX [[http://docs.oracle.com/javase/8/javafx/api/javafx/animation/SequentialTransition.html $ST]],
* extracting its delegate.
*
* @param v ScalaFX $ST
* @return JavaFX $ST extracted from `v`.
*/
implicit def sfxSequentialTransition2jfx(v: SequentialTransition): jfxa.SequentialTransition = if (v != null) v.delegate else null
}
/**
* Wraps a [[http://docs.oracle.com/javase/8/javafx/api/javafx/animation/SequentialTransition.html SequentialTransition]].
*
* @constructor Creates a new ScalaFX $ST from a JavaFX $ST.
* @param delegate JavaFX $ST to be delegated.
*
* @define ST `SequentialTransition`
* @define CONST The constructor of $ST
* @define ANS [[scalafx.animation.Animation]]s
* @define DV Default value:
*/
class SequentialTransition(override val delegate: jfxa.SequentialTransition = new jfxa.SequentialTransition)
extends Transition(delegate)
with SFXDelegate[jfxa.SequentialTransition] {
// CONSTRUCTORS
/**
* $CONST
*
* @param node The target Node to be used in child Transitions that have no Node specified themselves
* @param children The child $ANS of this $ST
*/
def this(node: Node, children: Seq[Animation]) =
this(new jfxa.SequentialTransition(node, children.map(_.delegate): _*))
/**
* $CONST
*
* @param node The target Node to be used in child Transitions that have no Node specified themselves.
*/
def this(node: Node) = this(new jfxa.SequentialTransition(node))
/**
* $CONST
*
* @param children The child $ANS of this $ST
*/
def this(children: Seq[Animation]) =
this(new jfxa.SequentialTransition(children.map(_.delegate): _*))
// PROPERTIES
/**
* This Node is used in all child Transitions, that do not define a target Node themselves.
*/
def node: ObjectProperty[jfxs.Node] = delegate.nodeProperty
def node_=(n: Node): Unit = {
node() = n
}
/**
* A list of $ANS that will be played sequentially.
*/
def children: ObservableBuffer[jfxa.Animation] = delegate.getChildren
/**
* Sets the list of $ANS, replacing the prior content. If you want append to current content, use `add` or
* similar.
*
* @param c list of $ANS to replace prior content.
*/
def children_=(c: Iterable[Animation]): Unit = {
fillSFXCollection(this.children, c)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy