AWT minimally working
[fanfix.git] / src / jexer / TApplication.java
index 88b329f6f62158668562b821be59d235b67725c5..8071ae8edc2a5a0f5762dcdd2d2871db960dbe54 100644 (file)
@@ -312,12 +312,26 @@ public class TApplication {
     public TApplication(final InputStream input,
         final OutputStream output) throws UnsupportedEncodingException {
 
-        if (System.getProperty("jexer.AWT", "false").equals("true")) {
+        // AWT is the default backend on Windows unless explicitly overridden
+        // by jexer.AWT.
+        boolean useAWT = false;
+        if (System.getProperty("os.name").startsWith("Windows")) {
+            useAWT = true;
+        }
+        if (System.getProperty("jexer.AWT") != null) {
+            if (System.getProperty("jexer.AWT", "false").equals("true")) {
+                useAWT = true;
+            } else {
+                useAWT = false;
+            }
+        }
+
+
+        if (useAWT) {
             backend     = new AWTBackend();
         } else {
             backend     = new ECMA48Backend(input, output);
         }
-
         theme           = new ColorTheme();
         desktopBottom   = getScreen().getHeight() - 1;
         fillEventQueue  = new ArrayList<TInputEvent>();