From d307f712c4e5087a659917f4d4b776e2ec84d697 Mon Sep 17 00:00:00 2001 From: Jeffrey Sharkey Date: Wed, 27 Aug 2008 10:47:56 +0000 Subject: * moved all terminal logic into a Service backend. connections are held in place by a TerminalBridge, which keeps the connection alive and renders the screen to a bitmap if provided. a Console creates TerminalViews for each bridge while it is active, and handles panning back/forth between them. * volume up/down controls will change console font size * extended trilead library to support resizePTY() command * left/right screen gestures will pan between various open consoles * up/down screen gestures on right-half will look through scrollback buffer * up/down screen gestures on left-half will trigger pageup/down keys * broke ctrl+ keyboard mapping, will need to bring back over from older code --- lib/src/main/java/com/trilead/ssh2/Session.java | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'lib/src/main/java/com/trilead/ssh2/Session.java') diff --git a/lib/src/main/java/com/trilead/ssh2/Session.java b/lib/src/main/java/com/trilead/ssh2/Session.java index 4784537..c41d837 100644 --- a/lib/src/main/java/com/trilead/ssh2/Session.java +++ b/lib/src/main/java/com/trilead/ssh2/Session.java @@ -129,6 +129,17 @@ public class Session cm.requestPTY(cn, term, term_width_characters, term_height_characters, term_width_pixels, term_height_pixels, terminal_modes); } + + public void resizePTY(int width, int height) throws IOException { + synchronized (this) + { + /* The following is just a nicer error, we would catch it anyway later in the channel code */ + if (flag_closed) + throw new IOException("This session is closed."); + } + + cm.resizePTY(cn, width, height); + } /** * Request X11 forwarding for the current session. -- cgit v1.2.3