Skip to content

Instantly share code, notes, and snippets.

@jewelsea
jewelsea / LoadTimer.java
Created August 29, 2013 07:42
Report progress and time taken for JavaFX WebEngine loading
import javafx.application.Application;
import javafx.beans.binding.Bindings;
import javafx.beans.property.*;
import javafx.beans.value.*;
import javafx.concurrent.Worker;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.*;
@jewelsea
jewelsea / ListViewTextHighlighterWithLargeData.java
Created July 4, 2013 00:48
Variation of the ListViewTextHighlighter gist which displays a large amount of data (120 megabytes) in a searchable ListView.
import javafx.application.Application;
import javafx.beans.*;
import javafx.beans.property.*;
import javafx.collections.*;
import javafx.concurrent.Task;
import javafx.concurrent.WorkerStateEvent;
import javafx.event.*;
import javafx.geometry.Pos;
import javafx.scene.Node;
import javafx.scene.Scene;
@jewelsea
jewelsea / ListViewTextHighlighter.java
Created July 3, 2013 21:52
Sample for highlighting text displayed in a JavaFX ListView based on search results.
import javafx.application.Application;
import javafx.beans.*;
import javafx.beans.property.*;
import javafx.collections.*;
import javafx.event.*;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.*;
import javafx.stage.Stage;
import javafx.util.Callback;
@jewelsea
jewelsea / BezierTextPlotter.java
Last active October 12, 2021 01:28
Plots text along a Bézier curve in JavaFX
import javafx.animation.*;
import javafx.application.Application;
import javafx.beans.property.DoubleProperty;
import javafx.collections.*;
import javafx.event.*;
import javafx.scene.*;
import javafx.scene.control.ToggleButton;
import javafx.scene.effect.Glow;
import javafx.scene.input.MouseEvent;
import javafx.scene.paint.Color;
@jewelsea
jewelsea / PairTable.java
Created June 12, 2013 18:07
Creates a JavaFX table based on a list of pairs of objects whose values can be assorted different types.
import javafx.application.*;
import javafx.beans.property.ReadOnlyObjectWrapper;
import javafx.beans.value.ObservableValue;
import javafx.collections.*;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.image.*;
import javafx.scene.layout.*;
import javafx.stage.Stage;
import javafx.util.Callback;
@jewelsea
jewelsea / LayoutAnimator.java
Last active May 24, 2020 09:53 — forked from teyc/LayoutAnimator.java
Animates transitions involved when relaying out nodes in a FlowPane
import javafx.animation.Transition;
import javafx.beans.property.DoubleProperty;
import javafx.beans.value.*;
import javafx.collections.*;
import javafx.event.*;
import javafx.scene.Node;
import javafx.scene.transform.Translate;
import javafx.util.Duration;
import java.util.*;
@jewelsea
jewelsea / PerspectiveMovement.java
Created May 28, 2013 22:45
Demonstrates use of a JavaFX PerspectiveTransform - toggling or morphing the transform on and off.
import javafx.animation.*;
import javafx.application.*;
import javafx.beans.value.*;
import javafx.geometry.Pos;
import javafx.scene.*;
import javafx.scene.control.ToggleButton;
import javafx.scene.effect.PerspectiveTransform;
import javafx.scene.image.*;
import javafx.scene.layout.VBox;
import javafx.scene.paint.Color;
@jewelsea
jewelsea / ElidedTableViewSample.java
Created May 24, 2013 21:14
Sets custom table cell renders with different text overrun and ellipsis settings.
mport javafx.application.Application;
import javafx.beans.property.SimpleStringProperty;
import javafx.collections.*;
import javafx.geometry.Insets;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.scene.layout.VBox;
import javafx.scene.text.Font;
import javafx.stage.Stage;
@jewelsea
jewelsea / WebViewCaptureDemo.java
Created May 23, 2013 05:38
Captures web pages to image files using JavaFX WebView and ImageIO
import javafx.animation.PauseTransition;
import javafx.application.Application;
import javafx.beans.value.*;
import javafx.embed.swing.SwingFXUtils;
import javafx.event.*;
import javafx.geometry.Bounds;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.image.*;
import javafx.scene.layout.*;
@jewelsea
jewelsea / TextAreaTabAndEnterHandler.java
Created May 21, 2013 23:34
Allow a Tab key press in a TextArea to focus on the next field and an Enter key press in a TextArea to trigger a default button.
import javafx.application.Application;
import static javafx.application.Application.launch;
import javafx.beans.value.*;
import javafx.collections.ObservableList;
import javafx.event.*;
import javafx.scene.*;
import javafx.scene.control.*;
import static javafx.scene.input.KeyCode.ENTER;
import static javafx.scene.input.KeyCode.TAB;
import javafx.scene.input.KeyEvent;