aboutsummaryrefslogtreecommitdiffstats
path: root/src/jcgp/gui/GUIConsole.java
diff options
context:
space:
mode:
authorEduardo Pedroni <ep625@york.ac.uk>2014-03-30 21:07:37 +0100
committerEduardo Pedroni <ep625@york.ac.uk>2014-03-30 21:07:37 +0100
commit04b35ccdad6e18701ede823e333118b0b22907c2 (patch)
tree0e993a5ffee4e63c4a2a6eca137da72b2453f868 /src/jcgp/gui/GUIConsole.java
parent2bf2d3ac2c578de481ecfd545d58be73c5628996 (diff)
Running into some issues with running the CGP loop in the background with bindings.
Diffstat (limited to 'src/jcgp/gui/GUIConsole.java')
-rw-r--r--src/jcgp/gui/GUIConsole.java12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/jcgp/gui/GUIConsole.java b/src/jcgp/gui/GUIConsole.java
index a14a23b..15ef2f6 100644
--- a/src/jcgp/gui/GUIConsole.java
+++ b/src/jcgp/gui/GUIConsole.java
@@ -1,5 +1,10 @@
package jcgp.gui;
+import java.io.IOException;
+import java.io.OutputStream;
+import java.io.PrintStream;
+
+import javafx.application.Platform;
import javafx.event.EventHandler;
import javafx.scene.Cursor;
import javafx.scene.control.TextArea;
@@ -17,7 +22,12 @@ public class GUIConsole extends AnchorPane {
textArea.setEditable(false);
textArea.setWrapText(true);
- //setStyle("-fx-border-width: 5 0 0 0; -fx-border-color: #D1D1D1");
+// System.setOut(new PrintStream(new OutputStream() {
+// @Override
+// public void write(final int b) throws IOException {
+// textArea.appendText(String.valueOf((char) b));
+// }
+// }));
setResizeListeners();