Skip to content

Instantly share code, notes, and snippets.

@jewelsea
jewelsea / ImageScaler.java
Created April 18, 2013 20:17
Demonstrates different methods of scaling images in JavaFX and the effects of scaling with each.
import javafx.application.*;
import javafx.geometry.HPos;
import javafx.geometry.Pos;
import javafx.scene.*;
import javafx.scene.control.*;
import javafx.scene.image.*;
import javafx.scene.layout.*;
import javafx.stage.Stage;
public class ImageScaler extends Application {
@jewelsea
jewelsea / HideAndSeek.java
Created April 16, 2013 19:57
Demonstrates fading in and out a label while at the same time gradually resizing it to nothing and restoring it.
import javafx.animation.*;
import javafx.application.Application;
import javafx.beans.binding.Bindings;
import javafx.beans.value.*;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
import javafx.util.Duration;
@jewelsea
jewelsea / TriangleManipulator.java
Last active December 8, 2020 09:14
Demonstrates modifying a polygon's shape in JavaFX by allowing the user to drag around control points attached to the corners of the Polygon.
import javafx.scene.Scene;
import javafx.application.Application;
import javafx.beans.property.*;
import javafx.beans.value.*;
import javafx.collections.*;
import javafx.event.EventHandler;
import javafx.scene.*;
import javafx.scene.input.MouseEvent;
import javafx.scene.paint.Color;
@jewelsea
jewelsea / CubicCurveManipulator.java
Created April 12, 2013 22:40
Demonstrates manipulation of a CubicCurve in JavaFX by allowing the user to drag around the endpoints and control points of the curve.
import javafx.application.Application;
import javafx.beans.property.DoubleProperty;
import javafx.event.EventHandler;
import javafx.scene.*;
import javafx.scene.input.MouseEvent;
import javafx.scene.paint.Color;
import javafx.scene.shape.*;
import javafx.stage.Stage;
/** Example of how a cubic curve works, drag the anchors around to change the curve. */
@jewelsea
jewelsea / TranslucentPane.java
Created April 1, 2013 18:33
Displays a translucent pane with solid children in JavaFX.
import javafx.application.Application;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.image.*;
import javafx.scene.layout.*;
import javafx.stage.Stage;
public class TranslucentPane extends Application {
@Override public void start(final Stage stage) throws Exception {
@jewelsea
jewelsea / JavaFXMusicPlayerLaunchedFromSwing.java
Created March 25, 2013 22:33
Integrating a JavaFX media player into a Swing application (example using a music player, but video would work just as well).
import java.io.*;
import java.util.*;
import javafx.application.Platform;
import javafx.beans.value.*;
import javafx.embed.swing.JFXPanel;
import javafx.event.*;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.*;
@jewelsea
jewelsea / CSSBoxStyles.java
Last active June 24, 2021 10:27
Applies CSS to a JavaFX pane to create a page turn style shadow effect.
import static javafx.application.Application.launch;
import javafx.application.*;
import javafx.scene.Scene;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.StackPane;
import javafx.stage.Stage;
public class CSSBoxStyles extends Application {
@Override public void start(Stage stage) {
StackPane shadowPane = new StackPane();
@jewelsea
jewelsea / BlurredReflection.java
Created March 22, 2013 00:13
Demonstrates blurring the reflection generated by the JavaFX Reflection effect.
import javafx.application.Application;
import javafx.geometry.*;
import javafx.scene.*;
import javafx.scene.control.Label;
import javafx.scene.effect.*;
import javafx.scene.image.*;
import javafx.scene.layout.*;
import javafx.stage.Stage;
public class BlurredReflection extends Application {
@jewelsea
jewelsea / PopupButton.java
Last active October 31, 2016 16:05
Shows how to make a small context sensitive dialog which popups on pressing a button.
import java.util.Random;
import javafx.application.Application;
import javafx.event.*;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.image.ImageView;
import javafx.scene.layout.VBox;
import javafx.scene.text.TextAlignment;
import javafx.stage.Stage;
@jewelsea
jewelsea / RoomReservationNavigator.java
Last active December 15, 2015 04:19
JavaFX Room Reservation system - demonstrates switching between scenes in a stage.
import javafx.application.Application;
import javafx.collections.FXCollections;
import javafx.event.*;
import javafx.scene.*;
import javafx.scene.control.*;
import javafx.scene.layout.*;
import javafx.stage.Stage;
public class RoomReservationNavigator extends Application {
public static void main(String[] args) { Application.launch(args); }