2 * Jexer - Java Text User Interface
4 * The MIT License (MIT)
6 * Copyright (C) 2019 Kevin Lamonte
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
21 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
24 * DEALINGS IN THE SOFTWARE.
26 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
31 import java
.text
.MessageFormat
;
32 import java
.util
.ResourceBundle
;
35 import jexer
.TApplication
;
36 import jexer
.TInputBox
;
37 import jexer
.TMessageBox
;
39 import jexer
.layout
.StretchLayoutManager
;
40 import static jexer
.TCommand
.*;
41 import static jexer
.TKeypress
.*;
44 * This window demonstates the TMessageBox and TInputBox widgets.
46 public class DemoMsgBoxWindow
extends TWindow
{
51 private static final ResourceBundle i18n
= ResourceBundle
.getBundle(DemoMsgBoxWindow
.class.getName());
53 // ------------------------------------------------------------------------
54 // Constructors -----------------------------------------------------------
55 // ------------------------------------------------------------------------
60 * @param parent the main application
62 DemoMsgBoxWindow(final TApplication parent
) {
63 this(parent
, TWindow
.CENTERED
| TWindow
.RESIZABLE
);
69 * @param parent the main application
70 * @param flags bitmask of MODAL, CENTERED, or RESIZABLE
72 DemoMsgBoxWindow(final TApplication parent
, final int flags
) {
73 // Construct a demo window. X and Y don't matter because it
74 // will be centered on screen.
75 super(parent
, i18n
.getString("windowTitle"), 0, 0, 64, 18, flags
);
77 setLayoutManager(new StretchLayoutManager(getWidth() - 2,
83 addLabel(i18n
.getString("messageBoxLabel1"), 1, row
);
84 addButton(i18n
.getString("messageBoxButton1"), 35, row
,
87 getApplication().messageBox(i18n
.
88 getString("messageBoxTitle1"),
89 i18n
.getString("messageBoxPrompt1"),
96 addLabel(i18n
.getString("messageBoxLabel2"), 1, row
);
97 addButton(i18n
.getString("messageBoxButton2"), 35, row
,
100 getApplication().messageBox(i18n
.
101 getString("messageBoxTitle2"),
102 i18n
.getString("messageBoxPrompt2"),
103 TMessageBox
.Type
.OKCANCEL
);
109 addLabel(i18n
.getString("messageBoxLabel3"), 1, row
);
110 addButton(i18n
.getString("messageBoxButton3"), 35, row
,
113 getApplication().messageBox(i18n
.
114 getString("messageBoxTitle3"),
115 i18n
.getString("messageBoxPrompt3"),
116 TMessageBox
.Type
.YESNO
);
122 addLabel(i18n
.getString("messageBoxLabel4"), 1, row
);
123 addButton(i18n
.getString("messageBoxButton4"), 35, row
,
126 getApplication().messageBox(i18n
.
127 getString("messageBoxTitle4"),
128 i18n
.getString("messageBoxPrompt4"),
129 TMessageBox
.Type
.YESNOCANCEL
);
135 addLabel(i18n
.getString("inputBoxLabel1"), 1, row
);
136 addButton(i18n
.getString("inputBoxButton1"), 35, row
,
139 TInputBox in
= getApplication().inputBox(i18n
.
140 getString("inputBoxTitle1"),
141 i18n
.getString("inputBoxPrompt1"),
142 i18n
.getString("inputBoxInput1"));
143 getApplication().messageBox(i18n
.
144 getString("inputBoxAnswerTitle1"),
145 MessageFormat
.format(i18n
.
146 getString("inputBoxAnswerPrompt1"), in
.getText()));
152 addLabel(i18n
.getString("inputBoxLabel2"), 1, row
);
153 addButton(i18n
.getString("inputBoxButton2"), 35, row
,
156 TInputBox in
= getApplication().inputBox(i18n
.
157 getString("inputBoxTitle2"),
158 i18n
.getString("inputBoxPrompt2"),
159 i18n
.getString("inputBoxInput2"),
160 TInputBox
.Type
.OKCANCEL
);
161 getApplication().messageBox(i18n
.
162 getString("inputBoxAnswerTitle2"),
163 MessageFormat
.format(i18n
.
164 getString("inputBoxAnswerPrompt2"), in
.getText(),
171 addButton(i18n
.getString("closeWindow"),
172 (getWidth() - 14) / 2, getHeight() - 4,
175 getApplication().closeWindow(DemoMsgBoxWindow
.this);
180 statusBar
= newStatusBar(i18n
.getString("statusBar"));
181 statusBar
.addShortcutKeypress(kbF1
, cmHelp
,
182 i18n
.getString("statusBarHelp"));
183 statusBar
.addShortcutKeypress(kbF2
, cmShell
,
184 i18n
.getString("statusBarShell"));
185 statusBar
.addShortcutKeypress(kbF3
, cmOpen
,
186 i18n
.getString("statusBarOpen"));
187 statusBar
.addShortcutKeypress(kbF10
, cmExit
,
188 i18n
.getString("statusBarExit"));