X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=README.md;h=f097e77844ef40e149c469489008caffaf1a8c1c;hb=8e688b9211599d240be67e5cf62dfe48520378f2;hp=c045f048ba706537f4082712a9955562fdd3e3a6;hpb=d4a29741fb714f71fd47c9c6e8ae93b57f015821;p=nikiroo-utils.git diff --git a/README.md b/README.md index c045f04..f097e77 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,21 +59,35 @@ version 1.0: 0.0.1: -- Get a movable window on screen - - TWidget - - TWindow - - TLabel +- TButton +- TCheckbox +- TDirectoryList +- TField +- TMessageBox +- TProgressBar +- TTimer +- TRadioGroup / TRadioButton +- THScroller / TVScroller +- TText +- TTreeView 0.0.2: -- Port remaining d-tui functionality over - - All widgets except modal (e.g. messagebox/fileopen) +- TEditor +- TFileOpen +- TTerminal 0.0.3: -- Get modal messagebox running without fibers (use two reader threads - with syncronization, don't bother with coroutines) -- 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: