run jexer inside jexer
[fanfix.git] / README.md
... / ...
CommitLineData
1Jexer - Java Text User Interface library
2========================================
3
4WARNING: THIS IS ALPHA CODE!
5
6This library is intended to implement a text-based windowing system
7loosely reminiscient of Borland's [Turbo
8Vision](http://en.wikipedia.org/wiki/Turbo_Vision) library. For those
9wishing to use the actual C++ Turbo Vision library, see [Sergio
10Sigala's updated version](http://tvision.sourceforge.net/) that runs
11on many more platforms.
12
13Two backends are available:
14
15* System.in/out to a command-line ECMA-48 / ANSI X3.64 type terminal
16 (tested on Linux + xterm). I/O is handled through terminal escape
17 sequences generated by the library itself: ncurses is not required
18 or linked to. xterm mouse tracking using UTF8 coordinates is
19 supported. This is the default backend on non-Windows platforms.
20
21* Java AWT UI. This backend can be selected by setting
22 jexer.AWT=true. This is the default backend on Windows platforms.
23 AWT is experimental, please consider filing bugs when you encounter
24 them. The default window size for AWT is 132x40, which is set in
25 jexer.session.AWTSession.
26
27A demo application showing the existing UI controls is available via
28'java -jar jexer.jar' or 'java -Djexer.AWT=true -jar jexer.jar' .
29
30
31
32License
33-------
34
35This project is licensed LGPL ("GNU Lesser General Public License")
36version 3 or greater. See the file LICENSE for the full license text,
37which includes both the GPL v3 and the LGPL supplemental terms.
38
39
40
41Acknowledgements
42----------------
43
44Jexer makes use of the Terminus TrueType font [made available
45here](http://files.ax86.net/terminus-ttf/) .
46
47
48
49Usage
50-----
51
52Usage patterns are still being worked on, but in general the goal will
53be to build applications somewhat as follows:
54
55```Java
56import jexer.*;
57
58public class MyApplication extends TApplication {
59
60 public MyApplication() {
61 super();
62
63 // Create standard menus for File and Window
64 addFileMenu();
65 addWindowMenu();
66 }
67
68 public static void main(String [] args) {
69 MyApplication app = new MyApplication();
70 app.run();
71 }
72}
73```
74
75See the file demos/Demo1.java for detailed examples.
76
77
78
79Known Issues / Arbitrary Decisions
80----------------------------------
81
82Some arbitrary design decisions had to be made when either the
83obviously expected behavior did not happen or when a specification was
84ambiguous. This section describes such issues.
85
86 TTerminalWindow
87 ---------------
88
89 - TTerminalWindow will hang on input from the remote if the
90 TApplication is exited before the TTerminalWindow's process has
91 closed on its own. This is due to a Java limitation/interaction
92 between blocking reads (which is necessary to get UTF8 translation
93 correct) and file streams.
94
95 - See jexer.tterminal.ECMA48 for more specifics of terminal
96 emulation limitations.
97
98
99
100
101Roadmap
102-------
103
104Many tasks remain before calling this version 1.0:
105
1060.0.2:
107
108- Making TMenu keyboard accelerators active/inactive
109- AWT:
110 - Blinking cursor
111 - Handle kbTab (disable focus traversal BS)
112 - Block cursor
113- ECMA48Backend running on socket
114- TTreeView
115- TDirectoryList
116- TFileOpen
117- Decide on naming convention: getText, getValue, getLabel: one or all
118 of them?
119- Refactor:
120 - TKeypress:
121 - getCh() --> getChar()
122 - getAlt/getCtrl/getShift --> isAltDown / isCtrlDown / isShiftDown
123 - Other boolean getters --> isSomething
124
1250.0.3:
126
127- TEditor
128
1290.0.4:
130
131- Bugs
132 - TSubMenu keyboard mnemonic not working
133 - TDirectoryList cannot be navigated only with keyboard
134 - TTreeView cannot be navigated only with keyboard
135 - RangeViolation after dragging scrollbar up/down
136
1370.1.0:
138
139- TWindow
140 - "Smart placement" for new windows
141
142Wishlist features (2.0):
143
144- TTerminal
145 - Handle resize events (pass to child process)
146- Screen
147 - Allow complex characters in putCharXY() and detect them in putStrXY().
148- TComboBox
149- TListBox
150- TSpinner
151- TCalendar widget
152- TColorPicker widget
153- Drag and drop
154 - TEditor
155 - TField
156 - TText
157 - TTerminal
158 - TComboBox
159
160
161Screenshots
162-----------
163
164![Several Windows Open Including A Terminal](/screenshots/screenshot1.png?raw=true "Several Windows Open Including A Terminal")
165
166![Yo Dawg...](/screenshots/yodawg.png?raw=true "Yo Dawg, I heard you
167 like text windowing systems, so I ran a text windowing system inside your
168 text windowing system so you can have a terminal in your terminal.")