X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fio%2FECMA48Screen.java;h=9daf6de2064428c063aa0da556b7a0664ef6fd30;hb=2fef9c6eaa2ba32e7a14ea1e469ec471b05019a2;hp=4c3af185db87b929a26aa2447406d75c0000d921;hpb=e16dda65585466c8987bd1efd718431450a96605;p=fanfix.git diff --git a/src/jexer/io/ECMA48Screen.java b/src/jexer/io/ECMA48Screen.java index 4c3af18..9daf6de 100644 --- a/src/jexer/io/ECMA48Screen.java +++ b/src/jexer/io/ECMA48Screen.java @@ -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"), @@ -40,7 +40,7 @@ public final class ECMA48Screen extends Screen { /** * Emit debugging to stderr. */ - private boolean debugToStderr; + private boolean debugToStderr = false; /** * We call terminal.cursor() so need the instance. @@ -53,8 +53,6 @@ public final class ECMA48Screen extends Screen { * @param terminal ECMA48Terminal to use */ public ECMA48Screen(final ECMA48Terminal terminal) { - debugToStderr = false; - this.terminal = terminal; // Query the screen size @@ -118,7 +116,7 @@ public final class ECMA48Screen extends Screen { for (int i = x; i < width; i++) { assert (logical[i][y].isBlank()); - // Physical is always updatesd + // Physical is always updated physical[i][y].reset(); } @@ -137,8 +135,8 @@ public final class ECMA48Screen extends Screen { && (lCell.isBlink() == lastAttr.isBlink()) ) { // Both colors changed, attributes the same - sb.append(terminal.color(lCell.getForeColor(), - lCell.getBackColor())); + sb.append(terminal.color(lCell.isBold(), + lCell.getForeColor(), lCell.getBackColor())); if (debugToStderr) { System.err.printf("1 Change only fore/back colors\n"); @@ -169,7 +167,8 @@ public final class ECMA48Screen extends Screen { ) { // Attributes same, foreColor different - sb.append(terminal.color(lCell.getForeColor(), true)); + sb.append(terminal.color(lCell.isBold(), + lCell.getForeColor(), true)); if (debugToStderr) { System.err.printf("3 Change foreColor\n"); @@ -182,7 +181,8 @@ public final class ECMA48Screen extends Screen { && (lCell.isBlink() == lastAttr.isBlink()) ) { // Attributes same, backColor different - sb.append(terminal.color(lCell.getBackColor(), false)); + sb.append(terminal.color(lCell.isBold(), + lCell.getBackColor(), false)); if (debugToStderr) { System.err.printf("4 Change backColor\n"); @@ -282,4 +282,15 @@ public final class ECMA48Screen extends Screen { terminal.getOutput().write(result); terminal.flush(); } + + /** + * Set the window title. + * + * @param title the new title + */ + public void setTitle(final String title) { + terminal.getOutput().write(terminal.setTitle(title)); + terminal.flush(); + } + }