X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=README.md;h=bbe38d640af88567e030fe45f93132870b34ad8c;hb=128e5be1ffb65d047d8461ea1cfb65c22686ec91;hp=cc1d44cb9c412703bc065b7587e301912c623a4c;hpb=9edb442b712de01d1b7af81d1d57a29c2c6e7871;p=fanfix.git diff --git a/README.md b/README.md index cc1d44c..bbe38d6 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(); } } ``` @@ -54,28 +54,33 @@ public class MyApplication extends TApplication { Roadmap ------- -This is a work in progress. Many tasks remain before calling this -version 1.0: +Many tasks remain before calling this version 1.0: 0.0.1: -- Base classes: - - TWidget - - TWindow -- package-info's -- Incorporate checkstyle ant task - - Fix all noted issues except use of tabs +- TDirectoryList +- TMessageBox +- THScroller / TVScroller +- TText +- TTreeView 0.0.2: -- Get modal messagebox running without fibers (use two reader threads - with syncronization, don't bother with coroutines) -- Port remaining d-tui functionality over - - All widgets +- TEditor +- TFileOpen +- TTerminal 0.0.3: -- TEditor, fixup keyboard movement +- Bugs + - TSubMenu keyboard mnemonic not working + - kbDel assertion failure in TMenu (MID_CLEAR) +- TEditor + - Word wrap + - Forward/backward word + - Search + - Replace + - Cut/Copy/Paste 0.0.4: