From f3beb3bd00935a64b8ece9b74e46952ce9f637a1 Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Sun, 12 Mar 2017 18:39:22 -0400 Subject: stuff --- dslog/Gui.java | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 dslog/Gui.java (limited to 'dslog/Gui.java') diff --git a/dslog/Gui.java b/dslog/Gui.java new file mode 100644 index 0000000..ba88141 --- /dev/null +++ b/dslog/Gui.java @@ -0,0 +1,22 @@ +package dslog; + +import javafx.application.Application; +import javafx.scene.Group; +import javafx.scene.Scene; +import javafx.scene.shape.Circle; +import javafx.stage.Stage; + +class Gui extends Application { + @Override + public void start(Stage stage) { + stage.setTitle("DSLOG/DSEVENTS/PDPLOG File Viewer"); + + Circle circ = new Circle(40, 40, 30); + Group root = new Group(circ); + Scene scene = new Scene(root, 400, 300); + + stage.setScene(scene); + stage.show(); + } +} + -- cgit v1.2.3-54-g00ecf