Mercurial > 510Connectbot
comparison src/com/five_ten_sg/connectbot/service/TerminalBridge.java @ 95:e1c43d50f9d8
remove 5250 configuration
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Mon, 16 Jun 2014 17:15:49 -0700 |
parents | e3b83c4f02f1 |
children | 77ac18bc1b2f |
comparison
equal
deleted
inserted
replaced
94:e3b83c4f02f1 | 95:e1c43d50f9d8 |
---|---|
84 | 84 |
85 public int defaultFg = HostDatabase.DEFAULT_FG_COLOR; | 85 public int defaultFg = HostDatabase.DEFAULT_FG_COLOR; |
86 public int defaultBg = HostDatabase.DEFAULT_BG_COLOR; | 86 public int defaultBg = HostDatabase.DEFAULT_BG_COLOR; |
87 | 87 |
88 protected final TerminalManager manager; | 88 protected final TerminalManager manager; |
89 public final HostBean host; | 89 public final HostBean host; |
90 public final String homeDirectory; | 90 public final String homeDirectory; |
91 | 91 |
92 AbsTransport transport; | 92 AbsTransport transport; |
93 | 93 |
94 final Paint defaultPaint; | 94 final Paint defaultPaint; |
95 | 95 |
152 @Override | 152 @Override |
153 public void setWindowSize(int c, int r) {} | 153 public void setWindowSize(int c, int r) {} |
154 @Override | 154 @Override |
155 public void debug(String s) {} | 155 public void debug(String s) {} |
156 }; | 156 }; |
157 emulation = null; | 157 emulation = null; |
158 manager = null; | 158 manager = null; |
159 defaultPaint = new Paint(); | 159 host = null; |
160 homeDirectory = null; | |
161 defaultPaint = new Paint(); | |
160 selectionArea = new SelectionArea(); | 162 selectionArea = new SelectionArea(); |
161 localOutput = new LinkedList<String>(); | 163 localOutput = new LinkedList<String>(); |
162 fontSizeChangedListeners = new LinkedList<FontSizeChangedListener>(); | 164 fontSizeChangedListeners = new LinkedList<FontSizeChangedListener>(); |
163 transport = null; | 165 transport = null; |
164 keyListener = new TerminalKeyListener(manager, this, buffer, null); | 166 keyListener = new TerminalKeyListener(manager, this, buffer, null); |
165 monitor = null; | 167 monitor = null; |
166 } | 168 } |