Commit | Line | Data |
---|---|---|
7668cb45 KL |
1 | /* |
2 | * Jexer - Java Text User Interface | |
3 | * | |
e16dda65 | 4 | * The MIT License (MIT) |
7668cb45 | 5 | * |
a69ed767 | 6 | * Copyright (C) 2019 Kevin Lamonte |
7668cb45 | 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: | |
7668cb45 | 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. | |
7668cb45 | 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. | |
7668cb45 KL |
25 | * |
26 | * @author Kevin Lamonte [kevin.lamonte@gmail.com] | |
27 | * @version 1 | |
28 | */ | |
29 | package jexer.demos; | |
30 | ||
0d47c546 | 31 | import java.io.IOException; |
a69ed767 | 32 | import java.util.ResourceBundle; |
0d47c546 | 33 | |
a69ed767 KL |
34 | import jexer.TApplication; |
35 | import jexer.TWidget; | |
36 | import jexer.TWindow; | |
37 | import jexer.event.TResizeEvent; | |
38 | import jexer.ttree.TDirectoryTreeItem; | |
39 | import jexer.ttree.TTreeViewWidget; | |
2ce6dab2 KL |
40 | import static jexer.TCommand.*; |
41 | import static jexer.TKeypress.*; | |
7668cb45 KL |
42 | |
43 | /** | |
44 | * This window demonstates the TTreeView widget. | |
45 | */ | |
46 | public class DemoTreeViewWindow extends TWindow { | |
47 | ||
a69ed767 KL |
48 | /** |
49 | * Translated strings. | |
50 | */ | |
51 | private static final ResourceBundle i18n = ResourceBundle.getBundle(DemoTreeViewWindow.class.getName()); | |
52 | ||
43ad7b6c KL |
53 | // ------------------------------------------------------------------------ |
54 | // Variables -------------------------------------------------------------- | |
55 | // ------------------------------------------------------------------------ | |
56 | ||
7668cb45 KL |
57 | /** |
58 | * Hang onto my TTreeView so I can resize it with the window. | |
59 | */ | |
d36057df | 60 | private TTreeViewWidget treeView; |
7668cb45 | 61 | |
43ad7b6c KL |
62 | // ------------------------------------------------------------------------ |
63 | // Constructors ----------------------------------------------------------- | |
64 | // ------------------------------------------------------------------------ | |
65 | ||
7668cb45 KL |
66 | /** |
67 | * Public constructor. | |
68 | * | |
69 | * @param parent the main application | |
329fd62e | 70 | * @throws IOException if a java.io operation throws |
7668cb45 | 71 | */ |
329fd62e | 72 | public DemoTreeViewWindow(final TApplication parent) throws IOException { |
a69ed767 KL |
73 | super(parent, i18n.getString("windowTitle"), 0, 0, 44, 16, |
74 | TWindow.RESIZABLE); | |
7668cb45 KL |
75 | |
76 | // Load the treeview with "stuff" | |
d36057df | 77 | treeView = addTreeViewWidget(1, 1, 40, 12); |
0d47c546 | 78 | new TDirectoryTreeItem(treeView, ".", true); |
2ce6dab2 | 79 | |
a69ed767 KL |
80 | statusBar = newStatusBar(i18n.getString("statusBar")); |
81 | statusBar.addShortcutKeypress(kbF1, cmHelp, | |
82 | i18n.getString("statusBarHelp")); | |
83 | statusBar.addShortcutKeypress(kbF2, cmShell, | |
84 | i18n.getString("statusBarShell")); | |
85 | statusBar.addShortcutKeypress(kbF3, cmOpen, | |
86 | i18n.getString("statusBarOpen")); | |
87 | statusBar.addShortcutKeypress(kbF10, cmExit, | |
88 | i18n.getString("statusBarExit")); | |
7668cb45 KL |
89 | } |
90 | ||
43ad7b6c KL |
91 | // ------------------------------------------------------------------------ |
92 | // TWindow ---------------------------------------------------------------- | |
93 | // ------------------------------------------------------------------------ | |
94 | ||
7668cb45 KL |
95 | /** |
96 | * Handle window/screen resize events. | |
97 | * | |
98 | * @param resize resize event | |
99 | */ | |
100 | @Override | |
329fd62e | 101 | public void onResize(final TResizeEvent resize) { |
7668cb45 | 102 | if (resize.getType() == TResizeEvent.Type.WIDGET) { |
56661844 KL |
103 | // Resize the treeView field |
104 | TResizeEvent treeSize = new TResizeEvent(TResizeEvent.Type.WIDGET, | |
105 | resize.getWidth() - 4, resize.getHeight() - 4); | |
106 | treeView.onResize(treeSize); | |
7668cb45 KL |
107 | return; |
108 | } | |
109 | ||
110 | // Pass to children instead | |
111 | for (TWidget widget: getChildren()) { | |
112 | widget.onResize(resize); | |
113 | } | |
114 | } | |
115 | ||
116 | } |