X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=README.md;h=c045f048ba706537f4082712a9955562fdd3e3a6;hb=d4a29741fb714f71fd47c9c6e8ae93b57f015821;hp=e9cd463ff6e357edefd810ac1a3ebd00d2f43658;hpb=624ce48ecf9a314771bd8f1616d8035b0253d8a0;p=nikiroo-utils.git diff --git a/README.md b/README.md index e9cd463..c045f04 100644 --- a/README.md +++ b/README.md @@ -31,21 +31,21 @@ import jexer.*; public class MyApplication extends TApplication { public MyApplication() { - super(); + super(); - // Create an editor window that has support for - // copy/paste, search text, arrow keys, horizontal - // and vertical scrollbar, etc. - addEditor(); + // Create an editor window that has support for + // copy/paste, search text, arrow keys, horizontal + // and vertical scrollbar, etc. + addEditor(); - // Create standard menus for File and Window - addFileMenu(); - addWindowMenu(); + // Create standard menus for File and Window + addFileMenu(); + addWindowMenu(); } public static void main(String [] args) { - MyApplication app = new MyApplication(); - app.run(); + MyApplication app = new MyApplication(); + app.run(); } } ``` @@ -59,23 +59,26 @@ version 1.0: 0.0.1: -- Base classes: - - Events - - Backend - - ECMABackend - - TApplication loop +- Get a movable window on screen + - TWidget + - TWindow + - TLabel 0.0.2: -- Get modal messagebox running without fibers - Port remaining d-tui functionality over - - All widgets + - All widgets except modal (e.g. messagebox/fileopen) 0.0.3: +- Get modal messagebox running without fibers (use two reader threads + with syncronization, don't bother with coroutines) +- TEditor, fixup keyboard movement + +0.0.4: + - ECMATerminal - Mouse 1006 mode parsing - - Win32 support (used for reading/writing sockets) - Bugs - TDirectoryList cannot be navigated only with keyboard - TTreeView cannot be navigated only with keyboard @@ -102,5 +105,3 @@ Wishlist features (2.0): - TTerminal - TComboBox - AWTBackend -- ECMABackend - - libgpm support