stubs for TFileOpenBox, cleanup putStringXY
[fanfix.git] / src / jexer / demos / DemoApplication.java
CommitLineData
e3dfbd23
KL
1/*
2 * Jexer - Java Text User Interface
3 *
4 * License: LGPLv3 or later
5 *
6 * This module is licensed under the GNU Lesser General Public License
7 * Version 3. Please see the file "COPYING" in this directory for more
8 * information about the GNU Lesser General Public License Version 3.
9 *
10 * Copyright (C) 2015 Kevin Lamonte
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU Lesser General Public License
14 * as published by the Free Software Foundation; either version 3 of
15 * the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 * General Public License for more details.
21 *
22 * You should have received a copy of the GNU Lesser General Public
23 * License along with this program; if not, see
24 * http://www.gnu.org/licenses/, or write to the Free Software
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
26 * 02110-1301 USA
27 *
28 * @author Kevin Lamonte [kevin.lamonte@gmail.com]
29 * @version 1
30 */
31package jexer.demos;
32
55b4f29b
KL
33import java.io.*;
34
e3dfbd23 35import jexer.*;
e3dfbd23
KL
36import jexer.menu.*;
37
38/**
39 * The demo application itself.
40 */
7668cb45 41public class DemoApplication extends TApplication {
e3dfbd23
KL
42
43 /**
55b4f29b 44 * Add all the widgets of the demo.
e3dfbd23 45 */
55b4f29b 46 private void addAllWidgets() {
e3dfbd23
KL
47 new DemoMainWindow(this);
48
49 // Add the menus
50 addFileMenu();
51 addEditMenu();
52
53 TMenu demoMenu = addMenu("&Demo");
54 TMenuItem item = demoMenu.addItem(2000, "&Checkable");
55 item.setCheckable(true);
56 item = demoMenu.addItem(2001, "Disabled");
57 item.setEnabled(false);
58 item = demoMenu.addItem(2002, "&Normal");
59 TSubMenu subMenu = demoMenu.addSubMenu("Sub-&Menu");
60 item = demoMenu.addItem(2010, "N&ormal A&&D");
61
62 item = subMenu.addItem(2000, "&Checkable (sub)");
63 item.setCheckable(true);
64 item = subMenu.addItem(2001, "Disabled (sub)");
65 item.setEnabled(false);
66 item = subMenu.addItem(2002, "&Normal (sub)");
67
68 subMenu = subMenu.addSubMenu("Sub-&Menu");
69 item = subMenu.addItem(2000, "&Checkable (sub)");
70 item.setCheckable(true);
71 item = subMenu.addItem(2001, "Disabled (sub)");
72 item.setEnabled(false);
73 item = subMenu.addItem(2002, "&Normal (sub)");
74
75 addWindowMenu();
55b4f29b
KL
76 }
77
78 /**
79 * Public constructor.
80 *
81 * @param input an InputStream connected to the remote user, or null for
82 * System.in. If System.in is used, then on non-Windows systems it will
83 * be put in raw mode; shutdown() will (blindly!) put System.in in cooked
84 * mode. input is always converted to a Reader with UTF-8 encoding.
85 * @param output an OutputStream connected to the remote user, or null
86 * for System.out. output is always converted to a Writer with UTF-8
87 * encoding.
88 * @throws UnsupportedEncodingException if an exception is thrown when
89 * creating the InputStreamReader
90 */
91 public DemoApplication(final InputStream input,
92 final OutputStream output) throws UnsupportedEncodingException {
93 super(input, output);
94 addAllWidgets();
95 }
96
97 /**
98 * Public constructor.
99 *
100 * @param backendType one of the TApplication.BackendType values
101 * @throws Exception if TApplication can't instantiate the Backend.
102 */
103 public DemoApplication(BackendType backendType) throws Exception {
104 super(backendType);
105 addAllWidgets();
e3dfbd23
KL
106 }
107}