many fixes
[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 closing the TTerminalWindow. This
91 is due to a Java limitation/interaction between blocking reads
92 (necessary to get UTF8 translation correct) and file streams.
93
94 - See jexer.tterminal.ECMA48 for more specifics of terminal
95 emulation limitations.
96
97
98Roadmap
99-------
100
101Many tasks remain before calling this version 1.0:
102
1030.0.2:
104
105- AWT:
106 - Blinking cursor
107 - Handle kbTab (disable focus traversal BS)
108- ECMA48Backend running on socket
109- TTreeView
110- TDirectoryList
111- TFileOpen
112- Decide on naming convention: getText, getValue, getLabel: one or all
113 of them?
114
1150.0.3:
116
117- TEditor
118
1190.0.4:
120
121- Bugs
122 - TSubMenu keyboard mnemonic not working
123 - Making TMenu keyboard accelerators active/inactive
124 - TDirectoryList cannot be navigated only with keyboard
125 - TTreeView cannot be navigated only with keyboard
126 - RangeViolation after dragging scrollbar up/down
127
1280.1.0:
129
130- TWindow
131 - "Smart placement" for new windows
132- ECMATerminal
133 - Mouse 1006 mode parsing
134
135Wishlist features (2.0):
136
137- TTerminal
138 - Handle resize events (pass to child process)
139 - xterm mouse handling
140- Screen
141 - Allow complex characters in putCharXY() and detect them in putStrXY().
142- TComboBox
143- TListBox
144- TSpinner
145- TCalendar widget
146- TColorPicker widget
147- Drag and drop
148 - TEditor
149 - TField
150 - TText
151 - TTerminal
152 - TComboBox
153
154
155Screenshots
156-----------
157
158![Several Windows Open Including A Terminal](/screenshots/screenshot1.png?raw=true "Several Windows Open Including A Terminal")
159