Search in sources :

Example 6 with FXML

use of javafx.fxml.FXML in project fxexperience2 by EricCanull.

the class DemoController method hingeAction.

@FXML
private void hingeAction(ActionEvent event) {
    new HingeTransition(btn).play();
    bringBackAfter();
}
Also used : HingeTransition(com.fxexperience.javafx.fxanimations.HingeTransition) FXML(javafx.fxml.FXML)

Example 7 with FXML

use of javafx.fxml.FXML in project fxexperience2 by EricCanull.

the class DemoController method fadeOutAction.

@FXML
private void fadeOutAction(ActionEvent event) {
    new FadeOutTransition(btn).play();
    bringBackAfter();
}
Also used : FadeOutTransition(com.fxexperience.javafx.fxanimations.FadeOutTransition) FXML(javafx.fxml.FXML)

Example 8 with FXML

use of javafx.fxml.FXML in project fxexperience2 by EricCanull.

the class DemoController method fadeOutLeftAction.

@FXML
private void fadeOutLeftAction(ActionEvent event) {
    new FadeOutLeftTransition(btn).play();
    bringBackAfter();
}
Also used : FadeOutLeftTransition(com.fxexperience.javafx.fxanimations.FadeOutLeftTransition) FXML(javafx.fxml.FXML)

Example 9 with FXML

use of javafx.fxml.FXML in project fxexperience2 by EricCanull.

the class DemoController method fadeOutUpAction.

@FXML
private void fadeOutUpAction(ActionEvent event) {
    new FadeOutUpTransition(btn).play();
    bringBackAfter();
}
Also used : FadeOutUpTransition(com.fxexperience.javafx.fxanimations.FadeOutUpTransition) FXML(javafx.fxml.FXML)

Example 10 with FXML

use of javafx.fxml.FXML in project fxexperience2 by EricCanull.

the class DemoController method bounceOutUpAction.

@FXML
private void bounceOutUpAction(ActionEvent event) {
    new BounceOutUpTransition(btn).play();
    bringBackAfter();
}
Also used : BounceOutUpTransition(com.fxexperience.javafx.fxanimations.BounceOutUpTransition) FXML(javafx.fxml.FXML)

Aggregations

FXML (javafx.fxml.FXML)251 Engine (jgnash.engine.Engine)46 InjectFXML (jgnash.uifx.util.InjectFXML)43 File (java.io.File)35 IOException (java.io.IOException)32 Stage (javafx.stage.Stage)30 List (java.util.List)23 ArrayList (java.util.ArrayList)22 Preferences (java.util.prefs.Preferences)18 SimpleObjectProperty (javafx.beans.property.SimpleObjectProperty)18 FXCollections (javafx.collections.FXCollections)16 Button (javafx.scene.control.Button)16 LocalDate (java.time.LocalDate)15 Scene (javafx.scene.Scene)15 BigDecimal (java.math.BigDecimal)14 ObjectProperty (javafx.beans.property.ObjectProperty)14 ObservableList (javafx.collections.ObservableList)13 Node (javafx.scene.Node)13 CurrencyNode (jgnash.engine.CurrencyNode)13 HashMap (java.util.HashMap)12