private LinkedList<String> history;
private int historyBookmark = -1;
public ChatterBox(ClientGUI clientgui) {
this.client = clientgui.getClient();
client.game.addGameListener(new GameListenerAdapter() {
public void gamePlayerChat(GamePlayerChatEvent e) {
chatArea.append("\n" + e.getMessage()); //$NON-NLS-1$
PlayerListDialog.refreshPlayerList(playerList, client);
moveToEnd();
}