public CursesWindow(int x, int y, int width, int height, String title) {
super(x, y, width, height, false, title);
this.windowWidth = width;
chatLog = new TextArea();
chatLog.setColors(new CharColor(CharColor.WHITE, CharColor.BLACK));
textField = new TextField();
button = new Button("Send");
button.setShortCut('\n');
button.addListener(this);
int innerHeight = height - 5;