summaryrefslogtreecommitdiff
path: root/dslog/Gui.java
diff options
context:
space:
mode:
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();
+ }
+}
+