diff options
author | Kenny Root <kenny@the-b.org> | 2008-12-12 18:31:49 +0000 |
---|---|---|
committer | Kenny Root <kenny@the-b.org> | 2008-12-12 18:31:49 +0000 |
commit | 5d8c2880c73c8d4dada456b43f34f8982992143e (patch) | |
tree | 91ae200c3f05ed3b043231bbd037d02a3073b082 /src/de/mud/terminal/VDUDisplay.java | |
parent | 68d6453fe846e44a22be2ecbaed0b31755f5e9eb (diff) | |
download | connectbot-5d8c2880c73c8d4dada456b43f34f8982992143e.tar.gz connectbot-5d8c2880c73c8d4dada456b43f34f8982992143e.tar.bz2 connectbot-5d8c2880c73c8d4dada456b43f34f8982992143e.zip |
* Support more xterm attributes ESC [90m - 97m and 100m - 107m
* Move onus of color tracking to VDUDisplay implementors
* Fix some indentation to match mud.de style
* Add color resets to "ESC c" functionality
Diffstat (limited to 'src/de/mud/terminal/VDUDisplay.java')
-rw-r--r-- | src/de/mud/terminal/VDUDisplay.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/de/mud/terminal/VDUDisplay.java b/src/de/mud/terminal/VDUDisplay.java index 4323465..bb4a7b8 100644 --- a/src/de/mud/terminal/VDUDisplay.java +++ b/src/de/mud/terminal/VDUDisplay.java @@ -34,4 +34,7 @@ public interface VDUDisplay { public void setVDUBuffer(VDUBuffer buffer); public VDUBuffer getVDUBuffer(); + + public void setColor(int index, int red, int green, int blue); + public void resetColors(); } |