TWindowBackend
[nikiroo-utils.git] / src / jexer / demos / DemoMainWindow.java
CommitLineData
e3dfbd23
KL
1/*
2 * Jexer - Java Text User Interface
3 *
e16dda65 4 * The MIT License (MIT)
e3dfbd23 5 *
a2018e99 6 * Copyright (C) 2017 Kevin Lamonte
e3dfbd23 7 *
e16dda65
KL
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:
e3dfbd23 14 *
e16dda65
KL
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
e3dfbd23 17 *
e16dda65
KL
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.
e3dfbd23
KL
25 *
26 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
27 * @version 1
28 */
29package jexer.demos;
30
31import jexer.*;
2ce6dab2
KL
32import static jexer.TCommand.*;
33import static jexer.TKeypress.*;
e3dfbd23
KL
34
35/**
36 * This is the main "demo" application window. It makes use of the TTimer,
37 * TProgressBox, TLabel, TButton, and TField widgets.
38 */
7668cb45 39public class DemoMainWindow extends TWindow {
e3dfbd23
KL
40
41 // Timer that increments a number.
42 private TTimer timer;
43
44 // Timer label is updated with timer ticks.
45 TLabel timerLabel;
46
47 /**
48 * We need to override onClose so that the timer will no longer be called
49 * after we close the window. TTimers currently are completely unaware
50 * of the rest of the UI classes.
51 */
52 @Override
53 public void onClose() {
54 getApplication().removeTimer(timer);
55 }
56
57 /**
58 * Construct demo window. It will be centered on screen.
59 *
60 * @param parent the main application
61 */
62 public DemoMainWindow(final TApplication parent) {
63 this(parent, CENTERED | RESIZABLE);
64 }
65
66 // These are used by the timer loop. They have to be at class scope so
67 // that they can be accessed by the anonymous TAction class.
68 int timerI = 0;
69 TProgressBar progressBar;
70
71 /**
72 * Constructor.
73 *
74 * @param parent the main application
75 * @param flags bitmask of MODAL, CENTERED, or RESIZABLE
76 */
77 private DemoMainWindow(final TApplication parent, final int flags) {
78 // Construct a demo window. X and Y don't matter because it will be
79 // centered on screen.
2ce6dab2 80 super(parent, "Demo Window", 0, 0, 60, 22, flags);
e3dfbd23
KL
81
82 int row = 1;
83
84 // Add some widgets
2ce6dab2
KL
85 addLabel("Message Boxes", 1, row);
86 addButton("&MessageBoxes", 35, row,
87 new TAction() {
88 public void DO() {
89 new DemoMsgBoxWindow(getApplication());
e3dfbd23 90 }
2ce6dab2
KL
91 }
92 );
e3dfbd23
KL
93 row += 2;
94
95 addLabel("Open me as modal", 1, row);
96 addButton("W&indow", 35, row,
97 new TAction() {
98 public void DO() {
99 new DemoMainWindow(getApplication(), MODAL);
100 }
101 }
102 );
e3dfbd23
KL
103 row += 2;
104
2ce6dab2
KL
105 addLabel("Text fields", 1, row);
106 addButton("Field&s", 35, row,
107 new TAction() {
108 public void DO() {
109 new DemoTextFieldWindow(getApplication());
110 }
111 }
112 );
113 row += 2;
e3dfbd23 114
2ce6dab2
KL
115 addLabel("Radio buttons and checkboxes", 1, row);
116 addButton("&Checkboxes", 35, row,
117 new TAction() {
118 public void DO() {
119 new DemoCheckboxWindow(getApplication());
e3dfbd23 120 }
2ce6dab2
KL
121 }
122 );
e3dfbd23
KL
123 row += 2;
124
125 /*
126 if (!isModal()) {
127 addLabel("Editor window", 1, row);
128 addButton("Edito&r", 35, row,
129 {
130 new TEditor(application, 0, 0, 60, 15);
131 }
132 );
133 }
134 row += 2;
135 */
136
2ce6dab2
KL
137 addLabel("Text areas", 1, row);
138 addButton("&Text", 35, row,
139 new TAction() {
140 public void DO() {
141 new DemoTextWindow(getApplication());
e3dfbd23 142 }
2ce6dab2
KL
143 }
144 );
e3dfbd23
KL
145 row += 2;
146
2ce6dab2
KL
147 addLabel("Tree views", 1, row);
148 addButton("Tree&View", 35, row,
149 new TAction() {
150 public void DO() {
151 try {
152 new DemoTreeViewWindow(getApplication());
153 } catch (Exception e) {
154 e.printStackTrace();
7668cb45 155 }
e3dfbd23 156 }
2ce6dab2
KL
157 }
158 );
e3dfbd23 159 row += 2;
e3dfbd23 160
2ce6dab2
KL
161 addLabel("Terminal", 1, row);
162 addButton("Termi&nal", 35, row,
163 new TAction() {
164 public void DO() {
165 getApplication().openTerminal(0, 0);
e3dfbd23 166 }
2ce6dab2
KL
167 }
168 );
e3dfbd23
KL
169 row += 2;
170
2ce6dab2
KL
171 addLabel("Color editor", 1, row);
172 addButton("Co&lors", 35, row,
173 new TAction() {
174 public void DO() {
175 new TEditColorThemeWindow(getApplication());
3649b921 176 }
2ce6dab2
KL
177 }
178 );
3649b921
KL
179 row += 2;
180
e3dfbd23
KL
181 progressBar = addProgressBar(1, row, 22, 0);
182 row++;
183 timerLabel = addLabel("Timer", 1, row);
184 timer = getApplication().addTimer(250, true,
185 new TAction() {
186
187 public void DO() {
188 timerLabel.setLabel(String.format("Timer: %d", timerI));
189 timerLabel.setWidth(timerLabel.getLabel().length());
190 if (timerI < 100) {
191 timerI++;
192 }
193 progressBar.setValue(timerI);
194 }
195 }
196 );
2ce6dab2
KL
197
198 statusBar = newStatusBar("Demo Main Window");
199 statusBar.addShortcutKeypress(kbF1, cmHelp, "Help");
200 statusBar.addShortcutKeypress(kbF2, cmShell, "Shell");
201 statusBar.addShortcutKeypress(kbF3, cmOpen, "Open");
202 statusBar.addShortcutKeypress(kbF10, cmExit, "Exit");
e3dfbd23
KL
203 }
204}