Commit | Line | Data |
---|---|---|
e3dfbd23 KL |
1 | /* |
2 | * Jexer - Java Text User Interface | |
3 | * | |
e16dda65 | 4 | * The MIT License (MIT) |
e3dfbd23 | 5 | * |
a69ed767 | 6 | * Copyright (C) 2019 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 | */ | |
29 | package jexer.demos; | |
30 | ||
a69ed767 KL |
31 | import java.io.File; |
32 | import java.io.InputStream; | |
33 | import java.io.IOException; | |
34 | import java.io.OutputStream; | |
35 | import java.io.PrintWriter; | |
36 | import java.io.Reader; | |
37 | import java.io.UnsupportedEncodingException; | |
38 | import java.util.ResourceBundle; | |
39 | ||
40 | import jexer.TApplication; | |
41 | import jexer.TEditColorThemeWindow; | |
42 | import jexer.TEditorWindow; | |
43 | import jexer.event.TMenuEvent; | |
44 | import jexer.menu.TMenu; | |
45 | import jexer.menu.TMenuItem; | |
46 | import jexer.menu.TSubMenu; | |
42873e30 KL |
47 | import jexer.backend.Backend; |
48 | import jexer.backend.SwingTerminal; | |
e3dfbd23 KL |
49 | |
50 | /** | |
51 | * The demo application itself. | |
52 | */ | |
7668cb45 | 53 | public class DemoApplication extends TApplication { |
e3dfbd23 | 54 | |
a69ed767 KL |
55 | /** |
56 | * Translated strings. | |
57 | */ | |
58 | private static ResourceBundle i18n = ResourceBundle.getBundle(DemoApplication.class.getName()); | |
59 | ||
43ad7b6c KL |
60 | // ------------------------------------------------------------------------ |
61 | // Constructors ----------------------------------------------------------- | |
62 | // ------------------------------------------------------------------------ | |
a043164f | 63 | |
55b4f29b KL |
64 | /** |
65 | * Public constructor. | |
66 | * | |
67 | * @param input an InputStream connected to the remote user, or null for | |
68 | * System.in. If System.in is used, then on non-Windows systems it will | |
69 | * be put in raw mode; shutdown() will (blindly!) put System.in in cooked | |
70 | * mode. input is always converted to a Reader with UTF-8 encoding. | |
71 | * @param output an OutputStream connected to the remote user, or null | |
72 | * for System.out. output is always converted to a Writer with UTF-8 | |
73 | * encoding. | |
74 | * @throws UnsupportedEncodingException if an exception is thrown when | |
75 | * creating the InputStreamReader | |
76 | */ | |
77 | public DemoApplication(final InputStream input, | |
78 | final OutputStream output) throws UnsupportedEncodingException { | |
79 | super(input, output); | |
80 | addAllWidgets(); | |
55d2b2c2 | 81 | |
a69ed767 | 82 | getBackend().setTitle(i18n.getString("applicationTitle")); |
55b4f29b | 83 | } |
a043164f | 84 | |
6985c572 KL |
85 | /** |
86 | * Public constructor. | |
87 | * | |
88 | * @param input the InputStream underlying 'reader'. Its available() | |
89 | * method is used to determine if reader.read() will block or not. | |
90 | * @param reader a Reader connected to the remote user. | |
91 | * @param writer a PrintWriter connected to the remote user. | |
92 | * @param setRawMode if true, set System.in into raw mode with stty. | |
93 | * This should in general not be used. It is here solely for Demo3, | |
94 | * which uses System.in. | |
95 | * @throws IllegalArgumentException if input, reader, or writer are null. | |
96 | */ | |
97 | public DemoApplication(final InputStream input, final Reader reader, | |
98 | final PrintWriter writer, final boolean setRawMode) { | |
99 | super(input, reader, writer, setRawMode); | |
100 | addAllWidgets(); | |
55d2b2c2 | 101 | |
a69ed767 | 102 | getBackend().setTitle(i18n.getString("applicationTitle")); |
6985c572 KL |
103 | } |
104 | ||
105 | /** | |
106 | * Public constructor. | |
107 | * | |
108 | * @param input the InputStream underlying 'reader'. Its available() | |
109 | * method is used to determine if reader.read() will block or not. | |
110 | * @param reader a Reader connected to the remote user. | |
111 | * @param writer a PrintWriter connected to the remote user. | |
112 | * @throws IllegalArgumentException if input, reader, or writer are null. | |
113 | */ | |
114 | public DemoApplication(final InputStream input, final Reader reader, | |
115 | final PrintWriter writer) { | |
116 | ||
117 | this(input, reader, writer, false); | |
118 | } | |
119 | ||
42873e30 KL |
120 | /** |
121 | * Public constructor. | |
122 | * | |
123 | * @param backend a Backend that is already ready to go. | |
124 | */ | |
125 | public DemoApplication(final Backend backend) { | |
126 | super(backend); | |
127 | ||
128 | addAllWidgets(); | |
129 | } | |
130 | ||
43ad7b6c KL |
131 | /** |
132 | * Public constructor. | |
133 | * | |
134 | * @param backendType one of the TApplication.BackendType values | |
135 | * @throws Exception if TApplication can't instantiate the Backend. | |
136 | */ | |
137 | public DemoApplication(final BackendType backendType) throws Exception { | |
138 | super(backendType); | |
139 | addAllWidgets(); | |
a69ed767 | 140 | getBackend().setTitle(i18n.getString("applicationTitle")); |
43ad7b6c KL |
141 | } |
142 | ||
143 | // ------------------------------------------------------------------------ | |
144 | // TApplication ----------------------------------------------------------- | |
145 | // ------------------------------------------------------------------------ | |
146 | ||
a043164f KL |
147 | /** |
148 | * Handle menu events. | |
149 | * | |
150 | * @param menu menu event | |
151 | * @return if true, the event was processed and should not be passed onto | |
152 | * a window | |
153 | */ | |
154 | @Override | |
329fd62e | 155 | public boolean onMenu(final TMenuEvent menu) { |
3649b921 | 156 | |
42873e30 KL |
157 | if (menu.getId() == 3000) { |
158 | // Bigger +2 | |
159 | assert (getScreen() instanceof SwingTerminal); | |
160 | SwingTerminal terminal = (SwingTerminal) getScreen(); | |
161 | terminal.setFontSize(terminal.getFontSize() + 2); | |
162 | return true; | |
163 | } | |
164 | if (menu.getId() == 3001) { | |
165 | // Smaller -2 | |
166 | assert (getScreen() instanceof SwingTerminal); | |
167 | SwingTerminal terminal = (SwingTerminal) getScreen(); | |
168 | terminal.setFontSize(terminal.getFontSize() - 2); | |
169 | return true; | |
170 | } | |
171 | ||
3649b921 KL |
172 | if (menu.getId() == 2050) { |
173 | new TEditColorThemeWindow(this); | |
174 | return true; | |
175 | } | |
176 | ||
a043164f KL |
177 | if (menu.getId() == TMenu.MID_OPEN_FILE) { |
178 | try { | |
179 | String filename = fileOpenBox("."); | |
180 | if (filename != null) { | |
181 | try { | |
df602ccf | 182 | new TEditorWindow(this, new File(filename)); |
a043164f KL |
183 | } catch (IOException e) { |
184 | e.printStackTrace(); | |
185 | } | |
186 | } | |
187 | } catch (IOException e) { | |
188 | e.printStackTrace(); | |
189 | } | |
190 | return true; | |
191 | } | |
192 | return super.onMenu(menu); | |
193 | } | |
194 | ||
43ad7b6c KL |
195 | // ------------------------------------------------------------------------ |
196 | // DemoApplication -------------------------------------------------------- | |
197 | // ------------------------------------------------------------------------ | |
198 | ||
55b4f29b | 199 | /** |
43ad7b6c | 200 | * Add all the widgets of the demo. |
55b4f29b | 201 | */ |
43ad7b6c KL |
202 | private void addAllWidgets() { |
203 | new DemoMainWindow(this); | |
204 | ||
205 | // Add the menus | |
e23ea538 | 206 | addToolMenu(); |
43ad7b6c KL |
207 | addFileMenu(); |
208 | addEditMenu(); | |
209 | ||
a69ed767 KL |
210 | TMenu demoMenu = addMenu(i18n.getString("demo")); |
211 | TMenuItem item = demoMenu.addItem(2000, i18n.getString("checkable")); | |
43ad7b6c | 212 | item.setCheckable(true); |
a69ed767 | 213 | item = demoMenu.addItem(2001, i18n.getString("disabled")); |
43ad7b6c | 214 | item.setEnabled(false); |
a69ed767 KL |
215 | item = demoMenu.addItem(2002, i18n.getString("normal")); |
216 | TSubMenu subMenu = demoMenu.addSubMenu(i18n.getString("subMenu")); | |
217 | item = demoMenu.addItem(2010, i18n.getString("normal")); | |
218 | item = demoMenu.addItem(2050, i18n.getString("colors")); | |
43ad7b6c | 219 | |
a69ed767 | 220 | item = subMenu.addItem(2000, i18n.getString("checkableSub")); |
43ad7b6c | 221 | item.setCheckable(true); |
a69ed767 | 222 | item = subMenu.addItem(2001, i18n.getString("disabledSub")); |
43ad7b6c | 223 | item.setEnabled(false); |
a69ed767 | 224 | item = subMenu.addItem(2002, i18n.getString("normalSub")); |
43ad7b6c | 225 | |
a69ed767 KL |
226 | subMenu = subMenu.addSubMenu(i18n.getString("subMenu")); |
227 | item = subMenu.addItem(2000, i18n.getString("checkableSub")); | |
43ad7b6c | 228 | item.setCheckable(true); |
a69ed767 | 229 | item = subMenu.addItem(2001, i18n.getString("disabledSub")); |
43ad7b6c | 230 | item.setEnabled(false); |
a69ed767 | 231 | item = subMenu.addItem(2002, i18n.getString("normalSub")); |
43ad7b6c KL |
232 | |
233 | if (getScreen() instanceof SwingTerminal) { | |
a69ed767 KL |
234 | TMenu swingMenu = addMenu(i18n.getString("swing")); |
235 | item = swingMenu.addItem(3000, i18n.getString("bigger")); | |
236 | item = swingMenu.addItem(3001, i18n.getString("smaller")); | |
43ad7b6c KL |
237 | } |
238 | ||
239 | addWindowMenu(); | |
240 | addHelpMenu(); | |
e3dfbd23 | 241 | } |
43ad7b6c | 242 | |
e3dfbd23 | 243 | } |