summaryrefslogtreecommitdiff
path: root/dslog/Gui.java
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2017-03-12 18:39:22 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2017-03-12 18:39:22 -0400
commitf3beb3bd00935a64b8ece9b74e46952ce9f637a1 (patch)
tree1a5a9bad9e588492974df15979b95fc91de14f0b /dslog/Gui.java
parentf4f91f5e5faaae479d4c74a3366a5ce9408c9c64 (diff)
stuff
Diffstat (limited to 'dslog/Gui.java')
-rw-r--r--dslog/Gui.java22
1 files changed, 22 insertions, 0 deletions
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();
+ }
+}
+