2 * Jexer - Java Text User Interface
4 * The MIT License (MIT)
6 * Copyright (C) 2017 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
.util
.ArrayList
;
32 import java
.util
.List
;
33 import java
.util
.ResourceBundle
;
35 import jexer
.event
.TKeypressEvent
;
36 import static jexer
.TKeypress
.*;
39 * TMessageBox is a system-modal dialog with buttons for OK, Cancel, Yes, or
44 * box = application.messageBox(title, caption,
45 * TMessageBox.Type.OK | TMessageBox.Type.CANCEL);
47 * if (box.getResult() == TMessageBox.OK) {
48 * ... the user pressed OK, do stuff ...
54 public class TMessageBox
extends TWindow
{
59 private static final ResourceBundle i18n
= ResourceBundle
.getBundle(TMessageBox
.class.getName());
61 // ------------------------------------------------------------------------
62 // Constants --------------------------------------------------------------
63 // ------------------------------------------------------------------------
66 * Message boxes have these supported types.
75 * Show both OK and Cancel buttons.
80 * Show both Yes and No buttons.
85 * Show Yes, No, and Cancel buttons.
91 * Message boxes have these possible results.
100 * User clicked "Cancel".
105 * User clicked "Yes".
115 // ------------------------------------------------------------------------
116 // Variables --------------------------------------------------------------
117 // ------------------------------------------------------------------------
120 * The type of this message box.
127 private List
<TButton
> buttons
;
130 * Which button was clicked: OK, CANCEL, YES, or NO.
132 private Result result
= Result
.OK
;
134 // ------------------------------------------------------------------------
135 // Constructors -----------------------------------------------------------
136 // ------------------------------------------------------------------------
139 * Public constructor. The message box will be centered on screen.
141 * @param application TApplication that manages this window
142 * @param title window title, will be centered along the top border
143 * @param caption message to display. Use embedded newlines to get a
146 public TMessageBox(final TApplication application
, final String title
,
147 final String caption
) {
149 this(application
, title
, caption
, Type
.OK
, true);
153 * Public constructor. The message box will be centered on screen.
155 * @param application TApplication that manages this window
156 * @param title window title, will be centered along the top border
157 * @param caption message to display. Use embedded newlines to get a
159 * @param type one of the Type constants. Default is Type.OK.
161 public TMessageBox(final TApplication application
, final String title
,
162 final String caption
, final Type type
) {
164 this(application
, title
, caption
, type
, true);
168 * Public constructor. The message box will be centered on screen.
170 * @param application TApplication that manages this window
171 * @param title window title, will be centered along the top border
172 * @param caption message to display. Use embedded newlines to get a
174 * @param type one of the Type constants. Default is Type.OK.
175 * @param yield if true, yield this Thread. Subclasses need to set this
176 * to false and yield at their end of their constructor intead.
178 protected TMessageBox(final TApplication application
, final String title
,
179 final String caption
, final Type type
, final boolean yield
) {
181 // Start as 50x50 at (1, 1). These will be changed later.
182 super(application
, title
, 1, 1, 100, 100, CENTERED
| MODAL
);
184 // Hang onto type so that we can provide more convenience in
188 // Determine width and height
189 String
[] lines
= caption
.split("\n");
190 int width
= title
.length() + 12;
191 setHeight(6 + lines
.length
);
192 for (String line
: lines
) {
193 if (line
.length() + 4 > width
) {
194 width
= line
.length() + 4;
198 if (getWidth() > getScreen().getWidth()) {
199 setWidth(getScreen().getWidth());
201 // Re-center window to get an appropriate (x, y)
204 // Now add my elements
206 for (String line
: lines
) {
207 addLabel(line
, 1, lineI
, "twindow.background.modal");
213 buttons
= new ArrayList
<TButton
>();
217 // Setup button actions
222 if (getWidth() < 15) {
225 buttonX
= (getWidth() - 11) / 2;
226 buttons
.add(addButton(i18n
.getString("okButton"), buttonX
, lineI
,
230 getApplication().closeWindow(TMessageBox
.this);
238 result
= Result
.CANCEL
;
239 if (getWidth() < 26) {
242 buttonX
= (getWidth() - 22) / 2;
243 buttons
.add(addButton(i18n
.getString("okButton"), buttonX
, lineI
,
247 getApplication().closeWindow(TMessageBox
.this);
253 buttons
.add(addButton(i18n
.getString("cancelButton"), buttonX
, lineI
,
256 result
= Result
.CANCEL
;
257 getApplication().closeWindow(TMessageBox
.this);
266 if (getWidth() < 20) {
269 buttonX
= (getWidth() - 16) / 2;
270 buttons
.add(addButton(i18n
.getString("yesButton"), buttonX
, lineI
,
274 getApplication().closeWindow(TMessageBox
.this);
280 buttons
.add(addButton(i18n
.getString("noButton"), buttonX
, lineI
,
284 getApplication().closeWindow(TMessageBox
.this);
292 result
= Result
.CANCEL
;
293 if (getWidth() < 31) {
296 buttonX
= (getWidth() - 27) / 2;
297 buttons
.add(addButton(i18n
.getString("yesButton"), buttonX
, lineI
,
301 getApplication().closeWindow(TMessageBox
.this);
307 buttons
.add(addButton(i18n
.getString("noButton"), buttonX
, lineI
,
311 getApplication().closeWindow(TMessageBox
.this);
317 buttons
.add(addButton(i18n
.getString("cancelButton"), buttonX
,
321 result
= Result
.CANCEL
;
322 getApplication().closeWindow(TMessageBox
.this);
330 throw new IllegalArgumentException("Invalid message box type: " + type
);
333 // Set the secondaryThread to run me
334 getApplication().enableSecondaryEventReceiver(this);
337 // Yield to the secondary thread. When I come back from the
338 // constructor response will already be set.
339 getApplication().yield();
343 // ------------------------------------------------------------------------
344 // TWindow ----------------------------------------------------------------
345 // ------------------------------------------------------------------------
350 * @param keypress keystroke event
353 public void onKeypress(final TKeypressEvent keypress
) {
355 if (this instanceof TInputBox
) {
356 super.onKeypress(keypress
);
360 // Some convenience for message boxes: Alt won't be needed for the
365 if (keypress
.equals(kbO
)) {
366 buttons
.get(0).dispatch();
372 if (keypress
.equals(kbO
)) {
373 buttons
.get(0).dispatch();
375 } else if (keypress
.equals(kbC
)) {
376 buttons
.get(1).dispatch();
382 if (keypress
.equals(kbY
)) {
383 buttons
.get(0).dispatch();
385 } else if (keypress
.equals(kbN
)) {
386 buttons
.get(1).dispatch();
392 if (keypress
.equals(kbY
)) {
393 buttons
.get(0).dispatch();
395 } else if (keypress
.equals(kbN
)) {
396 buttons
.get(1).dispatch();
398 } else if (keypress
.equals(kbC
)) {
399 buttons
.get(2).dispatch();
405 throw new IllegalArgumentException("Invalid message box type: " +
409 super.onKeypress(keypress
);
412 // ------------------------------------------------------------------------
413 // TMessageBox ------------------------------------------------------------
414 // ------------------------------------------------------------------------
419 * @return the result: OK, CANCEL, YES, or NO.
421 public final Result
getResult() {