X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fdemos%2FDemo1.java;h=1afa354c7aebcb9aa34416ba1f999acb2a6bb39d;hb=92554d64c21c6a477fd23a06ca3a64a542b622a3;hp=1e482d45db9d267544f1a67fd1152496551617dd;hpb=70f5b2bbcbac3df8bf855895ff51d63a5e9d333c;p=fanfix.git diff --git a/src/jexer/demos/Demo1.java b/src/jexer/demos/Demo1.java index 1e482d4..1afa354 100644 --- a/src/jexer/demos/Demo1.java +++ b/src/jexer/demos/Demo1.java @@ -153,65 +153,6 @@ class DemoCheckboxWindow extends TWindow { * This window demonstates the TMessageBox and TInputBox widgets. */ class DemoMsgBoxWindow extends TWindow { - /* - private void openYNCMessageBox() { - application.messageBox("Yes/No/Cancel MessageBox", - q"EOS -This is an example of a Yes/No/Cancel MessageBox. - -Note that the MessageBox text can span multiple -lines. - -The default result (if someone hits the top-left -close button) is CANCEL. -EOS", - TMessageBox.Type.YESNOCANCEL); - } - - private void openYNMessageBox() { - application.messageBox("Yes/No MessageBox", - q"EOS -This is an example of a Yes/No MessageBox. - -Note that the MessageBox text can span multiple -lines. - -The default result (if someone hits the top-left -close button) is NO. -EOS", - TMessageBox.Type.YESNO); - } - - private void openOKCMessageBox() { - application.messageBox("OK/Cancel MessageBox", - q"EOS -This is an example of a OK/Cancel MessageBox. - -Note that the MessageBox text can span multiple -lines. - -The default result (if someone hits the top-left -close button) is CANCEL. -EOS", - TMessageBox.Type.OKCANCEL); - } - - private void openOKMessageBox() { - application.messageBox("OK MessageBox", - q"EOS -This is an example of a OK MessageBox. This is the -default MessageBox. - -Note that the MessageBox text can span multiple -lines. - -The default result (if someone hits the top-left -close button) is OK. -EOS", - TMessageBox.Type.OK); - } - - */ /** * Constructor. @@ -232,46 +173,106 @@ EOS", // Construct a demo window. X and Y don't matter because it // will be centered on screen. super(parent, "Message Boxes", 0, 0, 60, 15, flags); - /* - uint row = 1; + + int row = 1; // Add some widgets addLabel("Default OK message box", 1, row); - addButton("Open O&K MB", 35, row, &openOKMessageBox); + addButton("Open O&K MB", 35, row, + new TAction() { + public void DO() { + getApplication().messageBox("OK MessageBox", +"This is an example of a OK MessageBox. This is the\n" + +"default MessageBox.\n" + +"\n" + +"Note that the MessageBox text can span multiple\n" + +"lines.\n" + +"\n" + +"The default result (if someone hits the top-left\n" + +"close button) is OK.\n", + TMessageBox.Type.OK); + } + } + ); row += 2; addLabel("OK/Cancel message box", 1, row); - addButton("O&pen OKC MB", 35, row, &openOKCMessageBox); + addButton("O&pen OKC MB", 35, row, + new TAction() { + public void DO() { + getApplication().messageBox("OK/Cancel MessageBox", +"This is an example of a OK/Cancel MessageBox.\n" + +"\n" + +"Note that the MessageBox text can span multiple\n" + +"lines.\n" + +"\n" + +"The default result (if someone hits the top-left\n" + +"close button) is CANCEL.\n", + TMessageBox.Type.OKCANCEL); + } + } + ); row += 2; addLabel("Yes/No message box", 1, row); - addButton("Open &YN MB", 35, row, &openYNMessageBox); + addButton("Open &YN MB", 35, row, + new TAction() { + public void DO() { + getApplication().messageBox("Yes/No MessageBox", +"This is an example of a Yes/No MessageBox.\n" + +"\n" + +"Note that the MessageBox text can span multiple\n" + +"lines.\n" + +"\n" + +"The default result (if someone hits the top-left\n" + +"close button) is NO.\n", + TMessageBox.Type.YESNO); + } + } + ); row += 2; addLabel("Yes/No/Cancel message box", 1, row); - addButton("Ope&n YNC MB", 35, row, &openYNCMessageBox); + addButton("Ope&n YNC MB", 35, row, + new TAction() { + public void DO() { + getApplication().messageBox("Yes/No/Cancel MessageBox", +"This is an example of a Yes/No/Cancel MessageBox.\n" + +"\n" + +"Note that the MessageBox text can span multiple\n" + +"lines.\n" + +"\n" + +"The default result (if someone hits the top-left\n" + +"close button) is CANCEL.\n", + TMessageBox.Type.YESNOCANCEL); + } + } + ); row += 2; addLabel("Input box", 1, row); addButton("Open &input box", 35, row, - { - application.inputBox("Input Box", - q"EOS -This is an example of an InputBox. - -Note that the InputBox text can span multiple -lines. -EOS", - "some input text"); + 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", + "some input text"); + getApplication().messageBox("Your InputBox Answer", + "You entered: " + in.getText()); + } } ); - addButton("&Close Window", (width - 14) / 2, height - 4, - { - application.closeWindow(this); + addButton("&Close Window", (getWidth() - 14) / 2, getHeight() - 4, + new TAction() { + public void DO() { + getApplication().closeWindow(DemoMsgBoxWindow.this); + } } ); - */ } } @@ -287,24 +288,6 @@ class DemoMainWindow extends TWindow { // Timer label is updated with timer ticks. TLabel timerLabel; - /* - // The modal window is a more low-level example of controlling a window - // "from the outside". Most windows will probably subclass TWindow and - // do this kind of logic on their own. - private TWindow modalWindow; - private void openModalWindow() { - modalWindow = application.addWindow("Demo Modal Window", 0, 0, - 58, 15, TWindow.Flag.MODAL); - modalWindow.addLabel("This is an example of a very braindead modal window.", 1, 1); - modalWindow.addLabel("Modal windows are centered by default.", 1, 2); - modalWindow.addButton("&Close", (modalWindow.width - 8)/2, - modalWindow.height - 4, &modalWindowClose); - } - private void modalWindowClose() { - application.closeWindow(modalWindow); - } - */ - /** * We need to override onClose so that the timer will no longer be called * after we close the window. TTimers currently are completely unaware @@ -368,9 +351,12 @@ class DemoMainWindow extends TWindow { addLabel("Variable-width text field:", 1, row); addField(35, row++, 15, false, "Field text"); - addLabel("Fixed-width text field:", 1, row); - addField(35, row, 15, true); + addField(35, row++, 15, true); + addLabel("Variable-width password:", 1, row); + addPasswordField(35, row++, 15, false); + addLabel("Fixed-width password:", 1, row); + addPasswordField(35, row++, 15, true, "hunter2"); row += 2; if (!isModal()) { @@ -419,22 +405,24 @@ class DemoMainWindow extends TWindow { ); } row += 2; + */ if (!isModal()) { addLabel("Terminal", 1, row); addButton("Termi&nal", 35, row, - { - application.openTerminal(0, 0); + new TAction() { + public void DO() { + getApplication().openTerminal(0, 0); + } } ); } row += 2; - */ progressBar = addProgressBar(1, row, 22, 0); row++; timerLabel = addLabel("Timer", 1, row); - timer = getApplication().addTimer(100, true, + timer = getApplication().addTimer(250, true, new TAction() { public void DO() { @@ -444,7 +432,6 @@ class DemoMainWindow extends TWindow { timerI++; } progressBar.setValue(timerI); - DemoMainWindow.this.setRepaint(); } } );