Switchable windows
[nikiroo-utils.git] / README.md
index c045f048ba706537f4082712a9955562fdd3e3a6..4d4900d4b5fcd82b770073f27158e45dd01ef80b 100644 (file)
--- 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,10 +59,8 @@ version 1.0:
 
 0.0.1:
 
-- Get a movable window on screen
-  - TWidget
-  - TWindow
-  - TLabel
+- TMenu
+- TButton
 
 0.0.2: