comparison src/org/tn5250j/framework/tn5250/Screen5250.java @ 76:00464d9c2f54 tn5250

convert 5250 to vt320 attributes
author Carl Byington <carl@five-ten-sg.com>
date Sun, 15 Jun 2014 10:57:28 -0700
parents bf01d1eec5c6
children 0da8878ec057
comparison
equal deleted inserted replaced
75:bf01d1eec5c6 76:00464d9c2f54
3835 0xa, // light green 3835 0xa, // light green
3836 0xe, // light cyan 3836 0xe, // light cyan
3837 0x9, // light red 3837 0x9, // light red
3838 0xd, // light magenta/purple 3838 0xd, // light magenta/purple
3839 0x3, // brown 3839 0x3, // brown
3840 0xf, // bright white 3840 0xf // bright white
3841 };
3841 for (int r = startRow; r <= endRow; r++) { 3842 for (int r = startRow; r <= endRow; r++) {
3842 for (int c = startCol; c <= endCol; c++) { 3843 for (int c = startCol; c <= endCol; c++) {
3843 int p = getPos(r,c); 3844 int p = getPos(r,c);
3844 char ch = planes.getChar(p); 3845 char ch = planes.getChar(p);
3845 char co = planes.getCharColor(p); 3846 char co = planes.getCharColor(p);