X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=README.md;h=4d4900d4b5fcd82b770073f27158e45dd01ef80b;hb=8dc20d387df1c9344e324d6b8a0d0d7939a47940;hp=cc1d44cb9c412703bc065b7587e301912c623a4c;hpb=9edb442b712de01d1b7af81d1d57a29c2c6e7871;p=nikiroo-utils.git diff --git a/README.md b/README.md index cc1d44c..4d4900d 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,22 +59,18 @@ 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 +- TMenu +- TButton 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 + - 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: