color chooser widget
[fanfix.git] / src / jexer / demos / DemoMainWindow.java
index 9a834645c5aa6c6176453fc6838dc452ec2b7d6f..72ee43f49a813414d63c60ab4b3fa7decef52e57 100644 (file)
@@ -77,7 +77,7 @@ public class DemoMainWindow extends TWindow {
     private DemoMainWindow(final TApplication parent, final int flags) {
         // Construct a demo window.  X and Y don't matter because it will be
         // centered on screen.
-        super(parent, "Demo Window", 0, 0, 60, 23, flags);
+        super(parent, "Demo Window", 0, 0, 60, 24, flags);
 
         int row = 1;
 
@@ -113,7 +113,7 @@ public class DemoMainWindow extends TWindow {
         addPasswordField(35, row++, 15, false);
         addLabel("Fixed-width password:", 1, row);
         addPasswordField(35, row++, 15, true, "hunter2");
-        row += 2;
+        row += 1;
 
         if (!isModal()) {
             addLabel("Radio buttons and checkboxes", 1, row);
@@ -179,6 +179,18 @@ public class DemoMainWindow extends TWindow {
         }
         row += 2;
 
+        if (!isModal()) {
+            addLabel("Color editor", 1, row);
+            addButton("Co&lors", 35, row,
+                new TAction() {
+                    public void DO() {
+                        new TEditColorThemeWindow(getApplication());
+                    }
+                }
+            );
+        }
+        row += 2;
+
         progressBar = addProgressBar(1, row, 22, 0);
         row++;
         timerLabel = addLabel("Timer", 1, row);