X-Git-Url: https://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fjexer%2Fbackend%2FTWindowBackend.java;h=3c1f832cfefdb8ba6cc2a0c10204abc2fec92306;hb=a52cb9df56f75f02b4509000ac63952a48c30f0b;hp=a34ba78bc23f173b1d43b4066539b74825955fc3;hpb=9696a8f6da9a0d204740420d6d8571176ab81944;p=fanfix.git diff --git a/src/jexer/backend/TWindowBackend.java b/src/jexer/backend/TWindowBackend.java index a34ba78..3c1f832 100644 --- a/src/jexer/backend/TWindowBackend.java +++ b/src/jexer/backend/TWindowBackend.java @@ -28,16 +28,17 @@ */ package jexer.backend; -import java.util.LinkedList; +import java.util.ArrayList; import java.util.List; -import jexer.bits.CellAttributes; +import jexer.TApplication; +import jexer.TWindow; +import jexer.event.TCommandEvent; import jexer.event.TInputEvent; import jexer.event.TKeypressEvent; import jexer.event.TMouseEvent; import jexer.event.TResizeEvent; -import jexer.TApplication; -import jexer.TWindow; +import static jexer.TCommand.*; /** * TWindowBackend uses a window in one TApplication to provide a backend for @@ -135,7 +136,7 @@ public class TWindowBackend extends TWindow implements Backend { super(application, title, width, height); this.listener = listener; - eventQueue = new LinkedList(); + eventQueue = new ArrayList(); sessionInfo = new TSessionInfo(width, height); otherScreen = new OtherScreen(this); otherScreen.setDimensions(width - 2, height - 2); @@ -161,7 +162,7 @@ public class TWindowBackend extends TWindow implements Backend { super(application, title, width, height, flags); this.listener = listener; - eventQueue = new LinkedList(); + eventQueue = new ArrayList(); sessionInfo = new TSessionInfo(width, height); otherScreen = new OtherScreen(this); otherScreen.setDimensions(width - 2, height - 2); @@ -188,7 +189,7 @@ public class TWindowBackend extends TWindow implements Backend { super(application, title, x, y, width, height); this.listener = listener; - eventQueue = new LinkedList(); + eventQueue = new ArrayList(); sessionInfo = new TSessionInfo(width, height); otherScreen = new OtherScreen(this); otherScreen.setDimensions(width - 2, height - 2); @@ -217,7 +218,7 @@ public class TWindowBackend extends TWindow implements Backend { super(application, title, x, y, width, height, flags); this.listener = listener; - eventQueue = new LinkedList(); + eventQueue = new ArrayList(); sessionInfo = new TSessionInfo(width, height); otherScreen = new OtherScreen(this); otherScreen.setDimensions(width - 2, height - 2); @@ -409,7 +410,9 @@ public class TWindowBackend extends TWindow implements Backend { */ @Override public void onClose() { - // TODO: send a screen disconnect + synchronized (eventQueue) { + eventQueue.add(new TCommandEvent(cmBackendDisconnect)); + } } // ------------------------------------------------------------------------