#27 expose messagebox type for inputbox
[fanfix.git] / src / jexer / demos / DemoMsgBoxWindow.java
index 27ee79074b20fb1ca5dbec0227e490b44fa84241..b6c9404f74f9e1b02a07cc17e0fbb8bf23e04f9f 100644 (file)
@@ -59,7 +59,7 @@ public class DemoMsgBoxWindow extends TWindow {
     DemoMsgBoxWindow(final TApplication parent, final int flags) {
         // Construct a demo window.  X and Y don't matter because it
         // will be centered on screen.
-        super(parent, "Message Boxes", 0, 0, 60, 16, flags);
+        super(parent, "Message Boxes", 0, 0, 64, 18, flags);
 
         int row = 1;
 
@@ -137,7 +137,7 @@ public class DemoMsgBoxWindow extends TWindow {
         );
         row += 2;
 
-        addLabel("Input box", 1, row);
+        addLabel("Input box 1", 1, row);
         addButton("Open &input box", 35, row,
             new TAction() {
                 public void DO() {
@@ -152,6 +152,24 @@ public class DemoMsgBoxWindow extends TWindow {
                 }
             }
         );
+        row += 2;
+
+        addLabel("Input box 2", 1, row);
+        addButton("Cance&llable input box", 35, row,
+            new TAction() {
+                public void DO() {
+                    TInputBox in = getApplication().inputBox("Input Box",
+"This is an example of an InputBox.\n" +
+"\n" +
+"Note that the InputBox text can span multiple\n" +
+"lines.\n" +
+"This one has both OK and Cancel buttons.\n",
+                        "some input text", TInputBox.Type.OKCANCEL);
+                    getApplication().messageBox("Your InputBox Answer",
+                        "You entered: " + in.getText());
+                }
+            }
+        );
 
         addButton("&Close Window", (getWidth() - 14) / 2, getHeight() - 4,
             new TAction() {