X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=README.md;h=4d4900d4b5fcd82b770073f27158e45dd01ef80b;hb=8dc20d387df1c9344e324d6b8a0d0d7939a47940;hp=ced2867e385357383e4ca7e7500e04255132cb6c;hpb=7b5261bc5b641e0769902f014e3b21f61050b02b;p=nikiroo-utils.git diff --git a/README.md b/README.md index ced2867..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,17 +59,8 @@ 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 +- TMenu +- TButton 0.0.2: