X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=README.md;h=f36e850661ed5f8aad56eb0d4a068a73b56ec478;hb=00d2622b0fff2411dc81ee2a0cc43a5f3f52564c;hp=ced2867e385357383e4ca7e7500e04255132cb6c;hpb=7b5261bc5b641e0769902f014e3b21f61050b02b;p=nikiroo-utils.git diff --git a/README.md b/README.md index ced2867..f36e850 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,33 +54,34 @@ 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: - - TCommand use getters/setters - - TCommand.Type: switch to int so that subclasses can make more - kinds of commands - - TKeypress use getters/setters to make immutable - - TKeypressEvent use getters/setters to make immutable - - TMouseEvent use getters/setters to make immutable -- Get a movable window on screen - - TWidget - - TWindow - - TLabel +- TDirectoryList +- TField +- TMessageBox +- 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: