X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2FTInputBox.java;h=d60d0b53f5d8b7e8bc8cadb9a41cfceebc7f2873;hb=505be508ae7d3fb48122be548b310a238cfb91eb;hp=6ade42fb6d0cd5d70ed4fe8fd34933ec6cac4fb5;hpb=72b6bd90316d58e87afbed110164cc2f203ec919;p=fanfix.git diff --git a/src/jexer/TInputBox.java b/src/jexer/TInputBox.java index 6ade42f..d60d0b5 100644 --- a/src/jexer/TInputBox.java +++ b/src/jexer/TInputBox.java @@ -3,7 +3,7 @@ * * The MIT License (MIT) * - * Copyright (C) 2017 Kevin Lamonte + * Copyright (C) 2019 Kevin Lamonte * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), @@ -34,7 +34,7 @@ package jexer; * *
  * {@code
- *     box = application.inputBox(title, caption);
+ *     box = inputBox(title, caption);
  *     if (box.getText().equals("yes")) {
  *         ... the user entered "yes", do stuff ...
  *     }
@@ -44,19 +44,18 @@ package jexer;
  */
 public class TInputBox extends TMessageBox {
 
+    // ------------------------------------------------------------------------
+    // Variables --------------------------------------------------------------
+    // ------------------------------------------------------------------------
+
     /**
      * The input field.
      */
     private TField field;
 
-    /**
-     * Retrieve the answer text.
-     *
-     * @return the answer text
-     */
-    public String getText() {
-        return field.getText();
-    }
+    // ------------------------------------------------------------------------
+    // Constructors -----------------------------------------------------------
+    // ------------------------------------------------------------------------
 
     /**
      * Public constructor.  The input box will be centered on screen.
@@ -111,9 +110,29 @@ public class TInputBox extends TMessageBox {
         setHeight(getHeight() + 2);
         field = addField(1, getHeight() - 6, getWidth() - 4, false, text);
 
+        // Set the secondaryThread to run me
+        getApplication().enableSecondaryEventReceiver(this);
+
         // Yield to the secondary thread.  When I come back from the
         // constructor response will already be set.
         getApplication().yield();
     }
 
+    // ------------------------------------------------------------------------
+    // TMessageBox ------------------------------------------------------------
+    // ------------------------------------------------------------------------
+
+    // ------------------------------------------------------------------------
+    // TInputBox --------------------------------------------------------------
+    // ------------------------------------------------------------------------
+
+    /**
+     * Retrieve the answer text.
+     *
+     * @return the answer text
+     */
+    public String getText() {
+        return field.getText();
+    }
+
 }