#18 move to event-driven main loop
[fanfix.git] / src / jexer / demos / DemoApplication.java
index 7e7126fb153f97062170d65c9983141fbc72597d..5036dd017ff71ce0ae45a2590a1fcdb4d0890f02 100644 (file)
@@ -3,7 +3,7 @@
  *
  * The MIT License (MIT)
  *
- * Copyright (C) 2016 Kevin Lamonte
+ * Copyright (C) 2017 Kevin Lamonte
  *
  * Permission is hereby granted, free of charge, to any person obtaining a
  * copy of this software and associated documentation files (the "Software"),
 package jexer.demos;
 
 import java.io.*;
-import java.util.*;
 
 import jexer.*;
 import jexer.event.*;
 import jexer.menu.*;
+import jexer.backend.Backend;
+import jexer.backend.SwingTerminal;
 
 /**
  * The demo application itself.
@@ -73,7 +74,14 @@ public class DemoApplication extends TApplication {
         item.setEnabled(false);
         item = subMenu.addItem(2002, "&Normal (sub)");
 
+        if (getScreen() instanceof SwingTerminal) {
+            TMenu swingMenu = addMenu("Swin&g");
+            item = swingMenu.addItem(3000, "&Bigger +2");
+            item = swingMenu.addItem(3001, "&Smaller -2");
+        }
+
         addWindowMenu();
+        addHelpMenu();
     }
 
     /**
@@ -93,6 +101,8 @@ public class DemoApplication extends TApplication {
         final OutputStream output) throws UnsupportedEncodingException {
         super(input, output);
         addAllWidgets();
+
+        getBackend().setTitle("Jexer Demo Application");
     }
 
     /**
@@ -111,6 +121,8 @@ public class DemoApplication extends TApplication {
         final PrintWriter writer, final boolean setRawMode) {
         super(input, reader, writer, setRawMode);
         addAllWidgets();
+
+        getBackend().setTitle("Jexer Demo Application");
     }
 
     /**
@@ -128,6 +140,17 @@ public class DemoApplication extends TApplication {
         this(input, reader, writer, false);
     }
 
+    /**
+     * Public constructor.
+     *
+     * @param backend a Backend that is already ready to go.
+     */
+    public DemoApplication(final Backend backend) {
+        super(backend);
+
+        addAllWidgets();
+    }
+
     /**
      * Handle menu events.
      *
@@ -138,6 +161,21 @@ public class DemoApplication extends TApplication {
     @Override
     public boolean onMenu(final TMenuEvent menu) {
 
+        if (menu.getId() == 3000) {
+            // Bigger +2
+            assert (getScreen() instanceof SwingTerminal);
+            SwingTerminal terminal = (SwingTerminal) getScreen();
+            terminal.setFontSize(terminal.getFontSize() + 2);
+            return true;
+        }
+        if (menu.getId() == 3001) {
+            // Smaller -2
+            assert (getScreen() instanceof SwingTerminal);
+            SwingTerminal terminal = (SwingTerminal) getScreen();
+            terminal.setFontSize(terminal.getFontSize() - 2);
+            return true;
+        }
+
         if (menu.getId() == 2050) {
             new TEditColorThemeWindow(this);
             return true;
@@ -148,20 +186,7 @@ public class DemoApplication extends TApplication {
                 String filename = fileOpenBox(".");
                  if (filename != null) {
                      try {
-                         File file = new File(filename);
-                         StringBuilder fileContents = new StringBuilder();
-                         Scanner scanner = new Scanner(file);
-                         String EOL = System.getProperty("line.separator");
-
-                         try {
-                             while (scanner.hasNextLine()) {
-                                 fileContents.append(scanner.nextLine() + EOL);
-                             }
-                             new DemoTextWindow(this, filename,
-                                 fileContents.toString());
-                         } finally {
-                             scanner.close();
-                         }
+                         new TEditorWindow(this, new File(filename));
                      } catch (IOException e) {
                          e.printStackTrace();
                      }
@@ -183,5 +208,6 @@ public class DemoApplication extends TApplication {
     public DemoApplication(final BackendType backendType) throws Exception {
         super(backendType);
         addAllWidgets();
+        getBackend().setTitle("Jexer Demo Application");
     }
 }